Typo and white space

This commit is contained in:
Alf Birger Rustad 2020-10-03 12:21:05 +02:00
parent 3204b55a35
commit 5a8f274c36

View File

@ -77,7 +77,7 @@ namespace Opm
if (total_well_iterations != 0) {
ss << fmt::format("Well its={:2}", total_well_iterations);
}
ss << fmt::format(" Newton its={:2}, lineraizations={:2} ({:2.1f}sec), linear its={:3} ({:2.1f}sec)",
ss << fmt::format(" Newton its={:2}, linearaizations={:2} ({:2.1f}sec), linear its={:3} ({:2.1f}sec)",
total_newton_iterations,
total_linearizations,
assemble_time,
@ -94,7 +94,7 @@ namespace Opm
if (assemble_time > 0.0 || linear_solve_time > 0.0) {
double t = assemble_time + (failureReport ? failureReport->assemble_time : 0.0);
double t = assemble_time + (failureReport ? failureReport->assemble_time : 0.0);
os << fmt::format(" Assembly time (seconds): {:9.2f}", t);
if (failureReport) {