aboutsummaryrefslogtreecommitdiff
path: root/src/itrans-stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/itrans-stat.c')
-rw-r--r--src/itrans-stat.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/itrans-stat.c b/src/itrans-stat.c
index ee41817..0e03ead 100644
--- a/src/itrans-stat.c
+++ b/src/itrans-stat.c
@@ -441,7 +441,7 @@ static gsl_matrix *itrans_peaksearch_stat_floodfill(gsl_matrix *m,
gsl_matrix_set(p, 2, n, val);
n++;
if ( n == size ) {
- printf("expanding %i->%i\n", size, size*2);
+
p = itrans_peaksearch_stat_matrix_expand(p, size, size*2);
size *= 2;
}
@@ -450,14 +450,10 @@ static gsl_matrix *itrans_peaksearch_stat_floodfill(gsl_matrix *m,
}
}
}
- //printf("ff: ending loop, found %d\n",n);
*count = n;
if ( n > 0 ) {
- //printf("pcheck s1=%d s2=%d\n",p->size1,p->size2);
- printf("expandingg %i->%i\n", size, n);
p = itrans_peaksearch_stat_matrix_expand(p, size, n);
- //printf("pcheck s1=%d s2=%d\n",p->size1,p->size2);
}
return p;