Skip to content

Commit d65c25b

Browse files
change to u0 permutation
1 parent 304f80e commit d65c25b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/odenlstep.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
A collection of all the data required for custom ODE Nonlinear problem solving
55
"""
6-
struct ODENLStepData{NLProb, UNLProb, SetGammaC, SetOuterTmp, SetInnerTmp, NLProbMap}
6+
struct ODENLStepData{NLProb, SetU0, SetGammaC, SetOuterTmp, SetInnerTmp, NLProbMap}
77
"""
88
The `AbstractNonlinearProblem` to define custom nonlinear problems to be used for
99
implicit time discretizations. This allows to use extra structure of the ODE function (e.g.
@@ -17,6 +17,7 @@ struct ODENLStepData{NLProb, UNLProb, SetGammaC, SetOuterTmp, SetInnerTmp, NLPro
1717
`g(z,p') = γ₁⋅f(γ₂⋅z+inner_tmp,p,t_c) + outer_tmp - M*z = 0`.
1818
"""
1919
nlprob::NLProb
20+
u0perm::SetU0
2021
set_γ_c::SetGammaC
2122
set_outer_tmp::SetOuterTmp
2223
set_inner_tmp::SetInnerTmp

0 commit comments

Comments
 (0)