Skip to content

Commit

Permalink
name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
s-m-e committed Jan 29, 2024
1 parent f03c22b commit 2c48d56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hapsira/core/math/ivp/_rkdenseoutput.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


@hjit(f"Tuple([f,f,V,V,{FSIG:s}])(F({DSIG:s}),f,f,f,f,V,V,V,V,V,V,{KSIG:s})")
def dense_output_hf(fun, argk, t_old, t, h, rr, vv, rr_old, vv_old, fr, fv, K_):
def dense_output_hf(fun, argk, t_old, t, h, rr, vv, rr_old, vv_old, fr, fv, K):
"""Compute a local interpolant over the last successful step.
Returns
Expand All @@ -36,7 +36,7 @@ def dense_output_hf(fun, argk, t_old, t, h, rr, vv, rr_old, vv_old, fr, fv, K_):
assert t_old is not None
assert t != t_old

K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11, K12 = K_
K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11, K12 = K

dr = (
(
Expand Down

0 comments on commit 2c48d56

Please sign in to comment.