From bc8003249b0fdf7cee8f7f6b5a8455864db624a5 Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Thu, 21 Dec 2023 10:57:03 -0500 Subject: [PATCH] Remove the true jacobian Klement from the tests --- test/23_test_problems.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/23_test_problems.jl b/test/23_test_problems.jl index 641d273cb..a08c3f252 100644 --- a/test/23_test_problems.jl +++ b/test/23_test_problems.jl @@ -104,12 +104,10 @@ end end @testset "Klement 23 Test Problems" begin - alg_ops = (Klement(), Klement(; init_jacobian = Val(:true_jacobian)), - Klement(; init_jacobian = Val(:true_jacobian_diagonal))) + alg_ops = (Klement(), Klement(; init_jacobian = Val(:true_jacobian_diagonal))) broken_tests = Dict(alg => Int[] for alg in alg_ops) broken_tests[alg_ops[1]] = [1, 2, 4, 5, 6, 11, 22] - broken_tests[alg_ops[2]] = [1, 2, 4, 5, 6, 8, 9, 10, 11, 13, 17, 21, 22] broken_tests[alg_ops[3]] = [2, 4, 5, 6, 7, 18, 22] test_on_library(problems, dicts, alg_ops, broken_tests)