From: mrak1990 Date: Sun, 30 Aug 2015 02:31:22 +0000 (+0300) Subject: Outdated tutorial step-3 X-Git-Tag: v8.4.0-rc2~526^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b37b8fc53b8360c78aece2d178d9524a722f1282;p=dealii.git Outdated tutorial step-3 Related commit: https://github.com/dealii/dealii/commit/f37ee0a6a5140a57cc6195eac2372ed149c030ad#diff-e3b138b667b4793715e99ca4fa4ac5e4 --- diff --git a/examples/step-3/step-3.cc b/examples/step-3/step-3.cc index 2cf3f8dd16..3ee5885673 100644 --- a/examples/step-3/step-3.cc +++ b/examples/step-3/step-3.cc @@ -549,10 +549,9 @@ void Step3::solve () // is below $10^{-12}$. In practice, the latter criterion will be the one // which stops the iteration: SolverControl solver_control (1000, 1e-12); - // Then we need the solver itself. The template parameters to the SolverCG - // class are the matrix type and the type of the vectors, but the empty - // angle brackets indicate that we simply take the default arguments (which - // are SparseMatrix@ and + // Then we need the solver itself. The template parameter to the SolverCG + // class is the type of the vectors, but the empty angle brackets indicate + // that we simply take the default argument (which is // Vector@): SolverCG<> solver (solver_control);