From: bangerth Date: Wed, 14 May 2008 19:43:56 +0000 (+0000) Subject: Fix table. Fix heading number. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=977af7c6002a5840bff7accee0be5082bd2e0402;p=dealii-svn.git Fix table. Fix heading number. git-svn-id: https://svn.dealii.org/trunk@16096 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-33/step-33.cc b/deal.II/examples/step-33/step-33.cc index 269ee01451..6c106cf892 100644 --- a/deal.II/examples/step-33/step-33.cc +++ b/deal.II/examples/step-33/step-33.cc @@ -338,7 +338,7 @@ const double EulerEquations::gas_gamma = 1.4; namespace Parameters { - // @sect3{The Parameters::Solver class} + // @sect4{The Parameters::Solver class} // // The first of these classes deals // with parameters for the linear @@ -356,29 +356,29 @@ namespace Parameters // // In particular, the ILUT takes // the following parameters: - // -ilut_fill: the number of extra - // entries to add when forming the ILU - // decomposition - // -ilut_atol, ilut_rtol: When - // forming the preconditioner, for - // certain problems bad conditioning - // (or just bad luck) can cause the - // preconditioner to be very poorly - // conditioned. Hence it can help to - // add diagonal perturbations to the - // original matrix and form the - // preconditioner for this slightly - // better matrix. ATOL is an absolute - // perturbation that is added to the - // diagonal before forming the prec, - // and RTOL is a scaling factor $rtol - // >= 1$. - // -ilut_drop: The ILUT will - // drop any values that - // have magnitude less than this value. - // This is a way to manage the amount - // of memory used by this - // preconditioner. + // - ilut_fill: the number of extra + // entries to add when forming the ILU + // decomposition + // - ilut_atol, ilut_rtol: When + // forming the preconditioner, for + // certain problems bad conditioning + // (or just bad luck) can cause the + // preconditioner to be very poorly + // conditioned. Hence it can help to + // add diagonal perturbations to the + // original matrix and form the + // preconditioner for this slightly + // better matrix. ATOL is an absolute + // perturbation that is added to the + // diagonal before forming the prec, + // and RTOL is a scaling factor $rtol + // >= 1$. + // - ilut_drop: The ILUT will + // drop any values that + // have magnitude less than this value. + // This is a way to manage the amount + // of memory used by this + // preconditioner. // // The meaning of each parameter is // also briefly described in the