From: hartmann Date: Fri, 4 May 2001 12:53:49 +0000 (+0000) Subject: Doc fixes. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52be809e57b375f3747163d3e3e7651bbc3e1c27;p=dealii-svn.git Doc fixes. git-svn-id: https://svn.dealii.org/trunk@4542 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/function_derivative.h b/deal.II/base/include/base/function_derivative.h index 08be9f8bc3..d6fe25eb70 100644 --- a/deal.II/base/include/base/function_derivative.h +++ b/deal.II/base/include/base/function_derivative.h @@ -49,7 +49,7 @@ class FunctionDerivative : public Function /** * Constructor. Provided are the - * function to compute + * functions to compute * derivatives of, the direction * vector of the differentiation * and the step size @p{h} of the @@ -61,7 +61,7 @@ class FunctionDerivative : public Function /** * Constructor. Provided are the - * function to compute + * functions to compute * derivatives of and the * direction vector of the * differentiation in each @@ -90,9 +90,10 @@ class FunctionDerivative : public Function * * Formulas implemented right now * are first order backward Euler - * (@p{UpwindEuler}), second order - * symmetric Euler (@p{Euler}) and - * a symmetric fourth order formula + * (@p{UpwindEuler}), second + * order symmetric Euler + * (@p{Euler}) and a symmetric + * fourth order formula * (@p{FourthOrder}). */ void set_formula (DifferenceFormula formula = Euler); @@ -104,7 +105,8 @@ class FunctionDerivative : public Function const unsigned int component = 0) const; /** - * Function values at multiple points. + * Function values at multiple + * points. */ virtual void value_list (const typename std::vector > &points, std::vector &values, @@ -127,8 +129,12 @@ class FunctionDerivative : public Function * value. */ unsigned int memory_consumption () const; - + + /** + * Exception. + */ DeclException0(ExcInvalidFormula); + private: /** * Function for differentiation. @@ -136,7 +142,8 @@ class FunctionDerivative : public Function const Function& f; /** - * Step size of the difference formula. + * Step size of the difference + * formula. */ double h; /**