BlockDecomposition.jl icon indicating copy to clipboard operation
BlockDecomposition.jl copied to clipboard

Extension of JuMP to model decomposable mathematical programs (using Benders or Dantzig-Wolfe decomposition paradigm)

Results 4 BlockDecomposition.jl issues
Sort by recently updated
recently updated
newest added

The goal is to apply a Dantzig-Wolfe decomposition to a model given as a .mps file where the decomposition structure is given in a .dec file. The motivation is that...

I didn't test locally, but https://github.com/jump-dev/MathOptInterface.jl/actions/runs/18511698884/job/52871300230 tells me that this package doesn't load on Julia v1.12.

``` gurobi_optimizer = optimizer_with_attributes(Gurobi.Optimizer, "Env" => env) coluna = optimizer_with_attributes( Coluna.Optimizer, "params" => Coluna.Params( solver = Coluna.Algorithm.TreeSearchAlgorithm() # default branch-cut-and-price ), "default_optimizer" => () -> Gurobi.Optimizer(env) # "default_optimizer" => HiGHS.Optimizer...