From d93c39b1847d46c32532c745fdf5719650b15f0e Mon Sep 17 00:00:00 2001 From: Axel Larsson <65452706+axla-io@users.noreply.github.com> Date: Tue, 17 Oct 2023 10:00:09 -0400 Subject: [PATCH] Added DFSane to 23 problems --- test/23_test_problems.jl | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/23_test_problems.jl b/test/23_test_problems.jl index d0ece7bb6..5e0df8352 100644 --- a/test/23_test_problems.jl +++ b/test/23_test_problems.jl @@ -61,3 +61,13 @@ end test_on_library(problems, dicts, alg_ops, broken_tests) end + +# DFSane +@testset "DFSane test problem library" begin + alg_ops = (DFSane(),) + + broken_tests = Dict(alg => Int[] for alg in alg_ops) + broken_tests[alg_ops[1]] = [1, 2, 3, 5, 6, 8, 12, 13, 14, 21] + + test_on_library(problems, dicts, alg_ops, broken_tests) +end