Skip to content

Commit

Permalink
Fix termination condition deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Jul 29, 2024
1 parent 820157f commit cca993c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "SteadyStateDiffEq"
uuid = "9672c7b4-1e72-59bd-8a11-6ac3964bc41f"
version = "2.2.0"
version = "2.2.1"

[deps]
ConcreteStructs = "2569d6c7-a4a2-43d3-a901-331e8e4be471"
Expand Down
2 changes: 1 addition & 1 deletion src/solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ end

function DiffEqBase.__solve(prob::DiffEqBase.AbstractSteadyStateProblem, alg::DynamicSS,
args...; abstol = 1e-8, reltol = 1e-6, odesolve_kwargs = (;),
save_idxs = nothing, termination_condition = SteadyStateDiffEqTerminationMode(),
save_idxs = nothing, termination_condition = NormTerminationMode(),
kwargs...)
tspan = __get_tspan(prob.u0, alg)

Expand Down

0 comments on commit cca993c

Please sign in to comment.