From 72b09414802e848140bab85cdff03b2209c858c8 Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 4 Jul 2000 08:30:06 +0000 Subject: [PATCH] Update docs. git-svn-id: https://svn.dealii.org/trunk@3132 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-5/step-5.cc | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) 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 -- 2.39.5