Skip to content

Commit

Permalink
with chunk_size kwarg, these will warn now. Setting chunk_size to 1 s…
Browse files Browse the repository at this point in the history
…hould be uneccesary anyway
  • Loading branch information
jClugstor committed Jan 2, 2025
1 parent bd72fc1 commit 20e7058
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integrators/cache.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ println("Rosenbrock23")
end

println("Rodas4")
@test_nowarn solve(prob, MethodOfSteps(Rodas4(chunk_size = 1)); dt = 0.5)
@test_nowarn solve(prob, MethodOfSteps(Rodas4()); dt = 0.5)

println("Rodas5")
@test_nowarn solve(prob, MethodOfSteps(Rodas5(chunk_size = 1)); dt = 0.5)
@test_nowarn solve(prob, MethodOfSteps(Rodas5()); dt = 0.5)

0 comments on commit 20e7058

Please sign in to comment.