aboutsummaryrefslogtreecommitdiffstats
path: root/test/matrixtest.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-07-25 08:23:51 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-07-25 08:23:51 +0100
commit34bb15107a71fa4c6ab2114013b1de6b38554e78 (patch)
tree6e548135914e133fce6ab9651399b496c76fab4a /test/matrixtest.cpp
parent21ba55df6e75a5c03b4ecbb790fa1174d1de10fd (diff)
downloadYAGE-34bb15107a71fa4c6ab2114013b1de6b38554e78.tar.gz
YAGE-34bb15107a71fa4c6ab2114013b1de6b38554e78.zip
Matrices now print properly
Diffstat (limited to 'test/matrixtest.cpp')
-rw-r--r--test/matrixtest.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/matrixtest.cpp b/test/matrixtest.cpp
index 8ee350f6..20f6fb6b 100644
--- a/test/matrixtest.cpp
+++ b/test/matrixtest.cpp
@@ -36,6 +36,8 @@ bool matrixAddition()
yage::Matrix<4, 4, int> m3=m1+m2;
+ std::cout<<m3<<'\n';
+
return m3[1][1]==876;
}