From 99e0670761646848165b84da7edef3a3fbd75518 Mon Sep 17 00:00:00 2001 From: David Wells Date: Thu, 29 Oct 2015 21:34:21 -0400 Subject: [PATCH] TODO double check Range, Domain, and VECTOR --- include/deal.II/lac/linear_operator.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 * -- 2.39.5