From a89cebe31a4711dac5d849543bd6c87bfabea35f Mon Sep 17 00:00:00 2001 From: Christoph Lehmann <christoph.lehmann@ufz.de> Date: Tue, 19 Jul 2016 11:24:43 +0200 Subject: [PATCH] [T] fix LIS build --- Tests/MathLib/TestLinearSolver.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Tests/MathLib/TestLinearSolver.cpp b/Tests/MathLib/TestLinearSolver.cpp index f462937cc58..d46e985da3f 100644 --- a/Tests/MathLib/TestLinearSolver.cpp +++ b/Tests/MathLib/TestLinearSolver.cpp @@ -228,12 +228,11 @@ TEST(Math, CheckInterface_EigenLis) { // set solver options using Boost property tree 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"); BaseLib::ConfigTree conf(t_root, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree::onwarning); - using IntType = MathLib::LisMatrix::IndexType; + using IntType = MathLib::EigenMatrix::IndexType; MathLib::EigenMatrix A(Example1<IntType>::dim_eqs); checkLinearSolverInterface<MathLib::EigenMatrix, MathLib::EigenVector, -- GitLab