-
Notifications
You must be signed in to change notification settings - Fork 43
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
Full Branch and Price instead of restricted master heuristic #313
Comments
It will work with the following configuration : "params" => Coluna.Params(
solver = Algorithm.TreeSearchAlgorithm(
conqueralg = Algorithm.ColGenConquer(
mastipheur = Algorithm.ColGenConquer(run_mastipheur = false)
)
)
) |
@guimarqu I'm getting the following error with your configuration : LoadError: MethodError: Cannot |
Sorry, it's "params" => Coluna.Params(
solver = Algorithm.TreeSearchAlgorithm(
conqueralg = Algorithm.ColGenConquer(run_mastipheur = false)
)
) |
Hello Guillaume, thank you for the answer. |
I think we misunderstood, we want the master IP heuristique to run and it doesn't or if it does there is no log of it. Below the log i'm getting. Maybe the IP heuristique runs but doesn't found any integer solution ? <it=587> <et=123.45> <mst= 0.01> <sp= 0.26> <cols= 1> <mlp= 1929.6667> <DB= 1929.6527> <PB=Inf> **** BaB tree node N° 2, parent N° 1, depth 1, 2 open nodes [ Info: Setting up node 3 before apply |
It looks like the heuristic found a solution because your primal bound is |
Ooo right sorry so it s just the message which doesn't print , Thanks |
Sorry guys, I misunderstood the subject. The parameters I gave you was for running the branch-and-price without the restricted master heuristic. I think the LP restricted master found an integer solution. PR #320 prints logs when restricted master heuristic runs & displays the result found. |
Thanks for the improvement, it works well for me |
Is there any new way to enforce full BnP strategy? The code you stated above is no longer working, due to changes in packages throughout many years. With the code, I meant
|
Hello,
With the same code as for #312, the restricted master IP heuristic is not executed. Coluna launches instead a full branch and price procedure (which is too long for most of the instances).
The parameters for Coluna are the following (maybe the problem can be fixed in just changing this in my code):
"params" => Coluna.Params(solver = Algorithm.TreeSearchAlgorithm(
conqueralg = Algorithm.ColGenConquer(mastipheur =
Algorithm.SolveIpForm(time_limit = 30))))
I used the model provided with the demos on GitHub, on the instance gapC-5-100. Model and dataset can be found at
https://covid19.framadrop.org/r/6vFxjdD226#Hqayehtwz0hbT0vTiCDmkh9vyLyWC6f1ouBURYgRJBM=
Environment:
Julia => 1.3.1
"Coluna" => v"0.3.0"
"GLPK" => v"0.12.1"
"BlockDecomposition" => v"1.2.0"
"MathOptInterface" => v"0.9.13"
"JuMP" => v"0.21.2"
OS: MacOs
Best regards,
Guilhem
The text was updated successfully, but these errors were encountered: