Remove diagnostic code from quick-cluster.c
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 21 Nov 2015 08:53:55 +0000 (09:53 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 21 Nov 2015 08:53:55 +0000 (09:53 +0100)
src/language/stats/quick-cluster.c

index 0a2b75de252b7e9e7f5405c923a2700fbb15d05b..f4c64b09977fff52caa8f83e9f172ad75dff14a5 100644 (file)
@@ -190,20 +190,6 @@ matrix_mindist (const gsl_matrix *m, int *mn, int *mm)
 }
 
 
-static void
-dump_matrix (const gsl_matrix *m)
-{
-  size_t i, j;
-
-  for (i = 0 ; i < m->size1; ++i)
-    {
-      for (j = 0 ; j < m->size2; ++j)
-       printf ("%02f ", gsl_matrix_get (m, i, j));
-      printf ("\n");
-    }
-}
-
-
 /* Return the distance of C from the group whose index is WHICH */
 static double
 dist_from_case (const struct Kmeans *kmeans, const struct ccase *c, const struct qc *qc, int which)