Skip to content

Commit f78be3f

Browse files
Update test/mtk.jl
1 parent 6fcfe7b commit f78be3f

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

test/mtk.jl

-14
Original file line numberDiff line numberDiff line change
@@ -90,20 +90,6 @@ u0_correct = [D(x) => 2.0,
9090
prob_correctu0 = ODEProblem(sys, u0_correct, tspan, p, jac = true, guesses = [w2 => -1.0])
9191
mtkparams_correctu0 = SciMLSensitivity.parameter_values(prob_correctu0)
9292
test_sol = solve(prob_correctu0, Rodas5P(), abstol = 1e-6, reltol = 1e-3)
93-
94-
u0_gt = [D(x) => 2.0,
95-
x => 1.0,
96-
y => 0.0,
97-
z => 0.0,
98-
w2 => -1.0,]
99-
# The initialization might be over determined, but that is necessary as we
100-
# will force DAE initialization to not run via CheckInit. CheckInit will
101-
# still need to check that the algebraic equations are satisfied, so we need to
102-
# make sure that the initialization is correct
103-
prob_gtu0 = ODEProblem(sys, u0_gt, tspan, p, jac = true)
104-
mtkparams_gtu0 = SciMLSensitivity.parameter_values(prob_gtu0)
105-
test_sol = solve(prob_gtu0, Rodas5P(), abstol = 1e-6, reltol = 1e-3)
106-
10793
u0_overdetermined = [D(x) => 2.0,
10894
x => 1.0,
10995
y => 0.0,

0 commit comments

Comments
 (0)