From f98b0607bf72cebadb37b782a749ec8bcd4ab9f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Mogu=C3=A9rou?= Date: Tue, 16 Apr 2024 01:11:09 +0200 Subject: [PATCH] =?UTF-8?q?priorit=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/algorithm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/algorithm.c b/src/algorithm.c index 9f1414b..4073051 100644 --- a/src/algorithm.c +++ b/src/algorithm.c @@ -1130,9 +1130,9 @@ void aux_2(creneau* edt, int len_edt, colleur* chads, int len_chads, int n_group } else { info("100%% Completed, best score is %d/%d (without skip penalty) with %d skipped colle(s)", max_score+global_skipped*30, 100*n_groups, global_skipped); info("Most screwed group is %d with a score of %d/100", screwed_group, global_min); - info("Stats for all groups are :"); + debug("Stats for all groups are :"); for(int i = 0; i < n_groups; i++) { - info("Group %d : %d/100", i+1, group_stats[i]); + debug("Group %d : %d/100", i+1, group_stats[i]); } } int end = time(NULL);