Coverage Report - net.sourceforge.combean.interfaces.mathprog.linalg.SparseVector
 
Classes in this File Line Coverage Branch Coverage Complexity
SparseVector
N/A
N/A
0
 
 1  
 /*
 2  
  * Created on 11.04.2008
 3  
  *
 4  
  */
 5  
 package net.sourceforge.combean.interfaces.mathprog.linalg;
 6  
 
 7  
 import net.sourceforge.combean.interfaces.mathprog.lp.model.NoLabel;
 8  
 
 9  
 public interface SparseVector extends SparseVec<NoLabel> {
 10  
     
 11  
     /**
 12  
      * Get the dimension of the vector.
 13  
      * 
 14  
      * @return the dimension of the vector.
 15  
      */
 16  
     public int getDimension();
 17  
 }