From: David Wells Date: Fri, 30 Oct 2015 01:34:21 +0000 (-0400) Subject: TODO double check Range, Domain, and VECTOR X-Git-Tag: v8.4.0-rc2~230^2~15 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99e0670761646848165b84da7edef3a3fbd75518;p=dealii.git TODO double check Range, Domain, and VECTOR --- diff --git a/include/deal.II/lac/linear_operator.h b/include/deal.II/lac/linear_operator.h index 05518d4b79..eccf331ab1 100644 --- a/include/deal.II/lac/linear_operator.h +++ b/include/deal.II/lac/linear_operator.h @@ -1027,12 +1027,12 @@ namespace * // with appropriate size and internal layout * * // Application of matrix to vector src, writes the result into dst. - * vmult(VECTOR &dst, const VECTOR &src); + * vmult(Range &dst, const Domain &src); * * // Application of the transpose of matrix to vector src, writes the * // result into dst. (Depending on the usage of the linear operator * // class this can be a dummy implementation throwing an error.) - * Tvmult(VECTOR &dst, const VECTOR &src); + * Tvmult(Range &dst, const Domain &src); * }; * @endcode * @@ -1043,11 +1043,11 @@ namespace * { * public: * // Application of matrix to vector src, adds the result to dst. - * vmult_add(VECTOR &dst, const VECTOR &src); + * vmult_add(Range &dst, const Domain &src); * * // Application of the transpose of matrix to vector src, adds the * // result to dst. - * Tvmult_add(VECTOR &dst, const VECTOR &src); + * Tvmult_add(Range &dst, const Domain &src); * }; * @endcode *