]> git.donarmstrong.com Git - mothur.git/blobdiff - clusterclassic.cpp
removed unused copy constructors and comments within comments that where causing...
[mothur.git] / clusterclassic.cpp
index 0048dc6053d0bab06130eeaa6ab5d10b576aeb48..1ce81c4f2affda469164709f862bb36ff023c163 100644 (file)
@@ -434,11 +434,11 @@ void ClusterClassic::print() {
 try {
                //update location of seqs in smallRow since they move to smallCol now
                for (int i = 0; i < dMatrix.size(); i++) {
-                       cout << "row = " << i << '\t';
+                       m->mothurOut("row = " + toString(i) + "\t");
                        for (int j = 0; j < dMatrix[i].size(); j++) {
-                               cout << dMatrix[i][j] << '\t';
+                               m->mothurOut(toString(dMatrix[i][j]) + "\t");
                        }
-                       cout << endl;
+                       m->mothurOutEndLine();
                }
        }
        catch(exception& e) {