Skip to content

Commit

Permalink
no error calcuation
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Aug 20, 2022
1 parent 1554989 commit 716e52d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/common_interface/cvode.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ sol_idxs = solve(prob, CVODE_Adams(); save_idxs = [1], timeseries_errors = false

@test sol[1, :] == sol_idxs[1, :]

sol_idxs = solve(prob, CVODE_Adams(); save_idxs = [1, 2], timeseries_errors = false)
sol_idxs = solve(prob, CVODE_Adams(); save_idxs = [1, 2], timeseries_errors = false,
calculate_error = false)
@test length(sol_idxs[1]) == 2
@test sol[1, :] == sol_idxs[1, :]
@test sol[2, :] == sol_idxs[2, :]
Expand Down

0 comments on commit 716e52d

Please sign in to comment.