]> git.llucax.com Git - software/dgc/dgcbench.git/commitdiff
micro/voronoi: Be really quiet when -v is not used
authorLeandro Lucarella <llucax@gmail.com>
Sun, 11 Jul 2010 02:52:49 +0000 (23:52 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 11 Jul 2010 14:44:23 +0000 (11:44 -0300)
micro/voronoi.d

index bb5d5fe93dd95fe3ecae073485b9225507b5d078..86a37cdbf9e506112b61b2a004c8e3295952358a 100644 (file)
@@ -1,5 +1,6 @@
 /*
 Translated by Leonardo Fantascienza, downloaded from http://codepad.org/xGDCS3KO
 /*
 Translated by Leonardo Fantascienza, downloaded from http://codepad.org/xGDCS3KO
+Modified by Leandro Lucarella to be really quiet when -v is not used.
 
 A D implementation of the Voronoi Olden benchmark. Voronoi
 generates a random set of points and computes a Voronoi diagram for
 
 A D implementation of the Voronoi Olden benchmark. Voronoi
 generates a random set of points and computes a Voronoi diagram for
@@ -899,9 +900,8 @@ struct Voronoi {
             printf("Build time %f\n", end0 - start0);
             printf("Compute  time %f\n", end1 - start1);
             printf("Total time %f\n", end1 - start0);
             printf("Build time %f\n", end0 - start0);
             printf("Compute  time %f\n", end1 - start1);
             printf("Total time %f\n", end1 - start0);
+            printf("Done!\n");
         }
         }
-
-        printf("Done!\n");
     }
 
     /**
     }
 
     /**