Coverage Report - net.sourceforge.combean.mathprog.lp.model.MIPModelSolverWithSequentialLoading
 
Classes in this File Line Coverage Branch Coverage Complexity
MIPModelSolverWithSequentialLoading
0%
0/9
N/A
1
 
 1  
 /*
 2  
  * Created on 12.07.2008
 3  
  *
 4  
  */
 5  
 package net.sourceforge.combean.mathprog.lp.model;
 6  
 
 7  
 import net.sourceforge.combean.interfaces.mathprog.lp.MIPSolver;
 8  
 import net.sourceforge.combean.interfaces.mathprog.lp.model.MIPModelSolver;
 9  
 
 10  0
 public class MIPModelSolverWithSequentialLoading extends
 11  
         LPModelSolverWithSequentialLoading implements MIPModelSolver {
 12  
     
 13  
     private MIPSolver mipSolver;
 14  
 
 15  
     public MIPModelSolverWithSequentialLoading() {
 16  0
         super();
 17  0
     }
 18  
 
 19  
     public MIPSolver getLPSolver() {
 20  0
         return this.mipSolver;
 21  
     }
 22  
 
 23  
     public void setLPSolver(MIPSolver mipSolver) {
 24  0
         super.setLPSolver(mipSolver);
 25  0
         this.mipSolver = mipSolver;
 26  0
     }
 27  
 
 28  
     public void solveMIP() {
 29  0
         this.mipSolver.solveMIP();
 30  0
     }
 31  
 
 32  
 }