- Added unit tests and debugged them
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user