aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/matrixops.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/matrixops.cpp')
-rw-r--r--test/matrixops.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/matrixops.cpp b/test/matrixops.cpp
index 8acf43277..1369a72a0 100644
--- a/test/matrixops.cpp
+++ b/test/matrixops.cpp
@@ -45,7 +45,6 @@ template<typename MatrixType1,
a = b + c;
a = s * (b - c);
a = eval(a + b);
-
a += b;
a -= b + b;
@@ -60,10 +59,10 @@ void EigenTest::testMatrixOps()
matrixOps(Matrix<int, 2, 3>(), Matrix<int, 3, 1>());
matrixOps(Matrix<double, 3, 3>(), Matrix<double, 3, 3>());
matrixOps(Matrix<complex<float>, 4,3>(), Matrix<complex<float>, 3,4>());
- /*matrixOps(MatrixXf(1, 1), MatrixXf(1, 3));
+ matrixOps(MatrixXf(1, 1), MatrixXf(1, 3));
matrixOps(MatrixXi(2, 2), MatrixXi(2, 2));
matrixOps(MatrixXd(3, 5), MatrixXd(5, 1));
matrixOps(MatrixXcf(4, 4), MatrixXcf(4, 4));
matrixOps(MatrixXd(3, 5), Matrix<double, 5, 1>());
- matrixOps(Matrix4cf(), MatrixXcf(4, 4));*/
+ matrixOps(Matrix4cf(), MatrixXcf(4, 4));
}