Skip to content
Snippets Groups Projects
Commit ee555950 authored by Elias Pipping's avatar Elias Pipping Committed by pipping
Browse files

Doc

[[Imported from SVN: r8348]]
parent c63e2352
Branches
No related tags found
No related merge requests found
...@@ -52,9 +52,13 @@ class BoundaryFunctionalAssembler ...@@ -52,9 +52,13 @@ class BoundaryFunctionalAssembler
{} {}
/** \brief Assemble /** \brief Assemble
* *
* \param initializeVector If this is set the output vector is set to the correct length and initialized to zero * \param localAssembler local assembler
* before assembly. Otherwise the assembled values are just added to the vector * \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> template <class LocalBoundaryFunctionalAssemblerType, class GlobalVectorType>
void assemble(LocalBoundaryFunctionalAssemblerType& localAssembler, GlobalVectorType& b, bool initializeVector=true) const void assemble(LocalBoundaryFunctionalAssemblerType& localAssembler, GlobalVectorType& b, bool initializeVector=true) const
......
...@@ -18,6 +18,15 @@ class FunctionalAssembler ...@@ -18,6 +18,15 @@ class FunctionalAssembler
tBasis_(tBasis) 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> template <class LocalFunctionalAssemblerType, class GlobalVectorType>
void assemble(LocalFunctionalAssemblerType& localAssembler, GlobalVectorType& b, bool initializeVector=true) const void assemble(LocalFunctionalAssemblerType& localAssembler, GlobalVectorType& b, bool initializeVector=true) const
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment