You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a `BVProblem` from the [`ODESystem`](@ref). The arguments `dvs` and
494
483
`ps` are used to set the order of the dependent variable and parameter vectors,
495
-
respectively. `u0` should be either the initial condition, a vector of values `u(t_i)` for collocation methods, or a function returning one or the other.
484
+
respectively. `u0map` should be used to specify the initial condition, or be a function returning an initial condition.
496
485
"""
497
486
function SciMLBase.BVProblem(sys::AbstractODESystem, args...; kwargs...)
498
487
BVProblem{true}(sys, args...; kwargs...)
@@ -517,7 +506,6 @@ function SciMLBase.BVProblem{iip, specialize}(sys::AbstractODESystem, u0map = []
517
506
tspan =get_tspan(sys),
518
507
parammap = DiffEqBase.NullParameters();
519
508
version =nothing, tgrad =false,
520
-
jac =true, sparse =true,
521
509
callback =nothing,
522
510
check_length =true,
523
511
warn_initialize_determined =true,
@@ -531,7 +519,7 @@ function SciMLBase.BVProblem{iip, specialize}(sys::AbstractODESystem, u0map = []
531
519
532
520
f, u0, p =process_SciMLProblem(ODEFunction{iip, specialize}, sys, u0map, parammap;
0 commit comments