Skip to content

Commit

Permalink
[ci skip] patch residual control tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Dec 21, 2021
1 parent 171da2c commit 4f272a5
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,7 +1,7 @@
name = "DelayDiffEq"
uuid = "bcd4f6db-9728-5f36-b5f7-82caef46ccdb"
authors = ["Chris Rackauckas <accounts@chrisrackauckas.com>"]
version = "5.32.1"
version = "5.32.2"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
2 changes: 1 addition & 1 deletion test/integrators/residual_control.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const prob_wo = remake(prob; constant_lags = nothing)

sol = solve(prob_wo, alg; abstol = 1e-9, reltol = 1e-6)

@test sol.errors[:l∞] < 5.0e-8
@test sol.errors[:l∞] < 6.0e-8
@test sol.errors[:final] < 3.4e-9
@test sol.errors[:l2] < 2.2e-8

Expand Down

2 comments on commit 4f272a5

@ChrisRackauckas
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/50952

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v5.32.2 -m "<description of version>" 4f272a5c46df3812147712e9127fef323c363e64
git push origin v5.32.2

Please sign in to comment.