From 022e07d63f18d4511eefcec40e9297cae4a91bf6 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sat, 10 Jul 2010 23:52:49 -0300 Subject: [PATCH] micro/voronoi: Be really quiet when -v is not used --- micro/voronoi.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); } /** -- 2.43.0