Skip to content

Commit a6155ec

Browse files
Update ensemble_multi_prob.jl
1 parent 0a1a02c commit a6155ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/downstream/ensemble_multi_prob.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ using ModelingToolkit, OrdinaryDiffEq, Test
44
D = Differential(t)
55

66
@named sys1 = ODESystem([D(x) ~ x,
7-
D(y) ~ -y])
7+
D(y) ~ -y],t)
88
@named sys2 = ODESystem([D(x) ~ 2x,
9-
D(y) ~ -2y])
9+
D(y) ~ -2y],t)
1010
@named sys3 = ODESystem([D(x) ~ 3x,
11-
D(y) ~ -3y])
11+
D(y) ~ -3y],t)
1212

1313
prob1 = ODEProblem(sys1, [1.0, 1.0], (0.0, 1.0))
1414
prob2 = ODEProblem(sys2, [2.0, 2.0], (0.0, 1.0))

0 commit comments

Comments
 (0)