Skip to content

Commit aa10184

Browse files
committed
fix
1 parent df0e9a3 commit aa10184

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/simulation_and_solving/hybrid_models.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ let
146146
ps_hybrid = [ps_ode; ps_jump]
147147
tspan = (0.0, 10000.0)
148148
ode_prob = ODEProblem(rn_ode, u0_ode, tspan, ps_ode)
149-
jump_prob = JumpProblem(JumpInputs(rn_jump, u0_jump, tspan, ps_jump; remake_warn = false); save_positions = (false,false); rng)
150-
hybrid_prob = JumpProblem(JumpInputs(rn_hybrid, u0_hybrid, tspan, ps_hybrid; remake_warn = false); save_positions = (false,false); rng)
149+
jump_prob = JumpProblem(JumpInputs(rn_jump, u0_jump, tspan, ps_jump; remake_warn = false); save_positions = (false,false), rng)
150+
hybrid_prob = JumpProblem(JumpInputs(rn_hybrid, u0_hybrid, tspan, ps_hybrid; remake_warn = false); save_positions = (false,false), rng)
151151

152152
# Performs simulations. Checks that ODE parts are identical. Check that jump parts have similar statistics.
153153
ode_sol = solve(ode_prob, Tsit5(); saveat = 1.0, abstol = 1e-10, reltol = 1e-10)

0 commit comments

Comments
 (0)