aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/pastix_support.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-01-20 19:01:24 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-01-20 19:01:24 +0100
commited8ade9c65bc25f2226946e4275d62f7ceb28213 (patch)
tree847100b7e22d735f51676510745ea88edad91b6a /test/pastix_support.cpp
parent4c5e96aab6baf32b077d8824b4ecbe592caaa8a0 (diff)
bug #1149: fix Pastix*::*parm()
Diffstat (limited to 'test/pastix_support.cpp')
-rw-r--r--test/pastix_support.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/pastix_support.cpp b/test/pastix_support.cpp
index 49239e3a5..b62f85739 100644
--- a/test/pastix_support.cpp
+++ b/test/pastix_support.cpp
@@ -27,6 +27,14 @@ template<typename T> void test_pastix_T()
check_sparse_spd_solving(pastix_llt_upper);
check_sparse_spd_solving(pastix_ldlt_upper);
check_sparse_square_solving(pastix_lu);
+
+ // Some compilation check:
+ pastix_llt_lower.iparm();
+ pastix_llt_lower.dparm();
+ pastix_ldlt_lower.iparm();
+ pastix_ldlt_lower.dparm();
+ pastix_lu.iparm();
+ pastix_lu.dparm();
}
// There is no support for selfadjoint matrices with PaStiX.