Interface SimplexCuttingPlaneMinimizer.CutterFactory.Cutter
-
- All Known Implementing Classes:
GomoryMixedCutMinimizer.MyCutter
,GomoryPureCutMinimizer.MyCutter
- Enclosing interface:
- SimplexCuttingPlaneMinimizer.CutterFactory
public static interface SimplexCuttingPlaneMinimizer.CutterFactory.Cutter
ACutter
defines how to cut a simplex table, i.e., how to relax a linear program so that the current non-integer solution is no longer feasible to the relaxation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SimplexTable
cut(SimplexTable table)
Cut a simplex table.
-
-
-
Method Detail
-
cut
SimplexTable cut(SimplexTable table)
Cut a simplex table. For efficiency reason, the inputtable
is changed after this operation.- Parameters:
table
- a simple table- Returns:
- a cut simplex table
-
-