mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-07-10 02:58:00 +02:00
equals for NDView
This commit is contained in:
@ -79,9 +79,9 @@ endif()
|
|||||||
|
|
||||||
if(AARE_VERBOSE)
|
if(AARE_VERBOSE)
|
||||||
add_compile_definitions(AARE_VERBOSE)
|
add_compile_definitions(AARE_VERBOSE)
|
||||||
add_compile_definitions(AARE_LOG_LEVEL=aare::logDEBUG5)
|
add_compile_definitions(AARE_LOG_LEVEL=aare::TLogLevel::logDEBUG5)
|
||||||
else()
|
else()
|
||||||
add_compile_definitions(AARE_LOG_LEVEL=aare::logERROR)
|
add_compile_definitions(AARE_LOG_LEVEL=aare::TLogLevel::logERROR)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(AARE_CUSTOM_ASSERT)
|
if(AARE_CUSTOM_ASSERT)
|
||||||
|
@ -139,9 +139,6 @@ class NDArray : public ArrayExpr<NDArray<T, Ndim>, Ndim> {
|
|||||||
|
|
||||||
NDArray<bool, Ndim> operator>(const NDArray &other);
|
NDArray<bool, Ndim> operator>(const NDArray &other);
|
||||||
|
|
||||||
bool equals(const NDArray<T, Ndim> &other,
|
|
||||||
const T tolerance = std::numeric_limits<T>::epsilon()) const;
|
|
||||||
|
|
||||||
bool operator==(const NDArray &other) const;
|
bool operator==(const NDArray &other) const;
|
||||||
bool operator!=(const NDArray &other) const;
|
bool operator!=(const NDArray &other) const;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user