Skip to content

Commit

Permalink
Add Halley to 23 problems tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tansongchen committed May 2, 2024
1 parent acc3208 commit d815785
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 16 deletions.
9 changes: 9 additions & 0 deletions test/core/23_test_problems_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,15 @@ end
test_on_library(problems, dicts, alg_ops, broken_tests)
end

@testitem "Halley" setup=[RobustnessTesting] begin
alg_ops = (Halley(),)

broken_tests = Dict(alg => Int[] for alg in alg_ops)
broken_tests[alg_ops[1]] = [1, 5, 8, 15, 16]

test_on_library(problems, dicts, alg_ops, broken_tests)
end

@testitem "TrustRegion" setup=[RobustnessTesting] begin
alg_ops = (TrustRegion(; radius_update_scheme = RadiusUpdateSchemes.Simple),
TrustRegion(; radius_update_scheme = RadiusUpdateSchemes.Fan),
Expand Down
16 changes: 0 additions & 16 deletions test/misc/halley_tests.jl

This file was deleted.

0 comments on commit d815785

Please sign in to comment.