@@ -43,64 +43,64 @@ export problems, dicts, test_on_library
43
43
end
44
44
45
45
@testitem " 23 Test Problems: SimpleNewtonRaphson" setup= [RobustnessTesting] tags= [:core ] begin
46
- alg_ops = (SimpleNewtonRaphson (),)
46
+ alg_ops= (SimpleNewtonRaphson (),)
47
47
48
- broken_tests = Dict (alg => Int[] for alg in alg_ops)
49
- broken_tests[alg_ops[1 ]] = []
48
+ broken_tests= Dict (alg=> Int[] for alg in alg_ops)
49
+ broken_tests[alg_ops[1 ]]= []
50
50
51
51
test_on_library (problems, dicts, alg_ops, broken_tests)
52
52
end
53
53
54
54
@testitem " 23 Test Problems: SimpleHalley" setup= [RobustnessTesting] tags= [:core ] begin
55
- alg_ops = (SimpleHalley (),)
55
+ alg_ops= (SimpleHalley (),)
56
56
57
- broken_tests = Dict (alg => Int[] for alg in alg_ops)
57
+ broken_tests= Dict (alg=> Int[] for alg in alg_ops)
58
58
if Sys. isapple ()
59
- broken_tests[alg_ops[1 ]] = [1 , 5 , 11 , 15 , 16 , 18 ]
59
+ broken_tests[alg_ops[1 ]]= [1 , 5 , 11 , 15 , 16 , 18 ]
60
60
else
61
- broken_tests[alg_ops[1 ]] = [1 , 5 , 15 , 16 , 18 ]
61
+ broken_tests[alg_ops[1 ]]= [1 , 5 , 15 , 16 , 18 ]
62
62
end
63
63
64
64
test_on_library (problems, dicts, alg_ops, broken_tests)
65
65
end
66
66
67
67
@testitem " 23 Test Problems: SimpleTrustRegion" setup= [RobustnessTesting] tags= [:core ] begin
68
- alg_ops = (SimpleTrustRegion (), SimpleTrustRegion (; nlsolve_update_rule = Val (true )))
68
+ alg_ops= (SimpleTrustRegion (), SimpleTrustRegion (; nlsolve_update_rule = Val (true )))
69
69
70
- broken_tests = Dict (alg => Int[] for alg in alg_ops)
71
- broken_tests[alg_ops[1 ]] = [3 , 15 , 16 , 21 ]
72
- broken_tests[alg_ops[2 ]] = [15 , 16 ]
70
+ broken_tests= Dict (alg=> Int[] for alg in alg_ops)
71
+ broken_tests[alg_ops[1 ]]= [3 , 15 , 16 , 21 ]
72
+ broken_tests[alg_ops[2 ]]= [15 , 16 ]
73
73
74
74
test_on_library (problems, dicts, alg_ops, broken_tests)
75
75
end
76
76
77
77
@testitem " 23 Test Problems: SimpleDFSane" setup= [RobustnessTesting] tags= [:core ] begin
78
- alg_ops = (SimpleDFSane (),)
78
+ alg_ops= (SimpleDFSane (),)
79
79
80
- broken_tests = Dict (alg => Int[] for alg in alg_ops)
80
+ broken_tests= Dict (alg=> Int[] for alg in alg_ops)
81
81
if Sys. isapple ()
82
- broken_tests[alg_ops[1 ]] = [1 , 2 , 3 , 5 , 6 , 21 ]
82
+ broken_tests[alg_ops[1 ]]= [1 , 2 , 3 , 5 , 6 , 21 ]
83
83
else
84
- broken_tests[alg_ops[1 ]] = [1 , 2 , 3 , 4 , 5 , 6 , 11 , 21 ]
84
+ broken_tests[alg_ops[1 ]]= [1 , 2 , 3 , 4 , 5 , 6 , 11 , 21 ]
85
85
end
86
86
87
87
test_on_library (problems, dicts, alg_ops, broken_tests)
88
88
end
89
89
90
90
@testitem " 23 Test Problems: SimpleBroyden" setup= [RobustnessTesting] tags= [:core ] begin
91
- alg_ops = (SimpleBroyden (),)
91
+ alg_ops= (SimpleBroyden (),)
92
92
93
- broken_tests = Dict (alg => Int[] for alg in alg_ops)
94
- broken_tests[alg_ops[1 ]] = [1 , 5 , 11 ]
93
+ broken_tests= Dict (alg=> Int[] for alg in alg_ops)
94
+ broken_tests[alg_ops[1 ]]= [1 , 5 , 11 ]
95
95
96
96
test_on_library (problems, dicts, alg_ops, broken_tests)
97
97
end
98
98
99
99
@testitem " 23 Test Problems: SimpleKlement" setup= [RobustnessTesting] tags= [:core ] begin
100
- alg_ops = (SimpleKlement (),)
100
+ alg_ops= (SimpleKlement (),)
101
101
102
- broken_tests = Dict (alg => Int[] for alg in alg_ops)
103
- broken_tests[alg_ops[1 ]] = [1 , 2 , 4 , 5 , 11 , 12 , 22 ]
102
+ broken_tests= Dict (alg=> Int[] for alg in alg_ops)
103
+ broken_tests[alg_ops[1 ]]= [1 , 2 , 4 , 5 , 11 , 12 , 22 ]
104
104
105
105
test_on_library (problems, dicts, alg_ops, broken_tests)
106
106
end
0 commit comments