diff --git a/CMakeLists.txt b/CMakeLists.txt index 191448c..3d82778 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/include/aare/NDArray.hpp b/include/aare/NDArray.hpp index 6da616d..89459fd 100644 --- a/include/aare/NDArray.hpp +++ b/include/aare/NDArray.hpp @@ -139,9 +139,6 @@ class NDArray : public ArrayExpr, Ndim> { NDArray operator>(const NDArray &other); - bool equals(const NDArray &other, - const T tolerance = std::numeric_limits::epsilon()) const; - bool operator==(const NDArray &other) const; bool operator!=(const NDArray &other) const;