]> granicus.if.org Git - graphviz/commitdiff
removed unnecessary print
authorJonathan Zheng <jonathanzheng@hotmail.co.uk>
Fri, 10 Jan 2020 23:15:09 +0000 (23:15 +0000)
committerMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sun, 5 Apr 2020 20:18:29 +0000 (22:18 +0200)
lib/neatogen/sgd.c

index a8d91ca2a8c43008f05c8776c610041eefc8e888..6c451097475330e08de3a705104f7741ff83c65e 100644 (file)
@@ -12,7 +12,6 @@ void fisheryates_shuffle(term *terms, int nC2) {
     for (i=nC2-1; i>=1; i--) {
         // unsigned j = rk_interval(i, &rstate);
         int j = (int)(drand48() * (i+1)); // TODO: better rng
-        fprintf(stderr, "%d %d %f %f\n", i, j, terms[i].d, terms[i].w);
 
         term temp = terms[i];
         terms[i] = terms[j];