Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
YingboMa committed Sep 12, 2023
1 parent 6e70763 commit 77a8792
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 77a8792

Please sign in to comment.