Merge pull request #1116 from andlaus/SimulatorReport_fix_substep_output

AdaptiveTimeStepping: fix stupid (but harmless) mistake in the sub-step info message
This commit is contained in:
Andreas Lauser 2016-12-03 15:08:05 +01:00 committed by GitHub
commit 078de1b039

View File

@ -267,7 +267,7 @@ namespace Opm {
ss << "well iterations = " << report.total_well_iterations << ", ";
}
ss << "newton iterations = " << report.total_newton_iterations << ", "
<< "linearizations = " << report.total_newton_iterations
<< "linearizations = " << report.total_linearizations
<< " (" << report.assemble_time << " sec), "
<< "linear iterations = " << report.total_linear_iterations
<< " (" << report.linear_solve_time << " sec)";