aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/basicstuff.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-03-05 13:18:19 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-03-05 13:18:19 +0000
commit8e0d548039f260db2eacb1e54e62e1acdbd4dd09 (patch)
tree24c0b8656e51fbfcbc80e5b73583e55832796eeb /test/basicstuff.cpp
parent861c6f4c9b4ceff1ad734e22f4615b260b1d9c45 (diff)
* Fix a compilation issue with large fixed-size matrices: the unrollers were always instanciated.
* the unrolling limits are configurable at compile time.
Diffstat (limited to 'test/basicstuff.cpp')
-rw-r--r--test/basicstuff.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/basicstuff.cpp b/test/basicstuff.cpp
index ec00f2b90..a8fb8db33 100644
--- a/test/basicstuff.cpp
+++ b/test/basicstuff.cpp
@@ -89,6 +89,7 @@ void EigenTest::testBasicStuff()
basicStuff(MatrixXcf(3, 3));
basicStuff(MatrixXi(8, 12));
basicStuff(MatrixXcd(20, 20));
+ basicStuff(Matrix<float, 100, 100>());
}
}