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
julia>using MathematicalSystems
julia>f(u) =1; # irrelevant, just needs to be defined
julia> U0 = [1]; # irrelevant, just needs to be defined
julia>@ivp(u'=f(xxx), u(0) ∈ U0, dim:1) # `xxx` should be `u`InitialValueProblem{BlackBoxContinuousSystem{typeof(f)}, Vector{Int64}}(BlackBoxContinuousSystem{typeof(f)}(f, 1), [1])
The text was updated successfully, but these errors were encountered:
I would expect the following to fail:
The text was updated successfully, but these errors were encountered: