]> git.donarmstrong.com Git - mothur.git/blobdiff - clusterclassic.h
added sparseDistanceMatrix class. Modified cluster commands to use the new sparse...
[mothur.git] / clusterclassic.h
index 932c806ec42ac52a4a90670239d0c4a6a27b1efb..a650bbf8de79147c3bd48bbcf1f63fdf22c6f574 100644 (file)
@@ -41,13 +41,13 @@ private:
        struct colDist {
                int col;
                int row;
-               double dist;
+               float dist;
                colDist(int r, int c, double d) : row(r), col(c), dist(d) {}
        };
        
        RAbundVector* rabund;
        ListVector* list;
-       vector< vector<double> > dMatrix;       
+       vector< vector<float> > dMatrix;        
        //vector<colDist> rowSmallDists;
        
        int smallRow;