Skip to content

Commit

Permalink
fix error message in ssp
Browse files Browse the repository at this point in the history
  • Loading branch information
warisa-r committed Aug 10, 2024
1 parent 3f75f9f commit 2c8f2e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/time_integration/methods_SSP.jl
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function solve(ode::ODEProblem, alg = SimpleSSPRK33()::SimpleAlgorithmSSP;
# initialize callbacks
if callback isa CallbackSet
foreach(callback.continuous_callbacks) do cb
throw(ArgumentError("Continuous callbacks are unsupported with the SSP storage time integration methods."))
throw(ArgumentError("Continuous callbacks are unsupported with the SSP time integration methods."))
end
foreach(callback.discrete_callbacks) do cb
cb.initialize(cb, integrator.u, integrator.t, integrator)
Expand Down

0 comments on commit 2c8f2e5

Please sign in to comment.