Interface SimplexCuttingPlaneMinimizer.CutterFactory
-
- Enclosing class:
- SimplexCuttingPlaneMinimizer
public static interface SimplexCuttingPlaneMinimizer.CutterFactory
This factory constructs a newCutter
for each MILP problem.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description 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 SimplexCuttingPlaneMinimizer.CutterFactory.Cutter
getCutter(ILPProblem problem)
Construct a newCutter
for a MILP problem.
-
-
-
Method Detail
-
getCutter
SimplexCuttingPlaneMinimizer.CutterFactory.Cutter getCutter(ILPProblem problem)
Construct a newCutter
for a MILP problem.- Parameters:
problem
- a MILP problem- Returns:
- a
Cutter
-
-