Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #551 from SciML/ChrisRackauckas-patch-4
Browse files Browse the repository at this point in the history
test master
  • Loading branch information
ChrisRackauckas authored Apr 3, 2023
2 parents dcb94b2 + 0101917 commit c863cc6
Show file tree
Hide file tree
Showing 2 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 @@ -72,3 +72,4 @@ prob = ODEProblem(step, u0, (t0, t1))
alg = KenCarp4()
sol = solve(prob, alg)
```

10 changes: 5 additions & 5 deletions test/Misc/jacvec_operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ ff2 = ODEFunction(lorenz,

for ff in [ff1, ff2]
prob = ODEProblem(ff, u0, tspan)
@test solve(prob, TRBDF2()).retcode == :Success
@test solve(prob, TRBDF2(linsolve = KrylovJL_GMRES())).retcode == :Success
@test solve(prob, Exprb32()).retcode == :Success
@test sol = solve(prob, Rosenbrock23()).retcode == :Success
@test sol = solve(prob, Rosenbrock23(linsolve = KrylovJL_GMRES())).retcode == :Success
@test solve(prob, TRBDF2()).retcode == ReturnCode.Success
@test solve(prob, TRBDF2(linsolve = KrylovJL_GMRES())).retcode == ReturnCode.Success
@test solve(prob, Exprb32()).retcode == ReturnCode.Success
@test sol = solve(prob, Rosenbrock23()).retcode == ReturnCode.Success
@test sol = solve(prob, Rosenbrock23(linsolve = KrylovJL_GMRES())).retcode == ReturnCode.Success
end

0 comments on commit c863cc6

Please sign in to comment.