chiark / gitweb /
helixish: debugging changes
[moebius3.git] / findcurve.c
index 9d86ff485375f03f670d9415876ab1cb8462d48b..a84132be105c8c04fab117afd7ff766d7d9e62c6 100644 (file)
@@ -44,6 +44,9 @@ static void cb_step(const gsl_rng *rng, void *xp, double step_size) {
   gsl_ran_dir_nd(rng, N,step);
   for (i=0; i<N; i++)
     x[i] += step_size * step[i];
+  //printf("\n cb_step %p %.18g [", xp, step_size);
+  //for (i=0; i<N; i++) printf(" %.18g,", step[i]);
+  //printf("]\n");
 }
 
 static double cb_metric(void *xp, void *yp) {