Skip to content
Snippets Groups Projects
istl-2.3.0.patch 1.01 KiB
diff --git a/dune/istl/paamg/amg.hh b/dune/istl/paamg/amg.hh
index a224b2b..ee48857 100644
--- a/dune/istl/paamg/amg.hh
+++ b/dune/istl/paamg/amg.hh
@@ -527,13 +527,13 @@ namespace Dune
               // We are still participating on this level
               solver_.reset(new BiCGSTABSolver<X>(const_cast<M&>(matrices_->matrices().coarsest().getRedistributed()),
                                                   *scalarProduct_,
-                                                  *coarseSmoother_, 1E-2, 1000, 0));
+                                                  *coarseSmoother_, 1E-12, 1000, 0));
             else
               solver_.reset();
           }else
             solver_.reset(new BiCGSTABSolver<X>(const_cast<M&>(*matrices_->matrices().coarsest()),
                                                 *scalarProduct_,
-                                                *coarseSmoother_, 1E-2, 1000, 0));
+                                                *coarseSmoother_, 1E-12, 1000, 0));
         }
       }