Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bin Packing : Coluna does not find a solution when CPLEX subsolver #382

Closed
guimarqu opened this issue Jul 10, 2020 · 1 comment
Closed
Labels
bug Something isn't working needs investigation The issue needs investigation because we don't know if it's a bug and if it comes from Coluna.

Comments

@guimarqu
Copy link
Contributor

guimarqu commented Jul 10, 2020

Describe the bug

  1. When using CPLEX, for some cases (for example, PM-u020-01.txt). Coluna won't find a solution.

To Reproduce
Bin packing demo PM-u020-01.txt

Expected behavior
Find the optimal solution


Thank you @rafaelmartinelli for reporting the issue.
Code :

using JuMP, BlockDecomposition, Coluna, GLPK, ColunaDemos
using DelimitedFiles

coluna = optimizer_with_attributes(
    Coluna.Optimizer,
    "params" => Coluna.Params(
        solver = Coluna.Algorithm.TreeSearchAlgorithm()
    ),
    "default_optimizer" => GLPK.Optimizer
)

d = ColunaDemos.BinPacking.data("instances/PM-u020-01.txt")
bpp, x, y, dec = BinPacking.model(d, coluna)

optimize!(bpp)
@guimarqu guimarqu added bug Something isn't working needs investigation The issue needs investigation because we don't know if it's a bug and if it comes from Coluna. labels Jul 10, 2020
@guimarqu guimarqu added this to the v0.4 milestone Jul 10, 2020
@guimarqu
Copy link
Contributor Author

We can't reproduce this issue (we don't have cplex).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working needs investigation The issue needs investigation because we don't know if it's a bug and if it comes from Coluna.
Projects
None yet
Development

No branches or pull requests

1 participant