equals for NDView

This commit is contained in:
2025-06-25 11:52:48 +02:00
parent da42862af0
commit 3545b8633f
2 changed files with 2 additions and 5 deletions

View File

@ -79,9 +79,9 @@ endif()
if(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()
add_compile_definitions(AARE_LOG_LEVEL=aare::logERROR)
add_compile_definitions(AARE_LOG_LEVEL=aare::TLogLevel::logERROR)
endif()
if(AARE_CUSTOM_ASSERT)

View File

@ -139,9 +139,6 @@ class NDArray : public ArrayExpr<NDArray<T, Ndim>, Ndim> {
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;