Skip to content
Snippets Groups Projects
Commit 3feccda7 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Set minimum number of iterations to 1

With the better initial iterate introduced in the previous patch,
this lower number seems to be sufficient.

[[Imported from SVN: r9684]]
parent e6dca29a
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ setup(const AverageDistanceAssembler<TargetSpace>* assembler, ...@@ -26,7 +26,7 @@ setup(const AverageDistanceAssembler<TargetSpace>* assembler,
innerIterations_ = innerIterations; innerIterations_ = innerIterations;
innerTolerance_ = innerTolerance; innerTolerance_ = innerTolerance;
this->verbosity_ = NumProc::QUIET; this->verbosity_ = NumProc::QUIET;
minNumberOfIterations_ = 4; minNumberOfIterations_ = 1;
#ifdef USE_GAUSS_SEIDEL_SOLVER #ifdef USE_GAUSS_SEIDEL_SOLVER
// //////////////////////////////// // ////////////////////////////////
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment