Skip to content

Commit 3dc7432

Browse files
remove remaining Wfact test
1 parent 9e9f967 commit 3dc7432

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/odesystem.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,7 @@ p = [k₁ => 0.04,
195195
tspan = (0.0,100000.0)
196196
prob1 = ODEProblem(sys,u0,tspan,p)
197197
prob2 = ODEProblem(sys,u0,tspan,p,jac=true)
198-
prob3 = ODEProblem(sys,u0,tspan,p,Wfact=true,Wfact_t=true)
199-
for (prob, atol) in [(prob1, 1e-12), (prob2, 1e-12), (prob3, 1e-12)]
198+
for (prob, atol) in [(prob1, 1e-12), (prob2, 1e-12)]
200199
sol = solve(prob, Rodas5())
201200
@test all(x->(sum(x), 1.0, atol=atol), sol.u)
202201
end

0 commit comments

Comments
 (0)