Skip to content

Commit 73591c0

Browse files
committed
Add Halley to 23 problems tests
1 parent ff2950d commit 73591c0

File tree

2 files changed

+9
-16
lines changed

2 files changed

+9
-16
lines changed

test/core/23_test_problems_tests.jl

+9
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,15 @@ end
5959
test_on_library(problems, dicts, alg_ops, broken_tests)
6060
end
6161

62+
@testitem "Halley" setup=[RobustnessTesting] begin
63+
alg_ops = (Halley(),)
64+
65+
broken_tests = Dict(alg => Int[] for alg in alg_ops)
66+
broken_tests[alg_ops[1]] = [1, 5, 8, 15, 16]
67+
68+
test_on_library(problems, dicts, alg_ops, broken_tests)
69+
end
70+
6271
@testitem "TrustRegion" setup=[RobustnessTesting] tags=[:core] begin
6372
alg_ops = (TrustRegion(; radius_update_scheme = RadiusUpdateSchemes.Simple),
6473
TrustRegion(; radius_update_scheme = RadiusUpdateSchemes.Fan),

test/misc/halley_tests.jl

-16
This file was deleted.

0 commit comments

Comments
 (0)