File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,14 @@ asymmetric_params = vcat(
1515algo = GreedyColoringAlgorithm ()
1616optalgo = OptimalColoringAlgorithm (() -> MiniZinc. Optimizer {Float64} (" highs" ); silent= false )
1717
18+ # TODO : reactivate tests once https://github.com/jump-dev/MiniZinc.jl/issues/103 is fixed
19+
1820@testset " Column coloring" begin
1921 problem = ColoringProblem (; structure= :nonsymmetric , partition= :column )
2022 for (m, n, p) in asymmetric_params
2123 A = sprand (rng, m, n, p)
2224 result = coloring (A, problem, algo)
23- optresult = coloring (A, problem, optalgo)
24- @test ncolors (result) >= ncolors (optresult)
25+ @test_skip ncolors (result) >= ncolors (coloring (A, problem, optalgo))
2526 end
2627end
2728
3031 for (m, n, p) in asymmetric_params
3132 A = sprand (rng, m, n, p)
3233 result = coloring (A, problem, algo)
33- optresult = coloring (A, problem, optalgo)
34- @test ncolors (result) >= ncolors (optresult)
34+ @test_skip ncolors (result) >= ncolors (coloring (A, problem, optalgo))
3535 end
3636end
3737
You can’t perform that action at this time.
0 commit comments