bug #1149: fix Pastix*::*parm()

This commit is contained in:
Gael Guennebaud
2016-01-20 19:01:24 +01:00
parent 4c5e96aab6
commit ed8ade9c65
2 changed files with 11 additions and 3 deletions

View File

@@ -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.