Skip to content

Commit

Permalink
Update waltman.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Nov 5, 2024
1 parent 3e89322 commit 2b611bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/regression/waltman.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ 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
Expand All @@ -32,7 +32,7 @@ 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

0 comments on commit 2b611bb

Please sign in to comment.