This repository provides a Julia module for constructing and optimizing the dual-LP
Vicari, Robert. "Simplex based Steiner tree instances yield large integrality gaps for the bidirected cut relaxation." arXiv preprint arXiv:2002.07912 (2020).
An instance of compute_simplex_gap(d::Int, s::Int, l::Int = d; verbose::Bool = true)
computes the ratio between the optimum value of
import Pkg
Pkg.add(url = "https://github.com/roberthree/BCRSimplexGaps.jl.git")
import BCRSimplexGaps
d, s, l = (23, 22, 3)
result = BCRSimplexGaps.compute_simplex_gap(d, s, l; verbose = true)
display(result)