Skip to content

Commit dd138f0

Browse files
fix naming
1 parent 3f6f058 commit dd138f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/systems/solver_nlprob.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function generate_ode_nlprobdata(sys::System, u0, p, mm = calculate_massmatrix(sys))
1+
function generate_ODENLStepData(sys::System, u0, p, mm = calculate_massmatrix(sys))
22
nlsys, outer_tmp, inner_tmp = inner_nlsystem(sys, mm)
33
state = ProblemState(; u = u0, p)
44
op = Dict()
@@ -16,7 +16,7 @@ function generate_ode_nlprobdata(sys::System, u0, p, mm = calculate_massmatrix(s
1616
set_inner_tmp = setsym(nlsys, inner_tmp)
1717
nlprobmap = getsym(nlsys, unknowns(sys))
1818

19-
return SciMLBase.ODE_NLProbData(nlprob, nothing, set_gamma_c, set_outer_tmp, set_inner_tmp, nlprobmap)
19+
return SciMLBase.ODENLStepData(nlprob, nothing, set_gamma_c, set_outer_tmp, set_inner_tmp, nlprobmap)
2020
end
2121

2222
const ODE_GAMMA = only(@parameters γₘₜₖ)

0 commit comments

Comments
 (0)