]> https://gitweb.dealii.org/ - dealii.git/commitdiff
caveat has been removed 1018/head
authorESeNonFossiIo <esenonfossiio@gmail.com>
Wed, 17 Jun 2015 09:53:15 +0000 (11:53 +0200)
committerESeNonFossiIo <esenonfossiio@gmail.com>
Thu, 25 Jun 2015 13:48:10 +0000 (15:48 +0200)
include/deal.II/lac/block_linear_operator.h

index 36acf4a369add7505905882801b3c310a9b618c2..1a93f03f730fda401037ed95e39234bcb55d6efc 100644 (file)
@@ -325,14 +325,14 @@ block_diagonal_operator(const LinearOperator<typename Range::BlockType, typename
 /**
  * @relates LinearOperator
  *
- * This function implement a forward substitution argument to invert a lower
+ * This function implements a forward substitution argument to invert a lower
  * block triangular matrix.
- * It takes as argement an array of array of LinearOperators @p block_matrix
+ * As argument, it takes an array of array of LinearOperators @p block_matrix
  * representing a lower block triangular matrix and an array of LinearOperators
  * @p inverse_diagonal representing inverses of digonal blocks of @p block_matrix.
  *
- * Let us assume we have a linear system where each coefficient of the system is a
- * matrix:
+ * Let us assume we have a linear system with the following block structure:
+ *
  * A00 x0 + ...                   = y0
  * A01 x0 + A11 x1 + ...          = y1
  * ...        ...
@@ -344,10 +344,10 @@ block_diagonal_operator(const LinearOperator<typename Range::BlockType, typename
  * and therefore:
  *    xn = Ann^-1 ( yn - A0n x0 - ... - A(n-1)n x(n-1) )
  *
- * Notice that we are not using the whole matrix: just the lower triangular block
- * matrix obtained from @p block_matrix it is used.
+ * @note Notice that we are not using the whole matrix:
+ *       just the lower triangular block matrix obtained
+ *       from @p block_matrix it is used.
  *
- * Caveat: Tvmult and Tvmult_add have not been implemented, yet. This may lead to mistakes.
  * @ingroup LAOperators
  */
 template < unsigned int n,
@@ -434,14 +434,13 @@ block_forward_substitution(const std::array<std::array<LinearOperator<typename R
 /**
  * @relates LinearOperator
  *
- * This function implement a back substitution argument to invert an upper
+ * This function implements a back substitution argument to invert an upper
  * block triangular matrix.
- * It takes as argement an array of array of LinearOperators @p block_matrix
+ * As argument, it takes an array of array of LinearOperators @p block_matrix
  * representing an upper block triangular matrix and an array of LinearOperators
  * @p inverse_diagonal representing inverses of digonal blocks of @p block_matrix.
  *
- * Let us assume we have a linear system where each coefficient of the system is a
- * matrix:
+ * Let us assume we have a linear system with the following block structure:
  *
  * A00 x0 + A01 x1 + ... + A0n xn = yn
  *          A11 x1 + ...          = y1
@@ -454,10 +453,10 @@ block_forward_substitution(const std::array<std::array<LinearOperator<typename R
  * and therefore:
  *    x0 = A00^-1 ( y0 - A0n xn - ... - A01 x1 )
  *
- * Notice that we are not using the whole matrix: just the upper triangular block
- * matrix obtained from @p block_matrix it is used.
+ * @note Notice that we are not using the whole matrix:
+ *       just the upper triangular block matrix obtained
+ *       from @p block_matrix it is used.
  *
- * Caveat: Tvmult and Tvmult_add have not been implemented, yet. This may lead to mistakes.
  * @ingroup LAOperators
  */
 template < unsigned int n,

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.