Skip to content
Opt Dir

Glossary · method

Cutting Plane Method

Method that iteratively tightens the LP relaxation of an integer program with valid inequalities that preserve all integer-feasible solutions while cutting off the fractional LP optimum; introduced by Gomory (1958) for integer programming.

Kesme Düzlemi YöntemiGomory CutValid InequalitiesBranch-and-Cut
The cutting plane method is a classical technique for integer programming (IP) and mixed-integer programming (MIP) that iteratively tightens the LP relaxation with **valid inequalities** that cut off the fractional LP optimum without excluding any integer-feasible solution. The method was introduced by Gomory (1958) for integer programming (Gomory fractional cut) and Gomory (1960) for the mixed-integer variant (Gomory mixed-integer cut). The algorithm proceeds as follows: solve the LP relaxation; if the solution is integer the optimum is found; otherwise generate a cut that excludes the fractional point but preserves all integer-feasible points, add it to the model, and re-solve the LP; iterate until integrality. Cut families are problem-specific: knapsack cover cuts, flow cover cuts, clique cuts (graph coloring/IP), mixed-integer rounding (MIR), Chvátal-Gomory cuts, lift-and-project cuts (Balas, Ceria and Cornuéjols 1993), and subtour and comb inequalities for TSP (Padberg-Rinaldi 1991). Because pure Gomory cuts converge slowly in practice, modern implementations combine cuts with branch and bound (branch-and-cut, Padberg and Rinaldi 1991) — the foundational architecture of modern MIP solvers. Cut generation is automatic and largely invisible to the user. Nemhauser and Wolsey (1988), Wolsey (1998), and Cornuéjols (2008) are reference readings.
Örnek

A mid-size home-textile manufacturer in Kayseri (32M USD annual revenue) with 18 production lines and 240 SKUs in its weekly scheduling problem gets 4.6% gap in 18 minutes from pure B&B; the same instance under automatic branch-and-cut closes to 0.9% gap in 110 seconds. The cut tree produces 6,300 cover cuts, 1,840 MIR cuts, and 420 flow cover cuts. Annual setup and overtime cost falls by 1.4M TRY.

Esc Close