| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MIPModelSolver |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Created on 12.07.2008 | |
| 3 | * | |
| 4 | */ | |
| 5 | package net.sourceforge.combean.interfaces.mathprog.lp.model; | |
| 6 | ||
| 7 | import net.sourceforge.combean.interfaces.mathprog.lp.MIPSolver; | |
| 8 | ||
| 9 | public interface MIPModelSolver extends LPModelSolver { | |
| 10 | ||
| 11 | /** | |
| 12 | * Set the solver to which the model shall be connected. | |
| 13 | * | |
| 14 | * @param mipSolver | |
| 15 | */ | |
| 16 | public void setLPSolver(MIPSolver mipSolver); | |
| 17 | ||
| 18 | /** | |
| 19 | * Get the LP solver. | |
| 20 | * | |
| 21 | * @return the LP solver. | |
| 22 | */ | |
| 23 | public MIPSolver getLPSolver(); | |
| 24 | ||
| 25 | /** | |
| 26 | * Run the LP solver. | |
| 27 | */ | |
| 28 | public void solveMIP(); | |
| 29 | } |