Tobias Achterberg
unread,Mar 31, 2016, 8:17:17 PM3/31/16Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to gur...@googlegroups.com
Tom and Diman,
no, Gurobi is not using a primal-dual approximation algorithm. In order to solve
MILPs (or ILPs) we use an LP-based branch-and-cut algorithm.
The fact that in MILPs many continuous variables will have a solution value that
is equal to one of their bounds (often zero for many applications) is directly
related to the simplex algorithm that we use to solve the LP relaxations. The
simplex algorithm (as opposed to an interior point algorithm) always finds a
vertex solution as optimal solution to an LP relaxation (if there is one). This
means, that the number of variables that can be away from their bounds is
limited by the number of constraints in the model (because the basis has size m
x m, with m being the number of constraints, and only basic variables can be
away from their bounds). Moreover, it is very typical that the simplex algorithm
selects an optimal vertex where many slack variables are basic, which means that
much less than m structural variables will be basic. Hence, in most cases a
significant fraction of the variables will be non-basic, which means that they
are either equal to their lower or their upper bound.
Best regards,
Tobias