Skip to content

Commit

Permalink
Detect all supported Rosenbrock methods
Browse files Browse the repository at this point in the history
  • Loading branch information
SouthEndMusic committed Oct 20, 2023
1 parent e510f4b commit b27f92a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/create.jl
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function get_chunk_sizes(config::Config, chunk_size::Int)::Vector{Int}
if config.solver.autodiff
push!(chunk_sizes, chunk_size)
end
if config.solver.algorithm in ["Rodas5"]
if config.solver.algorithm in ["Rodas5", "Rosenbrock23"]
push!(chunk_sizes, 1)
end
return chunk_sizes
Expand Down

0 comments on commit b27f92a

Please sign in to comment.