Skip to content

Commit 5082d8d

Browse files
(puts mustache on) "I'm a constructor I swear"
1 parent f6831b1 commit 5082d8d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/systems/diffeqs/abstractodesystem.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Create a Julia expression for an `ODEFunction` from the [`ODESystem`](@ref).
204204
The arguments `dvs` and `ps` are used to set the order of the dependent
205205
variable and parameter vectors, respectively.
206206
"""
207-
struct ODEFunctionExpr end
207+
struct ODEFunctionExpr{iip} end
208208

209209
function ODEFunctionExpr{iip}(sys::AbstractODESystem, dvs = states(sys),
210210
ps = parameters(sys), u0 = nothing;
@@ -314,7 +314,7 @@ Generates a Julia expression for constructing an ODEProblem from an
314314
ODESystem and allows for automatically symbolically calculating
315315
numerical enhancements.
316316
"""
317-
struct ODEProblemExpr end
317+
struct ODEProblemExpr{iip} end
318318

319319
function ODEProblemExpr{iip}(sys::AbstractODESystem,u0map,tspan,
320320
parammap=DiffEqBase.NullParameters();
@@ -380,7 +380,7 @@ function DiffEqBase.SteadyStateProblem{iip}(sys::AbstractODESystem,u0map,
380380
SteadyStateProblem(f,u0,p;kwargs...)
381381
end
382382

383-
struct SteadyStateProblemExpr end
383+
struct SteadyStateProblemExpr{iip} end
384384

385385
"""
386386
```julia

src/systems/diffeqs/sdesystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Create a Julia expression for an `SDEFunction` from the [`SDESystem`](@ref).
168168
The arguments `dvs` and `ps` are used to set the order of the dependent
169169
variable and parameter vectors, respectively.
170170
"""
171-
struct SDEFunctionExpr end
171+
struct SDEFunctionExpr{iip} end
172172

173173
function SDEFunctionExpr{iip}(sys::SDESystem, dvs = states(sys),
174174
ps = parameters(sys), u0 = nothing;
@@ -294,7 +294,7 @@ Generates a Julia expression for constructing an ODEProblem from an
294294
ODESystem and allows for automatically symbolically calculating
295295
numerical enhancements.
296296
"""
297-
struct SDEProblemExpr end
297+
struct SDEProblemExpr{iip} end
298298

299299
function SDEProblemExpr{iip}(sys::SDESystem,u0map,tspan,
300300
parammap=DiffEqBase.NullParameters();

0 commit comments

Comments
 (0)