Skip to content

Commit 32899b7

Browse files
committed
Remove obsolete accessor
1 parent 2a3a415 commit 32899b7

File tree

3 files changed

+0
-14
lines changed

3 files changed

+0
-14
lines changed

src/structure_new/src/implicit/4C_structure_new_timint_implicit.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -225,14 +225,6 @@ const ::NOX::Abstract::Group& Solid::TimeInt::Implicit::get_solution_group() con
225225
return nln_solver().get_solution_group();
226226
}
227227

228-
/*----------------------------------------------------------------------------*
229-
*----------------------------------------------------------------------------*/
230-
std::shared_ptr<::NOX::Abstract::Group> Solid::TimeInt::Implicit::solution_group_ptr()
231-
{
232-
check_init_setup();
233-
return Core::Utils::shared_ptr_from_ref(nln_solver().solution_group());
234-
}
235-
236228
/*----------------------------------------------------------------------------*
237229
*----------------------------------------------------------------------------*/
238230
Inpar::Solid::ConvergenceStatus Solid::TimeInt::Implicit::perform_error_action(

src/structure_new/src/implicit/4C_structure_new_timint_implicit.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,6 @@ namespace Solid
129129
//! returns the current solution group
130130
[[nodiscard]] const ::NOX::Abstract::Group& get_solution_group() const override;
131131

132-
//! returns the current solution group ptr
133-
std::shared_ptr<::NOX::Abstract::Group> solution_group_ptr() override;
134-
135132
Solid::IMPLICIT::Generic& impl_int()
136133
{
137134
check_init_setup();

src/structure_new/src/implicit/4C_structure_new_timint_implicitbase.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,6 @@ namespace Solid
8888
protected:
8989
/// Returns the current solution group (pure virtual)
9090
virtual const ::NOX::Abstract::Group& get_solution_group() const = 0;
91-
92-
//! Returns the current solution group ptr
93-
virtual std::shared_ptr<::NOX::Abstract::Group> solution_group_ptr() = 0;
9491
};
9592
} // namespace TimeInt
9693
} // namespace Solid

0 commit comments

Comments
 (0)