-
Christoph Grüninger authored
Apply patches now with -p1 instead of -p0. (reviewed and improved by bernd) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12750 2fb0f335-1f38-0410-981e-8018bf24f1b0
Christoph Grüninger authoredApply patches now with -p1 instead of -p0. (reviewed and improved by bernd) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12750 2fb0f335-1f38-0410-981e-8018bf24f1b0
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));
}
}