diff --git a/include/armadillo_bits/config.hpp b/include/armadillo_bits/config.hpp index 0f147e8f..b6b4bdff 100644 --- a/include/armadillo_bits/config.hpp +++ b/include/armadillo_bits/config.hpp @@ -360,6 +360,7 @@ #undef ARMA_CRIPPLED_LAPACK #endif + // if Armadillo was installed on this system via CMake and ARMA_USE_WRAPPER is not defined, // ARMA_AUX_LIBS lists the libraries required by Armadillo on this system, and // ARMA_AUX_INCDIRS lists the include directories required by Armadillo on this system. diff --git a/include/armadillo_bits/config.hpp.cmake b/include/armadillo_bits/config.hpp.cmake index 9a74ed56..f763d6ee 100644 --- a/include/armadillo_bits/config.hpp.cmake +++ b/include/armadillo_bits/config.hpp.cmake @@ -360,6 +360,7 @@ #undef ARMA_CRIPPLED_LAPACK #endif + // if Armadillo was installed on this system via CMake and ARMA_USE_WRAPPER is not defined, // ARMA_AUX_LIBS lists the libraries required by Armadillo on this system, and // ARMA_AUX_INCDIRS lists the include directories required by Armadillo on this system. diff --git a/include/armadillo_bits/op_rcond_meat.hpp b/include/armadillo_bits/op_rcond_meat.hpp index 96e1e582..5996bf98 100644 --- a/include/armadillo_bits/op_rcond_meat.hpp +++ b/include/armadillo_bits/op_rcond_meat.hpp @@ -93,7 +93,7 @@ op_rcond::apply(const Base& X) { // empirically selected threshold (roughly covers real and cx); OpenBLAS 0.3.26 on AMD 7640U - arma_debug_print("op_rcond::apply(): symmetrix/hermitian optimisation"); + arma_debug_print("op_rcond::apply(): symmetric/hermitian optimisation"); return auxlib::rcond_sym(A); }