Skip to content

Commit

Permalink
add TODO for future improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
skim0119 committed Jan 20, 2025
1 parent 390895c commit 0e20c6f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions elastica/timestepper/explicit_steppers.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ def stage(
"""
In-place update of system states with Runge-Kutta 4 integration
"""

# TODO: Try to avoid deepcopying the whole system collection
# Related to #33: save/restart module
# Maybe search for low-storage RK scheme
k1_system = SystemCollection # Alias
k2_system = deepcopy(SystemCollection)
k3_system = deepcopy(SystemCollection)
Expand Down

0 comments on commit 0e20c6f

Please sign in to comment.