Skip to content

Commit

Permalink
Merge branch 'myb/ps' of https://github.com/SciML/ModelingToolkit.jl
Browse files Browse the repository at this point in the history
…into myb/ps
  • Loading branch information
Brad Carman committed Sep 13, 2023
2 parents d53907e + 77a8792 commit 05c6579
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/split_parameters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ prob = ODEProblem(sys, [], (0.0, t_end), [s.src.data => x])
@test prob.p isa Tuple{Vector{Float64}, Vector{Int}, Vector{Vector{Float64}}}
sol = solve(prob, ImplicitEuler());
@test sol.retcode == ReturnCode.Success
@test sol[y][end] == x[end]

@test sol[y][end] == x[end]

# ------------------------ Mixed Type Converted to float (default behavior)

Expand All @@ -78,6 +77,3 @@ prob = ODEProblem(sys, [], tspan, []; tofloat = false)
@test prob.p isa Tuple{Vector{Float64}, Vector{Int64}}
sol = solve(prob, ImplicitEuler());
@test sol.retcode == ReturnCode.Success



0 comments on commit 05c6579

Please sign in to comment.