Skip to content

Commit

Permalink
Update ensemble_multi_prob.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Feb 26, 2024
1 parent 0a1a02c commit a6155ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/downstream/ensemble_multi_prob.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ using ModelingToolkit, OrdinaryDiffEq, Test
D = Differential(t)

@named sys1 = ODESystem([D(x) ~ x,
D(y) ~ -y])
D(y) ~ -y],t)
@named sys2 = ODESystem([D(x) ~ 2x,
D(y) ~ -2y])
D(y) ~ -2y],t)
@named sys3 = ODESystem([D(x) ~ 3x,
D(y) ~ -3y])
D(y) ~ -3y],t)

prob1 = ODEProblem(sys1, [1.0, 1.0], (0.0, 1.0))
prob2 = ODEProblem(sys2, [2.0, 2.0], (0.0, 1.0))
Expand Down

0 comments on commit a6155ec

Please sign in to comment.