From b0d6a2643e34a89d73a2a6f0c5061d27eb1cd4bb Mon Sep 17 00:00:00 2001 From: bangerth Date: Sun, 4 Oct 2009 22:34:22 +0000 Subject: [PATCH] A few more formatting changes. git-svn-id: https://svn.dealii.org/trunk@19695 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-35/step-35.cc | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/deal.II/examples/step-35/step-35.cc b/deal.II/examples/step-35/step-35.cc index 8821171b9f..3030cfd4ed 100644 --- a/deal.II/examples/step-35/step-35.cc +++ b/deal.II/examples/step-35/step-35.cc @@ -26,6 +26,7 @@ #include #include #include +#include #include #include @@ -127,7 +128,8 @@ namespace RunTimeParameters { prm.declare_entry ("Method_Form", "rotational", Patterns::Selection ("rotational|standard"), - " Used to select the type of method that we are going to use. "); + " Used to select the type of method that we are going " + "to use. "); prm.enter_subsection ("Physical data"); { prm.declare_entry ("initial_time", "0.", @@ -174,23 +176,27 @@ namespace RunTimeParameters " The size of the Krylov subspace to be used. "); prm.declare_entry ("off_diagonals", "60", Patterns::Integer(0), - " The number of off-diagonal elements ILU must compute. "); + " The number of off-diagonal elements ILU must " + "compute. "); prm.declare_entry ("diag_strength", "0.01", Patterns::Double (0.), " Diagonal strengthening coefficient. "); prm.declare_entry ("update_prec", "15", Patterns::Integer(1), - " This number indicates how often we need to update the preconditioner"); + " This number indicates how often we need to " + "update the preconditioner"); } prm.leave_subsection(); prm.declare_entry ("verbose", "true", Patterns::Bool(), - " This indicates whether the output of the solution process should be verbose. "); + " This indicates whether the output of the solution " + "process should be verbose. "); prm.declare_entry ("output", "1", Patterns::Integer(1), - " This indicates between how many time steps we print the solution. "); + " This indicates between how many time steps we print " + "the solution. "); } -- 2.39.5