From d7deef5ab0b2e6c1b3857e4cb24344d2b8637788 Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Mon, 25 Dec 2023 12:22:31 -0500 Subject: [PATCH] Fix the 23 test problems --- lib/SimpleNonlinearSolve/test/23_test_problems.jl | 4 ++-- lib/SimpleNonlinearSolve/test/Project.toml | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/SimpleNonlinearSolve/test/23_test_problems.jl b/lib/SimpleNonlinearSolve/test/23_test_problems.jl index bf85967d3..bc82145a9 100644 --- a/lib/SimpleNonlinearSolve/test/23_test_problems.jl +++ b/lib/SimpleNonlinearSolve/test/23_test_problems.jl @@ -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 @@ -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 diff --git a/lib/SimpleNonlinearSolve/test/Project.toml b/lib/SimpleNonlinearSolve/test/Project.toml index 230ab90ea..993e98749 100644 --- a/lib/SimpleNonlinearSolve/test/Project.toml +++ b/lib/SimpleNonlinearSolve/test/Project.toml @@ -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"