Skip to content
Snippets Groups Projects
Commit 327ac42b authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

a few screen output fixes

[[Imported from SVN: r5572]]
parent 784c9c00
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@ setup(const AverageDistanceAssembler<TargetSpace>* assembler,
initialTrustRegionRadius_ = initialTrustRegionRadius;
innerIterations_ = innerIterations;
innerTolerance_ = innerTolerance;
this->verbosity_ = NumProc::QUIET;
// ////////////////////////////////
// Create a projected gauss-seidel solver
......@@ -173,12 +174,12 @@ void TargetSpaceRiemannianTRSolver<TargetSpace>::solve()
} else {
// unsuccessful iteration
trustRegion.scale(0.5);
// if (this->verbosity_ == NumProc::FULL)
if (this->verbosity_ == NumProc::FULL)
std::cout << "Unsuccessful iteration!" << std::endl;
}
// Write current energy
// if (this->verbosity_ == NumProc::FULL)
if (this->verbosity_ == NumProc::FULL)
std::cout << "--- Current energy: " << energy << " ---" << std::endl;
}
......
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