@@ -89,7 +89,7 @@ struct ImplicitDiscreteProblem{uType, tType, isinplace, P, F, K} <:
89
89
_u0 = prepare_initial_state (u0)
90
90
_tspan = promote_tspan (tspan)
91
91
warn_paramtype (p)
92
- new{typeof (_u0), typeof (_tspan), isinplace (f, 6 ),
92
+ new{typeof (_u0), typeof (_tspan), isinplace (f, 5 ),
93
93
typeof (p),
94
94
typeof (f), typeof (kwargs)}(f,
95
95
_u0,
@@ -111,12 +111,12 @@ Defines a discrete problem with the specified functions.
111
111
"""
112
112
function ImplicitDiscreteProblem (f:: ImplicitDiscreteFunction , u0, tspan:: Tuple ,
113
113
p = NullParameters (); kwargs... )
114
- ImplicitDiscreteProblem {isinplace(f, 6 )} (f, u0, tspan, p; kwargs... )
114
+ ImplicitDiscreteProblem {isinplace(f, 5 )} (f, u0, tspan, p; kwargs... )
115
115
end
116
116
117
117
function ImplicitDiscreteProblem (f, u0, tspan, p = NullParameters ();
118
118
kwargs... )
119
- iip = isinplace (f, 6 )
119
+ iip = isinplace (f, 5 )
120
120
ImplicitDiscreteProblem (ImplicitDiscreteFunction {iip} (f), u0, tspan, p; kwargs... )
121
121
end
122
122
@@ -152,5 +152,3 @@ struct ImplicitDiscreteAliasSpecifier
152
152
end
153
153
end
154
154
end
155
-
156
-
0 commit comments