]> git.donarmstrong.com Git - mothur.git/blobdiff - sparsematrix.hpp
Thallinger changes to cluster command.
[mothur.git] / sparsematrix.hpp
index d65771e75a4d8a2785535fd2ae9cd493f2c1aa1f..8eeda7ff2f9899748bde34f92fac5a25dcfd3964 100644 (file)
@@ -20,21 +20,23 @@ class ListVector;
 
 /***********************************************************************/
 
+typedef list<PCell>::iterator MatData;
+
 class SparseMatrix {
        
 public:
        SparseMatrix();
        int getNNodes();
        void print();                                   //Print the contents of the matrix
-       void print(ListVector*);                                        //Print the contents of the matrix
+       void print(ListVector*);                //Print the contents of the matrix
        PCell* getSmallestCell();               //Return the cell with the smallest distance
        float getSmallDist();
        
-       void rmCell(list<PCell>::iterator);
+       MatData rmCell(MatData);
        void addCell(PCell);
        void clear();
-       list<PCell>::iterator begin();
-       list<PCell>::iterator end();
+       MatData begin();
+       MatData end();
 
 private:
        PCell* smallCell;                               //The cell with the smallest distance