Skip to content

Commit 55e292d

Browse files
clean up rebase
1 parent 4c704e0 commit 55e292d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/systems/diffeqs/odesystem.jl

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@ function flatten_differential(O::Operation)
1010
return (x, t, order + 1)
1111
end
1212

13-
<<<<<<< master:src/systems/diffeqs/diffeqsystem.jl
1413
struct DiffEq # dⁿx/dtⁿ = rhs
15-
=======
16-
struct ODEExpr # dⁿx/dtⁿ = rhs
17-
>>>>>>> add ReactionSystem and start SDESystem components:src/systems/diffeqs/odesystem.jl
1814
x::Variable
1915
n::Int
2016
rhs::Expression
@@ -102,12 +98,8 @@ function ODESystem(eqs)
10298
ODESystem(deqs, iv, dvs, ps)
10399
end
104100

105-
<<<<<<< master:src/systems/diffeqs/diffeqsystem.jl
106101
function ODESystem(deqs::AbstractVector{DiffEq}, iv, dvs, ps)
107102
tgrad = RefValue(Vector{Expression}(undef, 0))
108-
=======
109-
function ODESystem(deqs::AbstractVector{ODEExpr}, iv, dvs, ps)
110-
>>>>>>> add ReactionSystem and start SDESystem components:src/systems/diffeqs/odesystem.jl
111103
jac = RefValue(Matrix{Expression}(undef, 0, 0))
112104
Wfact = RefValue(Matrix{Expression}(undef, 0, 0))
113105
Wfact_t = RefValue(Matrix{Expression}(undef, 0, 0))

0 commit comments

Comments
 (0)