Skip to content

Commit

Permalink
Merge pull request #111 from avik-pal/ap/23tests
Browse files Browse the repository at this point in the history
Fix the 23 test problems
  • Loading branch information
ChrisRackauckas authored Dec 25, 2023
2 parents 41ce280 + d7deef5 commit 27ebb96
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/SimpleNonlinearSolve/test/23_test_problems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ end

# dictionary with indices of test problems where method does not converge to small residual
broken_tests = Dict(alg => Int[] for alg in alg_ops)
broken_tests[alg_ops[1]] = [6]
broken_tests[alg_ops[1]] = []

test_on_library(problems, dicts, alg_ops, broken_tests)
end
Expand Down Expand Up @@ -82,7 +82,7 @@ end
alg_ops = (SimpleKlement(),)

broken_tests = Dict(alg => Int[] for alg in alg_ops)
broken_tests[alg_ops[1]] = [1, 2, 4, 5, 6, 11, 12, 22]
broken_tests[alg_ops[1]] = [1, 2, 4, 5, 11, 12, 22]

test_on_library(problems, dicts, alg_ops, broken_tests)
end
3 changes: 3 additions & 0 deletions lib/SimpleNonlinearSolve/test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
NonlinearProblemLibrary = "0.1.2"

0 comments on commit 27ebb96

Please sign in to comment.