- Added unit tests and debugged them

This commit is contained in:
2025-06-25 20:55:57 -04:00
parent 31e3c26b66
commit d8954eafe5
27 changed files with 812 additions and 166 deletions

View File

@@ -25,6 +25,7 @@
#include <fennec/lang/limits.h>
#include <fennec/math/common.h>
#include <fennec/math/matrix.h>
#include <fennec/math/relational.h>
namespace fennec
@@ -56,7 +57,10 @@ inline std::ostream& operator<<(std::ostream& os, const matrix<ScalarT, RowsV, C
{
os << "[ ";
((os << m[ColIndicesV] << " "), ...);
os << " ]";
//[m]<size_t...i>(std::ostream& os, index_sequence<i...>) {
// ((os << fennec::row(m, i) << " "), ...);
//}(os, make_index_sequence<RowsV>{});
os << "]";
return os;
}