Skip to content
Snippets Groups Projects
Commit 01655f01 authored by Markus Blatt's avatar Markus Blatt
Browse files

Remove non-on-the-fly test with DynamicMatrix.

This mode is not implemented and therefore throws
an assertion that makes the test fail everytime.
parent 94683ad5
No related branches found
No related tags found
No related merge requests found
......@@ -179,14 +179,6 @@ int main(int argc, char** argv)
Dune::LoopSolver<BVector> dyn_solver(fop, dyn_prec0, 1e-2,100,2);
dyn_solver.apply(x,b, res);
x=100;
b=0;
Dune::SeqOverlappingSchwarz<BCRSMat,BVector,Dune::AdditiveSchwarzMode,
Dune::DynamicMatrixSubdomainSolver<BCRSMat,BVector,BVector> >
dyn_prec1(mat, domains, 1, false);
Dune::LoopSolver<BVector> dyn_solver1(fop, dyn_prec1, 1e-2,100,2);
dyn_solver1.apply(x,b, res);
std::cout<<"Additive Schwarz not on the fly (domains vector)"<<std::endl;
b=0;
......
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