]> git.donarmstrong.com Git - mothur.git/blobdiff - sparsedistancematrix.h
fixes while testing 1.33.0
[mothur.git] / sparsedistancematrix.h
index f18fdd7db9a0351ba59aa38adabf3365fe0221c2..6c6bbe5a03d2c378c146539b3c20d5f3fd8755c3 100644 (file)
@@ -46,17 +46,21 @@ public:
     void resize(ull n) { seqVec.resize(n);  }
     void clear();
        void addCell(ull, PDistCell);
+    int addCellSorted(ull, PDistCell);
     vector<vector<PDistCell> > seqVec;
     
+    
 private:
        PDistCell smallCell;                            //The cell with the smallest distance
        int numNodes;
     
     bool sorted;
     int sortSeqVec();
+    int sortSeqVec(int);
        float smallDist, aboveCutoff;
     
        MothurOut* m;
+
 };
 
 /***********************************************************************/