diff --git a/examples/2pinfiltration/README.md b/examples/2pinfiltration/README.md index 86cd1a14e0ea22df0b0b06d9c1b3351405361ab2..d068fbcda1c377e242140a6241bb829766da3188 100644 --- a/examples/2pinfiltration/README.md +++ b/examples/2pinfiltration/README.md @@ -571,6 +571,7 @@ The file dumuxmessage.hh contains the class defining the start and end message o we include the linear solver to be used to solve the linear system ```cpp #include <dumux/linear/amgbackend.hh> +#include <dumux/linear/linearsolvertraits.hh> ``` we include the nonlinear Newton's method ```cpp @@ -785,7 +786,7 @@ we set the assembler with the time loop because we have an instationary problem ``` we set the linear solver ```cpp - using LinearSolver = AMGBackend<TypeTag>; + using LinearSolver = AMGBiCGSTABBackend<LinearSolverTraits<GridGeometry>>; auto linearSolver = std::make_shared<LinearSolver>(leafGridView, gridGeometry->dofMapper()); ``` additionally we set the non-linear solver. diff --git a/examples/shallowwaterfriction/README.md b/examples/shallowwaterfriction/README.md index a211d33553228f628c2a2082fecd16491cfa6a57..6d4c51c877bd6eac834cada02c9758d69462ead2 100644 --- a/examples/shallowwaterfriction/README.md +++ b/examples/shallowwaterfriction/README.md @@ -613,6 +613,7 @@ The gridmanager constructs a grid from the information in the input or grid file We include the linear solver to be used to solve the linear system ```cpp #include <dumux/linear/amgbackend.hh> +#include <dumux/linear/linearsolvertraits.hh> ``` We include the nonlinear newtons method ```cpp @@ -721,7 +722,7 @@ we set the assembler with the time loop because we have an instationary problem. ``` We set the linear solver. ```cpp - using LinearSolver = Dumux::AMGBackend<TypeTag>; + using LinearSolver = AMGBiCGSTABBackend<LinearSolverTraits<GridGeometry>>; auto linearSolver = std::make_shared<LinearSolver>(leafGridView, gridGeometry->dofMapper()); ``` Additionaly, we set the non-linear solver.