From 8105b2a5831dfba22c83cdd97aea833717c23088 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 8 Mar 2014 22:17:53 +0000 Subject: [PATCH] apply floor to n_over_best --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 3e84628..87cb8d7 100644 --- a/main.c +++ b/main.c @@ -113,7 +113,7 @@ static void progress_eol(void) { static void set_best(double new_best) { best = new_best; - n_over_best = n / best; + n_over_best = floor(n / best); } /*----- multicore support -----*/ -- 2.30.2