From: Timo Heister Date: Mon, 24 Feb 2014 19:37:48 +0000 (+0000) Subject: documentation fixes X-Git-Tag: v8.2.0-rc1~771^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1701e242760eca8d519514553ec27be777ee724;p=dealii.git documentation fixes git-svn-id: https://svn.dealii.org/branches/branch_muparser@32544 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/function_parser.h b/deal.II/include/deal.II/base/function_parser.h index 0bc81fb36b..fd4800ae14 100644 --- a/deal.II/include/deal.II/base/function_parser.h +++ b/deal.II/include/deal.II/base/function_parser.h @@ -193,16 +193,17 @@ template class Vector; * "x-1" * "-sin(sqrt(x^2+y^2))" * "sqrt(XCoord*XCoord + YCoord*YCoord)" - * * @endverbatim * + * For a wrapper of the FunctionParser class that supports ParameterHandler, + * see ParsedFunction. + * * Vector-valued functions can either be declared using strings where the * function components are separated by semicolons, or using a vector of * strings each defining one vector component. * * An example of time dependent scalar function is the following: * @code - * * // Empty constants object * std::map constants; * @@ -223,13 +224,11 @@ template class Vector; * // it is a time-dependent function * // and there is another variable * // to be taken into account (t). - * * @endcode * * The following is another example of how to instantiate a vector valued * function by using a single string: * @code - * * // Empty constants object * std::map constants; * @@ -246,7 +245,6 @@ template class Vector; * function.initialize(variables, * expression, * constants); - * * @endcode * *