From 9f35fe10afe02f3d2c1159e63b79f40a8194c764 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 21 May 2024 16:41:47 -0600 Subject: [PATCH] Properly indent output in step-9 to match all of the other output. --- examples/step-9/step-9.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/step-9/step-9.cc b/examples/step-9/step-9.cc index 017b7d7354..10b425390c 100644 --- a/examples/step-9/step-9.cc +++ b/examples/step-9/step-9.cc @@ -746,9 +746,9 @@ namespace Step9 system_rhs); } - // Here comes the linear solver routine. As the system is no longer + // The next function is the linear solver routine. As the system is no longer // symmetric positive definite as in all the previous examples, we cannot - // use the Conjugate Gradient method anymore. Rather, we use a solver that + // use the Conjugate Gradient method any more. Rather, we use a solver that // is more general and does not rely on any special properties of the // matrix: the GMRES method. GMRES, like the conjugate gradient method, // requires a decent preconditioner: we use a Jacobi preconditioner here, @@ -823,7 +823,7 @@ namespace Step9 const std::string filename = "grid-" + std::to_string(cycle) + ".vtu"; std::ofstream output(filename); grid_out.write_vtu(triangulation, output); - std::cout << "Grid written to " << filename << std::endl; + std::cout << " Grid written to " << filename << std::endl; } { @@ -842,7 +842,7 @@ namespace Step9 const std::string filename = "solution-" + std::to_string(cycle) + ".vtu"; std::ofstream output(filename); data_out.write_vtu(output); - std::cout << "Solution written to " << filename << std::endl; + std::cout << " Solution written to " << filename << std::endl; } } -- 2.39.5