From: Matthias Maier Date: Wed, 28 Jun 2017 11:48:12 +0000 (-0500) Subject: doc: Remove and update references to IterativeInverse X-Git-Tag: v9.0.0-rc1~1447^2~10 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4be99cc889ab9d05474d2973e3b60472da713a9d;p=dealii.git doc: Remove and update references to IterativeInverse --- diff --git a/doc/doxygen/headers/laoperators.h b/doc/doxygen/headers/laoperators.h index 939fe8e3f6..349d41bdd9 100644 --- a/doc/doxygen/headers/laoperators.h +++ b/doc/doxygen/headers/laoperators.h @@ -94,12 +94,6 @@ * encapsulation of individual linear operators into blocked linear * operator variants. * - * @note The LinearOperator facility obsoletes some of the @ref Matrix2 - * "derived matrix" classes, such as BlockDiagonalMatrix, IterativeInverse, - * ProductMatrix, ScaledMatrix, ProductSparseMatrix, - * InverseMatrixRichardson, SchurMatrix, ShiftedMatrix, - * ShiftedMatrixGeneralized, TransposeMatrix - * * @note As explained below, when using LinearOperator as res = op_a*x * a PackagedOperation class instance is generated behind-the-curtains. * Consequently, the user program has to include header files for both classes diff --git a/include/deal.II/lac/parpack_solver.h b/include/deal.II/lac/parpack_solver.h index fcc4b449ca..5548deb3f5 100644 --- a/include/deal.II/lac/parpack_solver.h +++ b/include/deal.II/lac/parpack_solver.h @@ -113,8 +113,7 @@ extern "C" { * by default. Note that (P)Arpack supports other transformations, but currently * this class implements only shift-and-invert mode. * - * The OP can be specified either using auxiliary Shift class together - * with IterativeInverse or by using LinearOperator + * The OP can be specified by using a LinearOperator: * @code * const double shift = 5.0; * const auto op_A = linear_operator(A);