@@ -426,7 +426,7 @@ function DiffEqBase.DiscreteProblem(sys::JumpSystem, u0map, tspan::Union{Tuple,
426
426
end
427
427
428
428
_f, u0, p = process_SciMLProblem (EmptySciMLFunction, sys, u0map, parammap;
429
- t = tspan === nothing ? nothing : tspan[1 ], use_union, tofloat = false , check_length = false )
429
+ t = tspan === nothing ? nothing : tspan[1 ], use_union, tofloat = false , check_length = false , build_initializeprob = false )
430
430
f = DiffEqBase. DISCRETE_INPLACE_DEFAULT
431
431
432
432
observedfun = ObservedFunctionCache (
@@ -523,7 +523,7 @@ function DiffEqBase.ODEProblem(sys::JumpSystem, u0map, tspan::Union{Tuple, Nothi
523
523
parameter_dependencies = parameter_dependencies (sys),
524
524
metadata = get_metadata (sys), gui_metadata = get_gui_metadata (sys))
525
525
osys = complete (osys)
526
- return ODEProblem (osys, u0map, tspan, parammap; check_length = false , kwargs... )
526
+ return ODEProblem (osys, u0map, tspan, parammap; check_length = false , build_initializeprob = false , kwargs... )
527
527
else
528
528
_, u0, p = process_SciMLProblem (EmptySciMLFunction, sys, u0map, parammap;
529
529
t = tspan === nothing ? nothing : tspan[1 ], use_union, tofloat = false ,
0 commit comments