Skip to content
Snippets Groups Projects
Commit a89cebe3 authored by Christoph Lehmann's avatar Christoph Lehmann Committed by Dmitrij Naumov
Browse files

[T] fix LIS build

parent b5f7fd2c
No related branches found
No related tags found
No related merge requests found
...@@ -228,12 +228,11 @@ TEST(Math, CheckInterface_EigenLis) ...@@ -228,12 +228,11 @@ TEST(Math, CheckInterface_EigenLis)
{ {
// set solver options using Boost property tree // set solver options using Boost property tree
boost::property_tree::ptree t_root; boost::property_tree::ptree t_root;
boost::property_tree::ptree t_solver;
t_root.put("lis", "-i cg -p none -tol 1e-15 -maxiter 1000"); t_root.put("lis", "-i cg -p none -tol 1e-15 -maxiter 1000");
BaseLib::ConfigTree conf(t_root, "", BaseLib::ConfigTree conf(t_root, "",
BaseLib::ConfigTree::onerror, BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onerror, BaseLib::ConfigTree::onwarning);
using IntType = MathLib::LisMatrix::IndexType; using IntType = MathLib::EigenMatrix::IndexType;
MathLib::EigenMatrix A(Example1<IntType>::dim_eqs); MathLib::EigenMatrix A(Example1<IntType>::dim_eqs);
checkLinearSolverInterface<MathLib::EigenMatrix, MathLib::EigenVector, checkLinearSolverInterface<MathLib::EigenMatrix, MathLib::EigenVector,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment