From: wolf Date: Tue, 4 Jul 2000 08:30:06 +0000 (+0000) Subject: Update docs. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72b09414802e848140bab85cdff03b2209c858c8;p=dealii-svn.git Update docs. git-svn-id: https://svn.dealii.org/trunk@3132 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-5/step-5.cc b/deal.II/examples/step-5/step-5.cc index f816291b52..71951736fa 100644 --- a/deal.II/examples/step-5/step-5.cc +++ b/deal.II/examples/step-5/step-5.cc @@ -602,11 +602,18 @@ void LaplaceProblem::solve () // be done like this: PreconditionSSOR<> preconditioner; preconditioner.initialize(system_matrix, 1.2); + // (Note that we did not have to + // explicitely pass the address of + // the SSOR function of the matrix + // to this objects, rather it is + // hardcoded into the object, thus + // the name.) + // // The default template parameters - // of the PreconditionRelaxation - // class are the matrix and the - // vector type, which default to - // the types used in this program. + // of the ``PreconditionRelaxation'' + // class is the matrix type, which + // defaults to the types used in + // this program. // Calling the solver now looks // mostly like in the example