@@ -12,8 +12,7 @@ function test_on_library(problems, dicts, alg_ops, broken_tests, ϵ = 1e-4;
12
12
@testset " $idx : $(dict[" title" ]) " begin
13
13
for alg in alg_ops
14
14
try
15
- sol = solve (nlprob, alg; maxiters = 10000 ,
16
- termination_condition = AbsNormTerminationMode ())
15
+ sol = solve (nlprob, alg; maxiters = 10000 )
17
16
problem (res, sol. u, nothing )
18
17
19
18
skip = skip_tests != = nothing && idx in skip_tests[alg]
99
98
broken_tests = Dict (alg => Int[] for alg in alg_ops)
100
99
broken_tests[alg_ops[1 ]] = [1 , 5 , 6 , 11 ]
101
100
broken_tests[alg_ops[2 ]] = [1 , 5 , 6 , 8 , 11 , 18 ]
102
- broken_tests[alg_ops[3 ]] = [1 , 4 , 5 , 6 , 9 , 11 ]
101
+ broken_tests[alg_ops[3 ]] = [1 , 5 , 6 , 9 , 11 ]
103
102
broken_tests[alg_ops[4 ]] = [1 , 5 , 6 , 8 , 11 ]
104
- broken_tests[alg_ops[5 ]] = [1 , 3 , 4 , 5 , 6 , 8 , 9 , 11 , 12 , 15 , 21 ]
105
- broken_tests[alg_ops[6 ]] = [3 , 4 , 5 , 6 , 8 , 9 , 11 , 12 , 21 ]
106
-
107
- skip_tests = Dict (alg => Int[] for alg in alg_ops)
108
- skip_tests[alg_ops[1 ]] = [2 , 22 ]
109
- skip_tests[alg_ops[2 ]] = [2 , 22 ]
110
- skip_tests[alg_ops[3 ]] = [2 , 22 ]
111
- skip_tests[alg_ops[4 ]] = [2 , 22 ]
112
- skip_tests[alg_ops[5 ]] = [2 , 22 ]
113
- skip_tests[alg_ops[6 ]] = [2 , 22 ]
114
-
115
- test_on_library (problems, dicts, alg_ops, broken_tests; skip_tests)
103
+ broken_tests[alg_ops[5 ]] = [1 , 2 , 3 , 4 , 5 , 6 , 8 , 9 , 11 , 12 , 21 ]
104
+ broken_tests[alg_ops[6 ]] = [2 , 3 , 4 , 5 , 6 , 8 , 9 , 11 , 12 , 21 , 22 ]
105
+
106
+ test_on_library (problems, dicts, alg_ops, broken_tests)
116
107
end
117
108
118
109
@testset " Klement 23 Test Problems" begin
121
112
122
113
broken_tests = Dict (alg => Int[] for alg in alg_ops)
123
114
broken_tests[alg_ops[1 ]] = [1 , 2 , 4 , 5 , 6 , 11 , 22 ]
124
- broken_tests[alg_ops[2 ]] = [1 , 2 , 4 , 5 , 6 , 8 , 9 , 10 , 11 , 13 , 17 , 21 , 22 , 23 ]
115
+ broken_tests[alg_ops[2 ]] = [1 , 2 , 4 , 5 , 6 , 8 , 9 , 10 , 11 , 13 , 17 , 21 , 22 ]
125
116
broken_tests[alg_ops[3 ]] = [2 , 4 , 5 , 6 , 7 , 18 , 22 ]
126
117
127
118
test_on_library (problems, dicts, alg_ops, broken_tests)
0 commit comments