From 02ef56dfc325f5e4ef808d3d09d80f1793e21d78 Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 8 Jun 2006 17:18:58 +0000 Subject: [PATCH] Fix documentation. git-svn-id: https://svn.dealii.org/trunk@13206 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/function.h | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/deal.II/base/include/base/function.h b/deal.II/base/include/base/function.h index 9dead166ac..bde5744378 100644 --- a/deal.II/base/include/base/function.h +++ b/deal.II/base/include/base/function.h @@ -202,11 +202,6 @@ class Function : public FunctionTime, * vector-valued function at a * given point. * - * Be default, this function - * repeatedly calls value() for - * each component separately, to - * fill the output array. - * * values shall have the right * size beforehand, * i.e. #n_components. @@ -222,6 +217,11 @@ class Function : public FunctionTime, * that values already has the * right size, i.e. the same * size as the points array. + * + * Be default, this function + * repeatedly calls value() for + * each point separately, to + * fill the output array. */ virtual void value_list (const std::vector > &points, std::vector &values, @@ -237,6 +237,11 @@ class Function : public FunctionTime, * all elements be vectors with * the same number of components * as this function has. + * + * Be default, this function + * repeatedly calls vector_value() for + * each point separately, to + * fill the output array. */ virtual void vector_value_list (const std::vector > &points, std::vector > &values) const; -- 2.39.5