Ready for fvm steady case

This commit is contained in:
2025-09-21 20:57:02 +02:00
parent 3a53b6ebf7
commit 513f071748
59 changed files with 1813 additions and 983 deletions
@@ -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