From: Wolfgang Bangerth Date: Sun, 4 Oct 2009 22:34:22 +0000 (+0000) Subject: A few more formatting changes. X-Git-Tag: v8.0.0~6987 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4487585486e506a26b028507b4b1abc40f95d0fd;p=dealii.git A few more formatting changes. git-svn-id: https://svn.dealii.org/trunk@19695 0785d39b-7218-0410-832d-ea1e28bc413d --- 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. "); }