From d1f7aa12ea9ccbaf69d23448be4a2057bd118b01 Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Fri, 13 Jun 2014 12:17:28 +0200 Subject: [PATCH] [Algorit] Change localBisection parameters Solve until the binary comparison terminates Re-enable fastQuadratic --- dune/tectonic/myblockproblem.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/tectonic/myblockproblem.hh b/dune/tectonic/myblockproblem.hh index 0f43db0b..3926e0ba 100644 --- a/dune/tectonic/myblockproblem.hh +++ b/dune/tectonic/myblockproblem.hh @@ -59,7 +59,7 @@ class MyBlockProblem : /* NOT PUBLIC */ BlockNonlinearGSProblem<ConvexProblem> { : BNGSP(parset, problem), maxEigenvalues_(problem.f.size()), parset_(parset), - localBisection(0.0, 1.0, 1e-12, false) { + localBisection(0.0, 1.0, 0.0, true, 0.0) { for (size_t i = 0; i < problem.f.size(); ++i) { LocalVectorType eigenvalues; Dune::FMatrixHelp::eigenValues(problem.A[i][i], eigenvalues); -- GitLab