|
40 | 40 | alg_ops = (NewtonRaphson(),) |
41 | 41 |
|
42 | 42 | broken_tests = Dict(alg => Int[] for alg in alg_ops) |
43 | | - broken_tests[alg_ops[1]] = [1, 6] |
| 43 | + broken_tests[alg_ops[1]] = [1] |
44 | 44 |
|
45 | 45 | test_on_library(problems, dicts, alg_ops, broken_tests) |
46 | 46 | end |
|
54 | 54 | TrustRegion(; radius_update_scheme = RadiusUpdateSchemes.NLsolve)) |
55 | 55 |
|
56 | 56 | broken_tests = Dict(alg => Int[] for alg in alg_ops) |
57 | | - broken_tests[alg_ops[1]] = [6, 11, 21] |
58 | | - broken_tests[alg_ops[2]] = [6, 11, 21] |
59 | | - broken_tests[alg_ops[3]] = [6, 11, 21] |
60 | | - broken_tests[alg_ops[4]] = [6, 11, 21] |
61 | | - broken_tests[alg_ops[5]] = [6, 21] |
62 | | - broken_tests[alg_ops[6]] = [6, 21] |
| 57 | + broken_tests[alg_ops[1]] = [11, 21] |
| 58 | + broken_tests[alg_ops[2]] = [11, 21] |
| 59 | + broken_tests[alg_ops[3]] = [11, 21] |
| 60 | + broken_tests[alg_ops[4]] = [11, 21] |
| 61 | + broken_tests[alg_ops[5]] = [21] |
| 62 | + broken_tests[alg_ops[6]] = [21] |
63 | 63 |
|
64 | 64 | test_on_library(problems, dicts, alg_ops, broken_tests) |
65 | 65 | end |
|
69 | 69 | LevenbergMarquardt(; linsolve = CholeskyFactorization())) |
70 | 70 |
|
71 | 71 | broken_tests = Dict(alg => Int[] for alg in alg_ops) |
72 | | - broken_tests[alg_ops[1]] = [6, 11, 21] |
73 | | - broken_tests[alg_ops[2]] = [6, 11, 21] |
74 | | - broken_tests[alg_ops[3]] = [6, 11, 21] |
| 72 | + broken_tests[alg_ops[1]] = [11, 21] |
| 73 | + broken_tests[alg_ops[2]] = [11, 21] |
| 74 | + broken_tests[alg_ops[3]] = [11, 21] |
75 | 75 |
|
76 | 76 | test_on_library(problems, dicts, alg_ops, broken_tests) |
77 | 77 | end |
|
80 | 80 | alg_ops = (DFSane(),) |
81 | 81 |
|
82 | 82 | broken_tests = Dict(alg => Int[] for alg in alg_ops) |
83 | | - broken_tests[alg_ops[1]] = [1, 2, 3, 5, 6, 21] |
| 83 | + broken_tests[alg_ops[1]] = [1, 2, 3, 5, 21] |
84 | 84 |
|
85 | 85 | test_on_library(problems, dicts, alg_ops, broken_tests) |
86 | 86 | end |
|
93 | 93 | Broyden(; init_jacobian = Val(:true_jacobian), update_rule = Val(:diagonal))) |
94 | 94 |
|
95 | 95 | broken_tests = Dict(alg => Int[] for alg in alg_ops) |
96 | | - broken_tests[alg_ops[1]] = [1, 5, 6, 11] |
97 | | - broken_tests[alg_ops[2]] = [1, 5, 6, 8, 11, 18] |
98 | | - broken_tests[alg_ops[3]] = [1, 5, 6, 9, 11] |
| 96 | + broken_tests[alg_ops[1]] = [1, 5, 11] |
| 97 | + broken_tests[alg_ops[2]] = [1, 5, 8, 11, 18] |
| 98 | + broken_tests[alg_ops[3]] = [1, 5, 9, 11] |
99 | 99 | broken_tests[alg_ops[4]] = [1, 5, 6, 8, 11] |
100 | 100 | broken_tests[alg_ops[5]] = [1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 21] |
101 | 101 | broken_tests[alg_ops[6]] = [2, 3, 4, 5, 6, 8, 9, 11, 12, 21, 22] |
|
107 | 107 | alg_ops = (Klement(), Klement(; init_jacobian = Val(:true_jacobian_diagonal))) |
108 | 108 |
|
109 | 109 | broken_tests = Dict(alg => Int[] for alg in alg_ops) |
110 | | - broken_tests[alg_ops[1]] = [1, 2, 4, 5, 6, 11, 22] |
111 | | - broken_tests[alg_ops[2]] = [2, 4, 5, 6, 7, 18, 22] |
| 110 | + broken_tests[alg_ops[1]] = [1, 2, 4, 5, 11, 22] |
| 111 | + broken_tests[alg_ops[2]] = [2, 4, 5, 7, 18, 22] |
112 | 112 |
|
113 | 113 | test_on_library(problems, dicts, alg_ops, broken_tests) |
114 | 114 | end |
|
117 | 117 | alg_ops = (PseudoTransient(; alpha_initial = 10.0),) |
118 | 118 |
|
119 | 119 | broken_tests = Dict(alg => Int[] for alg in alg_ops) |
120 | | - broken_tests[alg_ops[1]] = [1, 6, 9, 18, 21, 22] |
| 120 | + broken_tests[alg_ops[1]] = [1, 9, 18, 21, 22] |
121 | 121 |
|
122 | 122 | test_on_library(problems, dicts, alg_ops, broken_tests) |
123 | 123 | end |
0 commit comments