| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MIPSolver |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Created on 12.07.2008 | |
| 3 | * | |
| 4 | */ | |
| 5 | package net.sourceforge.combean.interfaces.mathprog.lp; | |
| 6 | ||
| 7 | public interface MIPSolver extends LPSolver { | |
| 8 | ||
| 9 | /** | |
| 10 | * Add an integer variable to the LP problem. The corresponding column in the | |
| 11 | * constraint matrix is filled with zero values. | |
| 12 | * | |
| 13 | * @param variable the variable to be added. | |
| 14 | * @return the number of the corresponding column of the LP | |
| 15 | * (counting from zero) | |
| 16 | */ | |
| 17 | public int addIntVariable(LPVariable variable); | |
| 18 | ||
| 19 | public void solveMIP(); | |
| 20 | } |