Sync public subset from Flux (private)

This commit is contained in:
Gitea CI
2025-10-06 20:14:13 +00:00
parent 272e77c536
commit b2d00af0e1
390 changed files with 152131 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#pragma once
#include "./utils/matrix.h"
#include "./numerics/matequal.h"
namespace utils {
// definitions of the previously-declared members
template <typename T>
inline bool Matrix<T>::equals(const Matrix<T>& B, T tol) const {
return numerics::matequal(*this, B, tol);
}
template <typename T>
inline bool Matrix<T>::equals_omp(const Matrix<T>& B, T tol) const {
return numerics::matequal_omp(*this, B, tol);
}
template <typename T>
inline bool Matrix<T>::equals_auto(const Matrix<T>& B, T tol) const {
return numerics::matequal_auto(*this, B, tol);
}
} // namespace utils