From 5d12baa2698b38344955d7b4e74558df8d78462a Mon Sep 17 00:00:00 2001 From: David Wells Date: Mon, 11 May 2020 10:12:57 -0400 Subject: [PATCH] Remove some "dealii::"s from code examples. These are converted to "::" by our doxygen preprocessing script, which looks weird. --- include/deal.II/lac/packaged_operation.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/deal.II/lac/packaged_operation.h b/include/deal.II/lac/packaged_operation.h index 1c51bdfeb3..af149fc6c6 100644 --- a/include/deal.II/lac/packaged_operation.h +++ b/include/deal.II/lac/packaged_operation.h @@ -63,33 +63,33 @@ class PackagedOperation; * * As an example consider the addition of multiple vectors * @code - * dealii::Vector a, b, c, d; + * Vector a, b, c, d; * // .. - * dealii::Vector result = a + b - c + d; + * Vector result = a + b - c + d; * @endcode * or the computation of a residual $b-Ax$: * @code - * dealii::SparseMatrix A; - * dealii::Vector b, x; + * SparseMatrix A; + * Vector b, x; * // .. * const auto op_a = linear_operator(A); * - * dealii::Vector residual = b - op_a * x; + * auto residual = b - op_a * x; * @endcode * The expression residual is of type - * PackagedOperation>. It stores + * PackagedOperation>. It stores * references to A, b and x and defers * the actual computation until apply, or apply_add * are explicitly invoked, * @code - * dealii::Vector y; + * Vector y; * residual.reinit_vector(y); * residual.apply(y); * residual.apply_add(y); * @endcode * or until the @p PackagedOperation object is implicitly converted: * @code - * dealii::Vector y; + * Vector y; * y = residual; * y += residual; * y -= residual; -- 2.39.5