Companion code to the paper Learning structured approximations of operations research problems.
Detailed documentation here.
Code was tested only on Ubuntu 22.04 with Julia 1.8.2.
Open a julia
repl in the package folder, and run the following code
using Pkg
Pkg.activate(".")
Pkg.test()
Open a julia
repl in the package folder, and run the following code
using Pkg
Pkg.activate(".")
Pkg.activate("./docs")
Pkg.rm("MaximumWeightTwoStageSpanningTree") # Manifest.toml is not pushed, it would take the registry version, which does not exist
Pkg.develop(path=".") # Takes instead the local version
Pkg.instantiate()
include("docs/make.jl")
You can then open with a web browser the file docs/build/index.html
Open a julia
repl in the package folder, and run the following code
using Pkg
Pkg.activate(".")
Pkg.activate("./scripts")
Pkg.rm("MaximumWeightTwoStageSpanningTree") # Manifest.toml is not pushed, it would take the registry version, which does not exist
Pkg.develop(path=".") # Takes instead the local version
Pkg.instantiate()
include("scripts/run_paper_experiments.jl")