Skip to content

Commit

Permalink
fix a few
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Sep 14, 2024
1 parent 9c5ffc5 commit 64b7d9e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions benchmarks/AstroChem/Manifest.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is machine-generated - editing it directly is not advised

julia_version = "1.10.4"
julia_version = "1.10.5"
manifest_format = "2.0"
project_hash = "8702bd396dbf00bab17774defca37a9a55f9bfee"

Expand Down Expand Up @@ -2600,7 +2600,7 @@ version = "0.15.2+0"
[[deps.libblastrampoline_jll]]
deps = ["Artifacts", "Libdl"]
uuid = "8e850b90-86db-534c-a0d3-1478176c7d93"
version = "5.8.0+1"
version = "5.11.0+0"

[[deps.libdecor_jll]]
deps = ["Artifacts", "Dbus_jll", "JLLWrappers", "Libdl", "Libglvnd_jll", "Pango_jll", "Wayland_jll", "xkbcommon_jll"]
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/AstroChem/astrochem.jmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ author: Gijs Vermariën and Chris Rackauckas
using Catalyst
using OrdinaryDiffEq
using Plots
using ModelingToolkit.Symbolics
using Symbolics
using DiffEqDevTools
using Sundials, ODEInterface, ODEInterfaceDiffEq, LSODA
```
Expand Down
6 changes: 3 additions & 3 deletions benchmarks/AstroChem/nelson.jmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ author: Stella Offner and Chris Rackauckas
```julia
using OrdinaryDiffEq
using Plots
using Sundials
using Sundials, LSODA
using ODEInterface, ODEInterfaceDiffEq
```

Expand Down Expand Up @@ -160,10 +160,10 @@ reltols = 1.0 ./ 10.0 .^ (8:10)
sol = solve(prob, DP8(), abstol=1e-8, reltol=1e-8)


setups = [Dict(:alg=>DP8())
setups = [Dict(:alg=>VCABM())
Dict(:alg=>Vern7())
Dict(:alg=>CVODE_Adams())
Dict(:alg=>ARKODE(Sundials.Explicit(),order=6))
Dict(:alg=>CVODE_BDF())
Dict(:alg=>lsoda())
Dict(:alg=>odex())
Dict(:alg=>ddeabm())
Expand Down

0 comments on commit 64b7d9e

Please sign in to comment.