Skip to content

Commit

Permalink
Fixed compiler error about ambigous assemble()
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoelle1 committed Jul 2, 2024
1 parent f9a9ca8 commit 67dc696
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gsElasticityAssembler.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ class gsElasticityAssembler : public gsBaseAssembler<T>

//--------------------- SYSTEM ASSEMBLY ----------------------------------//

virtual void assemble() { assemble(false); }

/// @brief Assembles the stiffness matrix and the RHS for the LINEAR ELASTICITY
/// set *assembleMatrix* to false to only assemble the RHS;
virtual void assemble(bool saveEliminationMatrix = false);
virtual void assemble(bool saveEliminationMatrix);

/// Assembles the tangential linear system for Newton's method given the current solution
/// in the form of free and fixed/Dirichelt degrees of freedom.
Expand Down

0 comments on commit 67dc696

Please sign in to comment.