Skip to content
Snippets Groups Projects
Commit 155acbad authored by Max Kahnt's avatar Max Kahnt
Browse files

Adapt to changes in master (order of BlockGSStep template args).

parent cbb0a6c9
Branches
No related tags found
1 merge request!14Feature/blockgsstep default constructible
Pipeline #
......@@ -170,17 +170,17 @@ struct GSTestSuite {
using namespace Dune::Solvers::BlockGS::LocalSolvers;
using Ignore = Dune::Solvers::DefaultBitVector_t<Vector>;
BlockGSStep<Matrix, Vector, Ignore, Direct> step1;
BlockGSStep<Matrix, Vector, Ignore, LDLt> step2;
BlockGSStep<Matrix, Vector, Ignore, CG> step3;
BlockGSStep<Matrix, Vector, Ignore, GS> step4;
BlockGSStep<Direct, Matrix, Vector, Ignore> step1;
BlockGSStep<LDLt, Matrix, Vector, Ignore> step2;
BlockGSStep<CG, Matrix, Vector, Ignore> step3;
BlockGSStep<GS, Matrix, Vector, Ignore> step4;
auto tol = 1e-14;
auto r = 1e-10;
BlockGSStep<Matrix, Vector, Ignore, Direct> step1a(r);
BlockGSStep<Matrix, Vector, Ignore, LDLt> step2a(r);
BlockGSStep<Matrix, Vector, Ignore, CG> step3a(5, tol, r);
BlockGSStep<Matrix, Vector, Ignore, GS> step4a(tol, r);
BlockGSStep<Direct, Matrix, Vector, Ignore> step1a(r);
BlockGSStep<LDLt, Matrix, Vector, Ignore> step2a(r);
BlockGSStep<CG, Matrix, Vector, Ignore> step3a(5, tol, r);
BlockGSStep<GS, Matrix, Vector, Ignore> step4a(tol, r);
}
// test projected block GS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment