File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -671,8 +671,8 @@ bool ESolver::runSolver(bool verbose)
671
671
std::string stats = " Problem Statistics:\n " ;
672
672
stats += to_string (NumNodes) + " nodes\n " ;
673
673
stats += to_string (NumEls) + " elements\n " ;
674
- stats += " Precision: " + to_string (Precision) + " \n " ;
675
674
PrintMessage (stats.c_str ());
675
+ std::cout << " Precision: " << Precision << " \n " ;
676
676
}
677
677
678
678
CBigLinProb L;
Original file line number Diff line number Diff line change @@ -1238,8 +1238,8 @@ bool FSolver::runSolver(bool verbose)
1238
1238
std::string stats = " Problem Statistics:\n " ;
1239
1239
stats += to_string (NumNodes) + " nodes\n " ;
1240
1240
stats += to_string (NumEls) + " elements\n " ;
1241
- stats += " Precision: " + to_string (Precision) + " \n " ;
1242
1241
PrintMessage (stats.c_str ());
1242
+ std::cout << " Precision: " << Precision << " \n " ;
1243
1243
}
1244
1244
1245
1245
if (Frequency == 0 )
Original file line number Diff line number Diff line change @@ -882,8 +882,8 @@ bool HSolver::runSolver(bool verbose)
882
882
std::string stats = " Problem Statistics:\n " ;
883
883
stats += to_string (NumNodes) + " nodes\n " ;
884
884
stats += to_string (NumEls) + " elements\n " ;
885
- stats += " Precision: " + to_string (Precision) + " \n " ;
886
885
PrintMessage (stats.c_str ());
886
+ std::cout << " Precision: " << Precision << " \n " ;
887
887
}
888
888
889
889
CBigLinProb L;
You can’t perform that action at this time.
0 commit comments