Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
Pavel Tomin authored and Pavel Tomin committed Sep 25, 2025
commit 6840707b542c22e4ae4c22424730e6f2839e9359
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class SolidMechanicsLagrangianFEM : public PhysicsSolverBase
CRSMatrix< real64, globalIndex > & localMatrix,
ParallelVector & rhs,
ParallelVector & solution,
bool const setSparsity = false ) override;
bool setSparsity = true ) override;

virtual void
setSparsityPattern( DomainPartition & domain,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,6 @@ SolidMechanicsEmbeddedFractures::SolidMechanicsEmbeddedFractures( const string &
setDescription( "Value of the penetration penalty stiffness. Units of Pressure/length" );
}

SolidMechanicsEmbeddedFractures::~SolidMechanicsEmbeddedFractures()
{
// TODO Auto-generated destructor stub
}

void SolidMechanicsEmbeddedFractures::postInputInitialization()
{
ContactSolverBase::postInputInitialization();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ class SolidMechanicsEmbeddedFractures : public ContactSolverBase
SolidMechanicsEmbeddedFractures( const string & name,
Group * const parent );

~SolidMechanicsEmbeddedFractures() override;

/**
* @brief name of the node manager in the object catalog
* @return string that contains the catalog name to generate a new NodeManager object through the object catalog.
Expand Down
Loading