|
41 | 41 | export problems, dicts, test_on_library
|
42 | 42 | end
|
43 | 43 |
|
44 |
| -@testitem "SimpleNewtonRaphson" setup=[RobustnessTesting] tags=[:core] begin |
| 44 | +@testitem "23 Test Problems: SimpleNewtonRaphson" setup=[RobustnessTesting] tags=[:core] begin |
45 | 45 | alg_ops = (SimpleNewtonRaphson(),)
|
46 | 46 |
|
47 | 47 | broken_tests = Dict(alg => Int[] for alg in alg_ops)
|
|
50 | 50 | test_on_library(problems, dicts, alg_ops, broken_tests)
|
51 | 51 | end
|
52 | 52 |
|
53 |
| -@testitem "SimpleTrustRegion" setup=[RobustnessTesting] tags=[:core] begin |
| 53 | +@testitem "23 Test Problems: SimpleHalley" setup=[RobustnessTesting] tags=[:core] begin |
| 54 | + alg_ops = (SimpleHalley(),) |
| 55 | + |
| 56 | + broken_tests = Dict(alg => Int[] for alg in alg_ops) |
| 57 | + broken_tests[alg_ops[1]] = [1, 5, 15, 16, 18] |
| 58 | + |
| 59 | + test_on_library(problems, dicts, alg_ops, broken_tests) |
| 60 | +end |
| 61 | + |
| 62 | +@testitem "23 Test Problems: SimpleTrustRegion" setup=[RobustnessTesting] tags=[:core] begin |
54 | 63 | alg_ops = (SimpleTrustRegion(), SimpleTrustRegion(; nlsolve_update_rule = Val(true)))
|
55 | 64 |
|
56 | 65 | broken_tests = Dict(alg => Int[] for alg in alg_ops)
|
|
60 | 69 | test_on_library(problems, dicts, alg_ops, broken_tests)
|
61 | 70 | end
|
62 | 71 |
|
63 |
| -@testitem "SimpleDFSane" setup=[RobustnessTesting] tags=[:core] begin |
| 72 | +@testitem "23 Test Problems: SimpleDFSane" setup=[RobustnessTesting] tags=[:core] begin |
64 | 73 | alg_ops = (SimpleDFSane(),)
|
65 | 74 |
|
66 | 75 | broken_tests = Dict(alg => Int[] for alg in alg_ops)
|
|
73 | 82 | test_on_library(problems, dicts, alg_ops, broken_tests)
|
74 | 83 | end
|
75 | 84 |
|
76 |
| -@testitem "SimpleBroyden" retries=5 setup=[RobustnessTesting] tags=[:core] begin |
| 85 | +@testitem "23 Test Problems: SimpleBroyden" retries=5 setup=[RobustnessTesting] tags=[:core] begin |
77 | 86 | alg_ops = (SimpleBroyden(),)
|
78 | 87 |
|
79 | 88 | broken_tests = Dict(alg => Int[] for alg in alg_ops)
|
|
82 | 91 | test_on_library(problems, dicts, alg_ops, broken_tests)
|
83 | 92 | end
|
84 | 93 |
|
85 |
| -@testitem "SimpleKlement" setup=[RobustnessTesting] tags=[:core] begin |
| 94 | +@testitem "23 Test Problems: SimpleKlement" setup=[RobustnessTesting] tags=[:core] begin |
86 | 95 | alg_ops = (SimpleKlement(),)
|
87 | 96 |
|
88 | 97 | broken_tests = Dict(alg => Int[] for alg in alg_ops)
|
|
0 commit comments