Skip to content
Snippets Groups Projects
Commit b1b03f36 authored by Martin Schneider's avatar Martin Schneider
Browse files

Changed linear solver for adaptive test problems. Previously SuperLU was used...

Changed linear solver for adaptive test problems. Previously SuperLU was used which is not included in the dune-istl module and therefore possibly not available on all machines. 

Reviewed by Timo

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15092 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 12c1db15
No related branches found
No related tags found
No related merge requests found
...@@ -102,8 +102,8 @@ public: ...@@ -102,8 +102,8 @@ public:
// Linear solver settings // Linear solver settings
SET_TYPE_PROP(LensCCProblem, LinearSolver, Dumux::BoxBiCGStabILU0Solver<TypeTag> ); SET_TYPE_PROP(LensCCProblem, LinearSolver, Dumux::BoxBiCGStabILU0Solver<TypeTag> );
SET_TYPE_PROP(LensBoxProblem, LinearSolver, Dumux::BoxBiCGStabILU0Solver<TypeTag> ); SET_TYPE_PROP(LensBoxProblem, LinearSolver, Dumux::BoxBiCGStabILU0Solver<TypeTag> );
SET_TYPE_PROP(LensCCAdaptiveProblem, LinearSolver, Dumux::SuperLUBackend<TypeTag> ); SET_TYPE_PROP(LensCCAdaptiveProblem, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag> );
SET_TYPE_PROP(LensBoxAdaptiveProblem, LinearSolver, Dumux::SuperLUBackend<TypeTag> ); SET_TYPE_PROP(LensBoxAdaptiveProblem, LinearSolver, Dumux::ILU0BiCGSTABBackend<TypeTag> );
SET_BOOL_PROP(LensCCAdaptiveProblem, AdaptiveGrid, true); SET_BOOL_PROP(LensCCAdaptiveProblem, AdaptiveGrid, true);
SET_TYPE_PROP(LensCCAdaptiveProblem, AdaptationIndicator, TwoPImplicitGridAdaptIndicator<TypeTag>); SET_TYPE_PROP(LensCCAdaptiveProblem, AdaptationIndicator, TwoPImplicitGridAdaptIndicator<TypeTag>);
......
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