-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Q&A: why default algorithms do not beat commercial solver ? (#592)
* Q&A Coluna does not beat commercial solver * Update docs/src/qa.md * Update docs/src/qa.md * Update docs/src/qa.md
- Loading branch information
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Question & Answer | ||
|
||
#### Default algorithms of Coluna do not beat the commercial solver I usually use. Is it normal ? | ||
|
||
Yes it is. | ||
|
||
Solvers such as Gurobi, Cplex ... are handy powerful black-box tools. | ||
They can run a very efficient presolve step to simplify the formulation, | ||
automatically apply lots of valid inequalities (such as MIR or cover cuts), | ||
choose good branching strategies, or also run heuristics. | ||
However, when your formulation reaches a certain size, | ||
commercial solvers may run for hours without finding anything. | ||
This is the point where you may want to decompose your formulation. | ||
|
||
Coluna is a framework not a solver. | ||
It provides algorithms to try column generation on your problem very easily. | ||
Then, you can devise your own branch-cut-and-price algorithm on top of Coluna's algorithms. | ||
to scale up and hopefully beats the commercial solver. | ||
|
||
To start customizing Coluna for your own problem, | ||
you can [separate valid inequalities](../user/callbacks/#Separation-callbacks) | ||
or [call your own algorithm that optimizes subproblems](../user/callbacks/#Pricing-callback). |