|
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 | + if Sys.isapple() |
| 58 | + broken_tests[alg_ops[1]] = [1, 5, 11, 15, 16, 18] |
| 59 | + else |
| 60 | + broken_tests[alg_ops[1]] = [1, 5, 15, 16, 18] |
| 61 | + end |
| 62 | + |
| 63 | + test_on_library(problems, dicts, alg_ops, broken_tests) |
| 64 | +end |
| 65 | + |
| 66 | +@testitem "23 Test Problems: SimpleTrustRegion" setup=[RobustnessTesting] tags=[:core] begin |
54 | 67 | alg_ops = (SimpleTrustRegion(), SimpleTrustRegion(; nlsolve_update_rule = Val(true)))
|
55 | 68 |
|
56 | 69 | broken_tests = Dict(alg => Int[] for alg in alg_ops)
|
|
60 | 73 | test_on_library(problems, dicts, alg_ops, broken_tests)
|
61 | 74 | end
|
62 | 75 |
|
63 |
| -@testitem "SimpleDFSane" setup=[RobustnessTesting] tags=[:core] begin |
| 76 | +@testitem "23 Test Problems: SimpleDFSane" setup=[RobustnessTesting] tags=[:core] begin |
64 | 77 | alg_ops = (SimpleDFSane(),)
|
65 | 78 |
|
66 | 79 | broken_tests = Dict(alg => Int[] for alg in alg_ops)
|
|
73 | 86 | test_on_library(problems, dicts, alg_ops, broken_tests)
|
74 | 87 | end
|
75 | 88 |
|
76 |
| -@testitem "SimpleBroyden" retries=5 setup=[RobustnessTesting] tags=[:core] begin |
| 89 | +@testitem "23 Test Problems: SimpleBroyden" retries=5 setup=[RobustnessTesting] tags=[:core] begin |
77 | 90 | alg_ops = (SimpleBroyden(),)
|
78 | 91 |
|
79 | 92 | broken_tests = Dict(alg => Int[] for alg in alg_ops)
|
|
82 | 95 | test_on_library(problems, dicts, alg_ops, broken_tests)
|
83 | 96 | end
|
84 | 97 |
|
85 |
| -@testitem "SimpleKlement" setup=[RobustnessTesting] tags=[:core] begin |
| 98 | +@testitem "23 Test Problems: SimpleKlement" setup=[RobustnessTesting] tags=[:core] begin |
86 | 99 | alg_ops = (SimpleKlement(),)
|
87 | 100 |
|
88 | 101 | broken_tests = Dict(alg => Int[] for alg in alg_ops)
|
|
0 commit comments