Skip to content

Commit

Permalink
Merge pull request #2511 from SciML/ChrisRackauckas-patch-8
Browse files Browse the repository at this point in the history
Test master
  • Loading branch information
ChrisRackauckas authored Nov 5, 2024
2 parents 1903479 + a021ce9 commit 5665b4c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ ordinary differential equation solvers and utilities. While completely independe
and usable on its own, users interested in using this
functionality should check out [DifferentialEquations.jl](https://github.com/SciML/DifferentialEquations.jl).


## Installation

Assuming that you already have Julia correctly installed, it suffices to import
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqFIRK/test/ode_firk_tests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using OrdinaryDiffEqFIRK, DiffEqDevTools, Test, LinearAlgebra
import ODEProblemLibrary: prob_ode_linear, prob_ode_2Dlinear, van

testTol = 0.35
testTol = 0.5

for prob in [prob_ode_linear, prob_ode_2Dlinear]
sim21 = test_convergence(1 .// 2 .^ (6:-1:3), prob, RadauIIA5())
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqNonlinearSolve/src/type.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function NLSolver{iip, tType}(z, tmp, ztmp, γ, c, α, alg, κ, fast_convergence
tmp,
tmp2,
ztmp,
γ,
float(γ),
convert(tType, c),
convert(tType, α),
alg,
Expand Down
2 changes: 1 addition & 1 deletion test/downstream/autodiff_events.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ prob = ODEProblem(f, eltype(p).([1.0, 0.0]), eltype(p).((0.0, 1.0)), copy(p))
function test_f(p)
_prob = remake(prob, p = p)
solve(_prob, Tsit5(), abstol = 1e-14, reltol = 1e-14, callback = cb,
save_everystep = false)[end]
save_everystep = false).u[end]
end
findiff = Calculus.finite_difference_jacobian(test_f, p)
findiff
Expand Down
4 changes: 2 additions & 2 deletions test/downstream/delaydiffeq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ using Test
@test sol.errors[:l∞] < error

sol_scalar = solve(prob_scalar, ddealg)
@test sol.tsol_scalar.t atol=1e-6
@test sol[1, :] sol_scalar.u
@test sol.tsol_scalar.t atol=1e-3
@test sol[1, :] sol_scalar.u atol=1e-3
end
end

Expand Down

0 comments on commit 5665b4c

Please sign in to comment.