From b37b8fc53b8360c78aece2d178d9524a722f1282 Mon Sep 17 00:00:00 2001 From: mrak1990 Date: Sun, 30 Aug 2015 05:31:22 +0300 Subject: [PATCH] Outdated tutorial step-3 Related commit: https://github.com/dealii/dealii/commit/f37ee0a6a5140a57cc6195eac2372ed149c030ad#diff-e3b138b667b4793715e99ca4fa4ac5e4 --- examples/step-3/step-3.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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); -- 2.39.5