Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test master #297

Merged
merged 4 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ functionality should check out [DifferentialEquations.jl](https://github.com/Sci

DelayDiffEq.jl is part of the JuliaDiffEq common interface, but can be used independently of DifferentialEquations.jl. The only requirement is that the user passes a DelayDiffEq.jl algorithm to `solve`. For example, we can solve the [DDE tutorial from the documentation](https://diffeq.sciml.ai/stable/tutorials/dde_example/) using the `MethodOfSteps(Tsit5())` algorithm:

ChrisRackauckas marked this conversation as resolved.
Show resolved Hide resolved

```julia
using DelayDiffEq
const p0 = 0.2; const q0 = 0.3; const v0 = 1; const d0 = 5
Expand Down
6 changes: 3 additions & 3 deletions test/regression/waltman.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ function test_waltman_sol(sol)
end

# standard factorization
sol1 = solve(PROB_WALTMAN, MethodOfSteps(Rosenbrock23()); PROB_KWARGS...)
sol1 = solve(PROB_WALTMAN, MethodOfSteps(Rodas5P()); PROB_KWARGS...)
test_waltman_sol(sol1)

# in-place LU factorization
sol2 = solve(PROB_WALTMAN,
MethodOfSteps(Rosenbrock23(linsolve = GenericFactorization(lu!)));
MethodOfSteps(Rodas5P(linsolve = GenericFactorization(lu!)));
PROB_KWARGS...)
test_waltman_sol(sol2)

# out-of-place LU factorization
sol3 = solve(
PROB_WALTMAN, MethodOfSteps(Rosenbrock23(linsolve = GenericFactorization(lu)));
PROB_WALTMAN, MethodOfSteps(Rodas5P(linsolve = GenericFactorization(lu)));
PROB_KWARGS...)
test_waltman_sol(sol3)

Expand Down
Loading