Make cuts component compatible with JuMP

This commit is contained in:
2024-02-01 12:01:55 -06:00
parent 1ea432fb57
commit d69c4bbfa7
16 changed files with 252 additions and 38 deletions

View File

@@ -16,10 +16,12 @@ FIXTURES = "$BASEDIR/../fixtures"
include("fixtures.jl")
include("BB/test_bb.jl")
include("components/test_cuts.jl")
include("Cuts/BlackBox/test_cplex.jl")
include("problems/test_setcover.jl")
include("test_io.jl")
include("problems/test_stab.jl")
include("solvers/test_jump.jl")
include("test_io.jl")
include("test_usage.jl")
function runtests()
@@ -27,17 +29,18 @@ function runtests()
@testset "BB" begin
test_bb()
end
# test_cuts_blackbox_cplex()
test_io()
test_problems_setcover()
test_problems_stab()
test_solvers_jump()
test_usage()
test_cuts()
end
end
function format()
JuliaFormatter.format(BASEDIR, verbose = true)
JuliaFormatter.format("$BASEDIR/../../src", verbose = true)
JuliaFormatter.format(BASEDIR, verbose=true)
JuliaFormatter.format("$BASEDIR/../../src", verbose=true)
return
end