- Branch and cut
Branch and cut (sometimes written as "branch-and-cut") is a method of
combinatorial optimization for solvinginteger linear program s, that is,linear programming problems where some or all the unknowns are restricted tointeger values. The method is a hybrid ofbranch and bound andcutting plane methods.The method solves the linear program without the integer constraint using the regular
simplex algorithm . When an optimal solution is obtained, and this solution has a non-integer value for a variable that is supposed to be integer, a cutting plane algorithm is used to find further linear constraints which are satisfied by all feasible integer points but violated by the current fractional solution. If such an inequality is found, it is added to the linear program, such that resolving it will yield a different solution which is hopefully "less fractional". This process is repeated until either an integer solution is found (which is then known to be optimal) or until no morecutting plane s are found.At this point, the
branch and bound part of the algorithm is started. The problem is split into two versions, one with the additional constraint that the variable is greater than or equal to the next integer greater than the intermediate result, and one where this variable is less than or equal to the next lesser integer. In this way new variables are introduced in the basis according to the number of basic variables that are non-integers in the intermediate solution but which are integers according to the original constraints. The new linear programs are then solved using the simplex method and the process repeats until a solution satisfying all the integer constraints is found. During the branch and bound process, further cutting planes can be separated, which may be either "global cuts", i.e., valid for all feasible integer solutions, or "local cuts", meaning that they are satisfied by all solutions fulfilling the side constraints from the currently considered branch and bound subtree.External links
* [http://www.cs.sandia.gov/opt/survey/mip.html Mixed Integer Programming]
* [http://branchandcut.org/faq.htm BranchAndCut.org FAQ]
* [http://www.informatik.uni-koeln.de/abacus/ ABACUS - A Branch-And-CUt System] - open source software
* [https://projects.coin-or.org/Cbc/ COIN-OR Cbc] - open source software
Wikimedia Foundation. 2010.