From: Wolfgang Bangerth Date: Wed, 28 Jun 2000 11:53:27 +0000 (+0000) Subject: Change
 into @begin{verbatim} etc.
X-Git-Tag: v8.0.0~20324
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2336325a57545b109381a9cb8bb17b308c8f7166;p=dealii.git

Change 
 into @begin{verbatim} etc.


git-svn-id: https://svn.dealii.org/trunk@3099 0785d39b-7218-0410-832d-ea1e28bc413d
---

diff --git a/deal.II/lac/include/lac/precondition.h b/deal.II/lac/include/lac/precondition.h
index 23405e8160..d4a147fad1 100644
--- a/deal.II/lac/include/lac/precondition.h
+++ b/deal.II/lac/include/lac/precondition.h
@@ -183,7 +183,7 @@ class PreconditionRelaxation
  * @p{precondition_Jacobi(VECTOR&, const VECTOR&, double}
  *
  * @sect2{Usage example}
- * 
+ * @begin{itemize}
  *     // Declare related objects
  *
  * SparseMatrix A;
@@ -199,7 +199,7 @@ class PreconditionRelaxation
  * precondition.initialize (A, .6);
  *
  * solver.solve (A, x, b, precondition);
- * 
+ * @end{itemize} * * @author Guido Kanschat, 2000 */ @@ -238,7 +238,7 @@ class PreconditionJacobi : private PreconditionRelaxation * * * @sect2{Usage example} - *
+ * @begin{itemize}
  *     // Declare related objects
  *
  * SparseMatrix A;
@@ -254,7 +254,7 @@ class PreconditionJacobi : private PreconditionRelaxation
  * precondition.initialize (A, .6);
  *
  * solver.solve (A, x, b, precondition);
- * 
+ * @end{itemize} * * @author Guido Kanschat, 2000 */ @@ -291,7 +291,7 @@ class PreconditionSOR : private PreconditionRelaxation * * * @sect2{Usage example} - *
+ * @begin{itemize}
  *     // Declare related objects
  *
  * SparseMatrix A;
@@ -307,7 +307,7 @@ class PreconditionSOR : private PreconditionRelaxation
  * precondition.initialize (A, .6);
  *
  * solver.solve (A, x, b, precondition);
- * 
+ * @end{itemize} * * @author Guido Kanschat, 2000 */ @@ -359,7 +359,7 @@ class PreconditionSSOR : private PreconditionRelaxation * errors. The inner loop is an appropriate Krylov space method, since * it is fast. * - *
+ * @begin{itemize}
  *     // Declare related objects
  *
  * SparseMatrix A;
@@ -379,7 +379,7 @@ class PreconditionSSOR : private PreconditionRelaxation
  * SolverRichardson > outer_iteration;
  *
  * outer_iteration.solve (A, x, b, precondition);
- * 
+ * @end{itemize} * * Each time we call the inner loop, reduction of the residual by a * factor @p{1.e-2} is attempted. Since the right hand side vector of @@ -598,7 +598,7 @@ PreconditionSSOR::Tvmult (VECTOR& dst, const VECTOR& src) const template PreconditionUseMatrix::PreconditionUseMatrix(const MATRIX& M, - function_ptr method) + function_ptr method) : matrix(M), precondition(method) {}