From: Timo Heister Date: Fri, 24 Apr 2015 13:28:03 +0000 (-0400) Subject: remove @tref X-Git-Tag: v8.3.0-rc1~215^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F874%2Fhead;p=dealii.git remove @tref --- diff --git a/include/deal.II/lac/linear_operator.h b/include/deal.II/lac/linear_operator.h index 174057d13b..d1479c2a25 100644 --- a/include/deal.II/lac/linear_operator.h +++ b/include/deal.II/lac/linear_operator.h @@ -61,14 +61,14 @@ LinearOperator linear_operator (const Matrix &); * * But, in contrast to a usual matrix object, the domain and range of the * linear operator are also bound to the LinearOperator class on the type - * level. Because of this, LinearOperator <@tref Range, @tref - * Domain> has two additional function objects + * level. Because of this, LinearOperator + * has two additional function objects * @code * std::function reinit_range_vector; * std::function reinit_domain_vector; * @endcode * that store the knowledge how to initialize (resize + internal data structures) - * an arbitrary vector of the @tref Range and @tref Domain space. + * an arbitrary vector of the @p Range and @p Domain space. * * The primary purpose of this class is to provide syntactic sugar for * complex matrix-vector operations and free the user from having to @@ -182,27 +182,27 @@ public: } /** - * Application of the LinearOperator object to a vector u of the @tref - * Domain space giving a vector v of the @tref Range space. + * Application of the LinearOperator object to a vector u of the @p + * Domain space giving a vector v of the @p Range space. */ std::function vmult; /** - * Application of the LinearOperator object to a vector u of the @tref + * Application of the LinearOperator object to a vector u of the @p * Domain space. The result is added to the vector v. */ std::function vmult_add; /** * Application of the transpose LinearOperator object to a vector u of - * the @tref Range space giving a vector v of the @tref Domain + * the @p Range space giving a vector v of the @p Domain * space. */ std::function Tvmult; /** * Application of the transpose LinearOperator object to a vector @p u of - * the @tref Range space.The result is added to the vector @p v. + * the @p Range space.The result is added to the vector @p v. */ std::function Tvmult_add; @@ -226,8 +226,8 @@ public: /** - * Addition with a LinearOperator @p second_op with the same @tref Domain - * and @tref Range. + * Addition with a LinearOperator @p second_op with the same @p Domain + * and @p Range. */ LinearOperator & operator+=(const LinearOperator &second_op) @@ -237,8 +237,8 @@ public: } /** - * Subtraction with a LinearOperator @p second_op with the same @tref Domain - * and @tref Range. + * Subtraction with a LinearOperator @p second_op with the same @p Domain + * and @p Range. */ LinearOperator & operator-=(const LinearOperator &second_op) @@ -249,7 +249,7 @@ public: /** * Concatenation of the LinearOperator with an endomorphism @p second_op - * on the @tref Domain space. + * on the @p Domain space. */ LinearOperator & operator*=(const LinearOperator &second_op) @@ -403,7 +403,7 @@ operator*(const LinearOperator &first_op, * Scalar multiplication of a ScalarOperator object @p op with @p * number from the left. * - * The @tref Domain and @tref Range types must implement the following + * The @p Domain and @p Range types must implement the following * operator*= member functions accepting the appropriate * scalar Number type for rescaling: * @@ -463,7 +463,7 @@ operator*(typename Range::value_type number, * * Scalar multiplication of a ScalarOperator object from the right. * - * The @tref Domain and @tref Range types must implement the following + * The @p Domain and @p Range types must implement the following * operator*= member functions for rescaling: * * @code @@ -515,7 +515,7 @@ transpose_operator(const LinearOperator &op) * \relates LinearOperator * * Returns a LinearOperator that is the identity of the vector space - * @tref Range. + * @p Range. * * The function takes an std::function object @ref * reinit_vector as an argument to initialize the