Skip to content

Commit

Permalink
Update Project.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored and avik-pal committed Feb 21, 2024
1 parent b99538f commit 095e57a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Sundials = "c3572dad-4567-51f8-b174-8c6c989267f4"
Aqua = "0.8"
DataInterpolations = "4"
DataStructures = "0.18.13"
DiffEqBase = "6.141"
ForwardDiff = "0.10.19"
DiffEqBase = "6.146"
ForwardDiff = "0.10.36"
Functors = "0.4"
LinearAlgebra = "1.10"
Markdown = "1.10"
Expand All @@ -35,16 +35,16 @@ ODEProblemLibrary = "0.1.5"
OrdinaryDiffEq = "6.68"
Parameters = "0.12"
QuadGK = "2.4"
RecipesBase = "1.1"
RecipesBase = "1.3.4"
RecursiveArrayTools = "3.8"
SciMLBase = "2.9"
SciMLBase = "2.26"
SciMLSensitivity = "7.49"
StaticArrays = "1.8"
StaticArraysCore = "1.4"
Sundials = "4.19.2"
Test = "1"
Tracker = "0.2.15"
Zygote = "0.6.61"
Zygote = "0.6.69"
julia = "1.10"

[extras]
Expand Down
2 changes: 1 addition & 1 deletion src/domain.jl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function affect!(integrator, f::AbstractDomainAffect{T, S, uType}) where {T, S,
if dtcache == dt
if integrator.opts.verbose
@warn("Could not restrict values to domain. Iteration was canceled since ",
"proposed time step dt = ", dt," could not be reduced.")
"proposed time step dt = ", dt, " could not be reduced.")
end
break
end
Expand Down
2 changes: 1 addition & 1 deletion src/saving.jl
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function linearize_period(t₀, t₁, u₀, u₁, integ, ilsc, caches, u_mask,
# Sanity check that we don't accidentally infinitely recurse
if t₁ - t₀ < dtmin
@debug("Linearization failure",
t₁, t₀, string(u₀), string(u₁), string(u_mask),dtmin)
t₁, t₀, string(u₀), string(u₁), string(u_mask), dtmin)
throw(ArgumentError("Linearization failed, fell below linearization subdivision threshold"))
end

Expand Down
2 changes: 1 addition & 1 deletion test/saving_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ if VERSION >= v"1.9" # stack
atol = abstol^(2.0^(-deriv_idx)),
rtol = reltol^(2.0^(-deriv_idx)))
if !check
@error("Check failed", solver,deriv_idx)
@error("Check failed", solver, deriv_idx)
display(abs.(u_linear_upsampled .- u_interp_upsampled))
end
@test check
Expand Down

0 comments on commit 095e57a

Please sign in to comment.