From fb5046b122c8a39c14a6e6abbcfc67ed2d6084c3 Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Thu, 30 Apr 2020 18:10:18 +0000
Subject: [PATCH] Merge branch 'cleanup/handbook-parallel' into 'master'

[cleanup][handbook] update parallel section with new linear solver

See merge request dumux-repositories/dumux!2106

(cherry picked from commit 0743f883d3b8fc7fc2754dacf41752ecfb6f3314)

82bc87e7 [cleanup][handbook] update parallel section with new linear solver
---
 doc/handbook/6_parallel.tex | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/handbook/6_parallel.tex b/doc/handbook/6_parallel.tex
index 28b1edc4f1..83f89df7ee 100644
--- a/doc/handbook/6_parallel.tex
+++ b/doc/handbook/6_parallel.tex
@@ -44,10 +44,10 @@ solver backend include the respective header
 Second, the linear solver must be switched to the AMG backend
 
 \begin{lstlisting}[style=DumuxCode]
-using LinearSolver = Dumux::AMGBackend<TypeTag>;
+using LinearSolver = AMGBiCGSTABBackend<LinearSolverTraits<GridGeometry>>;
 \end{lstlisting}
 
-and the application must be recompiled. The parallel \texttt{Dumux::AMGBackend} instance has to be
+and the application must be recompiled. The parallel \texttt{AMGBiCGSTABBackend} instance has to be
 constructed with a \texttt{Dune::GridView} object and a mapper, in order to construct the
 parallel index set needed for communication.
 
-- 
GitLab