From ee5559506db6473ea8277996d524ff637dcafb13 Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Sun, 24 Mar 2013 20:10:55 +0000 Subject: [PATCH] Doc [[Imported from SVN: r8348]] --- dune/fufem/assemblers/boundaryfunctionalassembler.hh | 10 +++++++--- dune/fufem/assemblers/functionalassembler.hh | 9 +++++++++ 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/dune/fufem/assemblers/boundaryfunctionalassembler.hh b/dune/fufem/assemblers/boundaryfunctionalassembler.hh index 1ebcc9ea..b5f234ee 100644 --- a/dune/fufem/assemblers/boundaryfunctionalassembler.hh +++ b/dune/fufem/assemblers/boundaryfunctionalassembler.hh @@ -52,9 +52,13 @@ class BoundaryFunctionalAssembler {} /** \brief Assemble - * - * \param initializeVector If this is set the output vector is set to the correct length and initialized to zero - * before assembly. Otherwise the assembled values are just added to the vector + * + * \param localAssembler local assembler + * \param[out] b target vector + * \param initializeVector If this is set the output vector is + * set to the correct length and initialized to zero before + * assembly. Otherwise the assembled values are just added to + * the vector. */ template <class LocalBoundaryFunctionalAssemblerType, class GlobalVectorType> void assemble(LocalBoundaryFunctionalAssemblerType& localAssembler, GlobalVectorType& b, bool initializeVector=true) const diff --git a/dune/fufem/assemblers/functionalassembler.hh b/dune/fufem/assemblers/functionalassembler.hh index 61cd2e2a..89e38541 100644 --- a/dune/fufem/assemblers/functionalassembler.hh +++ b/dune/fufem/assemblers/functionalassembler.hh @@ -18,6 +18,15 @@ class FunctionalAssembler tBasis_(tBasis) {} + /** \brief Assemble + * + * \param localAssembler local assembler + * \param[out] b target vector + * \param initializeVector If this is set the output vector is + * set to the correct length and initialized to zero before + * assembly. Otherwise the assembled values are just added to + * the vector. + */ template <class LocalFunctionalAssemblerType, class GlobalVectorType> void assemble(LocalFunctionalAssemblerType& localAssembler, GlobalVectorType& b, bool initializeVector=true) const { -- GitLab