From: Leandro Lucarella Date: Sun, 11 Jul 2010 02:52:49 +0000 (-0300) Subject: micro/voronoi: Be really quiet when -v is not used X-Git-Url: https://git.llucax.com/software/dgc/dgcbench.git/commitdiff_plain/022e07d63f18d4511eefcec40e9297cae4a91bf6?ds=sidebyside;hp=7e67f491bd8433053d24c48d91bc0b6812c53b6a micro/voronoi: Be really quiet when -v is not used --- diff --git a/micro/voronoi.d b/micro/voronoi.d index bb5d5fe..86a37cd 100644 --- a/micro/voronoi.d +++ b/micro/voronoi.d @@ -1,5 +1,6 @@ /* 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 @@ -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("Done!\n"); } - - printf("Done!\n"); } /**