Skip to content

Commit

Permalink
Some tests in nested FIRK are OK now
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikQQY committed Dec 17, 2024
1 parent 87a1e10 commit f6866d3
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions lib/BoundaryValueDiffEqFIRK/test/nested/nlls_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -184,13 +184,9 @@ end
@testset "Problem: $i" for i in 1:2
prob = UnderconstrainedProbArr[i]
@testset "Solver: $name" for (name, solver) in zip(SOLVERS_NAMES, SOLVERS)
if name == "RadauIIa5 with GaussNewton"
continue
else
sol = solve(
prob, solver; verbose = false, dt = 0.1, abstol = 1e-1, reltol = 1e-1)
@test SciMLBase.successful_retcode(sol.retcode)
end
sol = solve(
prob, solver; verbose = false, dt = 0.1, abstol = 1e-1, reltol = 1e-1)
@test SciMLBase.successful_retcode(sol.retcode)
end
end
end

0 comments on commit f6866d3

Please sign in to comment.