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
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment