From 4f556099a96a0aadb75954acff4cbbe510f3e81a Mon Sep 17 00:00:00 2001 From: hartmann Date: Mon, 10 Feb 2003 18:07:54 +0000 Subject: [PATCH] Fix typos. git-svn-id: https://svn.dealii.org/trunk@7075 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/sparse_decomposition.h | 7 ++++--- deal.II/lac/include/lac/sparse_mic.h | 8 ++++---- deal.II/lac/include/lac/sparse_mic.templates.h | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/deal.II/lac/include/lac/sparse_decomposition.h b/deal.II/lac/include/lac/sparse_decomposition.h index 555ce7517f..f32154d5c6 100644 --- a/deal.II/lac/include/lac/sparse_decomposition.h +++ b/deal.II/lac/include/lac/sparse_decomposition.h @@ -70,7 +70,7 @@ * after its @p{decompose} method is invoked. The @p{decomposed} * state is indicated by true value returned by @p{is_decomposed} * method. It is legal to apply this decomposition (@p{vmult} method) in - * decompoed state. + * decomposed state. * * * @sect2{Particular implementations} @@ -91,7 +91,8 @@ * @author Stephen "Cheffo" Kolaroff, 2002, based on SparseILU implementation by Wolfgang Bangerth */ template -class SparseLUDecomposition : protected SparseMatrix{ +class SparseLUDecomposition : protected SparseMatrix +{ public: /** @@ -179,7 +180,7 @@ class SparseLUDecomposition : protected SparseMatrix{ * factorization of the given * matrix. After this method * invokation, and before - * consequtive reinit invokation + * consecutive reinit invokation * this object is in decomposed * state. * diff --git a/deal.II/lac/include/lac/sparse_mic.h b/deal.II/lac/include/lac/sparse_mic.h index edcdb8701f..c52f5b7943 100644 --- a/deal.II/lac/include/lac/sparse_mic.h +++ b/deal.II/lac/include/lac/sparse_mic.h @@ -29,7 +29,7 @@ * where X is a diagonal matrix, defined by the condition rowsum(A) = * rowsum(B). * - * @author Stephen "Cheffo" Kolaroff + * @author Stephen "Cheffo" Kolaroff, 2002. */ template class SparseMIC : public SparseLUDecomposition @@ -105,9 +105,9 @@ class SparseMIC : public SparseLUDecomposition * * If @p{strengthen_diagonal} * parameter is greater than - * zero, this method invokes - * @p{get_strengthen_diagonal_impl - * ()}. + * zero, this method invokes the + * @p{strengthen_diagonal_impl} + * function of the base class. * * Refer to * @ref{SparseLUDecomposition} diff --git a/deal.II/lac/include/lac/sparse_mic.templates.h b/deal.II/lac/include/lac/sparse_mic.templates.h index 677be56cff..8d19b39233 100644 --- a/deal.II/lac/include/lac/sparse_mic.templates.h +++ b/deal.II/lac/include/lac/sparse_mic.templates.h @@ -107,7 +107,7 @@ void SparseMIC::decompose (const SparseMatrix &matrix, // x[i] = a[i][i] - sum(k=1, i-1, // a[i][k]/x[k]*sum(j=k+1, N, a[k][j])) - // TODO: for sake of siplicity, + // TODO: for sake of simplicity, // those are placed here A better // implementation would store this // values in the underlying sparse -- 2.39.5