aboutsummaryrefslogtreecommitdiffhomepage
path: root/failtest/sparse_storage_mismatch.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-06-08 10:14:08 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-06-08 10:14:08 +0200
commita7ae628c9f8a83973e899866ecd344bbfde6e844 (patch)
treeda400d0bb3ff1fd3853b783a90a41ad121486eb2 /failtest/sparse_storage_mismatch.cpp
parent0a9b5d13965aa2294ed657ffef327287df99cfd3 (diff)
bug #1005: fix regression regarding sparse coeff-wise binary operator that did not trigger a static assertion for mismatched storage
Diffstat (limited to 'failtest/sparse_storage_mismatch.cpp')
-rw-r--r--failtest/sparse_storage_mismatch.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/failtest/sparse_storage_mismatch.cpp b/failtest/sparse_storage_mismatch.cpp
new file mode 100644
index 000000000..51840d416
--- /dev/null
+++ b/failtest/sparse_storage_mismatch.cpp
@@ -0,0 +1,16 @@
+#include "../Eigen/Sparse"
+using namespace Eigen;
+
+typedef SparseMatrix<double,ColMajor> Mat1;
+#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
+typedef SparseMatrix<double,RowMajor> Mat2;
+#else
+typedef SparseMatrix<double,ColMajor> Mat2;
+#endif
+
+int main()
+{
+ Mat1 a(10,10);
+ Mat2 b(10,10);
+ a += b;
+}