Skip to content

Commit

Permalink
remove ::elastica::Time temporarily to detach from Time madules
Browse files Browse the repository at this point in the history
  • Loading branch information
skim0119 committed Jul 12, 2024
1 parent 7c43877 commit ca9025f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions backend/src/Systems/common/SymplecticStepperAdapter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "Systems/common/Tags.hpp"
#include "Systems/common/Types.hpp"
//
#include "Time/SimulationTime.hpp"
// #include "Time/SimulationTime.hpp"
//
#include "Utilities/TMPL.hpp"

Expand Down Expand Up @@ -329,7 +329,8 @@ namespace elastica {
//**************************************************************************
/*!\brief Access to kinematic rates
*/
inline auto kinematic_rates(::elastica::Time /*time_v*/) const noexcept
// inline auto kinematic_rates(::elastica::Time /*time_v*/) const noexcept
inline auto kinematic_rates(double /*time_v*/) const noexcept
-> DynamicState const& {
return dynamic_states();
}
Expand All @@ -354,7 +355,8 @@ namespace elastica {
//**************************************************************************
/*!\brief Access to dynamic rates
*/
inline auto dynamic_rates(::elastica::Time /*time_v*/) /*const*/ noexcept(
// inline auto dynamic_rates(::elastica::Time /*time_v*/) /*const*/ noexcept(
inline auto dynamic_rates(double /*time_v*/) /*const*/ noexcept(
noexcept(update_acceleration(self()))) -> DynamicRate const& {
/* To be truly lazy, one should only compute acceleration
* data and internal dynamics here.
Expand Down

0 comments on commit ca9025f

Please sign in to comment.