From 3204b55a3521b6a1b75796ec1b1f329a34297329 Mon Sep 17 00:00:00 2001 From: Alf Birger Rustad Date: Fri, 2 Oct 2020 15:20:23 +0200 Subject: [PATCH] Forgot two --- opm/simulators/timestepping/SimulatorReport.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opm/simulators/timestepping/SimulatorReport.cpp b/opm/simulators/timestepping/SimulatorReport.cpp index 910b6af7c..be7d366a7 100644 --- a/opm/simulators/timestepping/SimulatorReport.cpp +++ b/opm/simulators/timestepping/SimulatorReport.cpp @@ -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) {