Closed wdscoelho closed 3 years ago
Hi,
I suggest you to use only TreeSearchAlgorithm
as top solver. The conquer method is ColCutGenConquer
and the latter will call ColumnGeneration
. You can fix the maxnumnodes
to 1 to solve only the root node.
I leave the issue open because we need to decide if it should work or if we should have an error message.
Thanks for the report.
OK. Thank you!
The top solver should be an AbstractOptimizationAlgorithm
(ColCutGenConquer
is not). I think we can easily verify that in the code and give an error if needed.
If you only want to run column generation, ColumnGeneration
can be used as the top solver.
Hello,
I'm trying to solve my model with Coluna, but I'm experiencing some problems.
First, how to use Coluna.Algorithm.ColCutGenConquer ? If I use the following code:
coluna = optimizer_with_attributes(Coluna.Optimizer, "params" => Coluna.Params(solver = Coluna.Algorithm.ColCutGenConquer(),"default_optimizer" => CPLEX.Optimizer)
on the example from https://atoptima.github.io/Coluna.jl/latest/user/start/ I get the following error:
I get the same error with GLPK.Optimizer and/or applying on my models.
Could you please help me with this issue?
I'm using: Julia 1.2.0 JuMP 0.21.1 Coluna 0.3.5 GLPK 0.13.0 CPLEX 0.7.3 ILO CPLEX 12.10
Thank you in advance. Wesley