1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-19 21:25:36 +01:00

minor output cleaning

This commit is contained in:
Antonin Portelli 2024-03-12 11:08:01 +09:00
parent 79803007ff
commit febaa059c2
2 changed files with 2 additions and 4 deletions

View File

@ -164,8 +164,7 @@ const DVec & MinuitMinimizer::operator()(const DoubleFunction &f)
{
if (getVerbosity() >= Verbosity::Normal)
{
cout << "========== Minuit minimization, pass #" << n + 1;
cout << " =========" << endl;
cout << "========== Minuit minimization, pass #" << n + 1 << endl;
}
min.Minimize();
status = min.Status();

View File

@ -94,8 +94,7 @@ const DVec & NloptMinimizer::operator()(const DoubleFunction &f)
{
if (getVerbosity() >= Verbosity::Normal)
{
cout << "========== NLopt minimization, pass #" << n + 1;
cout << " ==========" << endl;
cout << "========== NLopt minimization, pass #" << n + 1 << endl;
cout << "Algorithm: " << min.get_algorithm_name() << endl;
cout << "Max eval.= " << min.get_maxeval();
cout << " -- Precision= " << min.get_xtol_rel() << endl;