Forgot two

This commit is contained in:
Alf Birger Rustad 2020-10-02 15:20:23 +02:00
parent 885c182b7e
commit 3204b55a35

View File

@ -87,9 +87,9 @@ namespace Opm
void SimulatorReportSingle::reportFullyImplicit(std::ostream& os, const SimulatorReportSingle* failureReport) const
{
os << fmt::format("Total time (seconds): {:8.1f} \n", total_time);
os << fmt::format("Total time (seconds): {:9.2f} \n", total_time);
os << fmt::format("Solver time (seconds): {:8.1f} \n",
os << fmt::format("Solver time (seconds): {:9.2f} \n",
solver_time + (failureReport ? failureReport->solver_time : 0.0));
if (assemble_time > 0.0 || linear_solve_time > 0.0) {