From 937b399fc594d6d816ea1c7973272ebd233c4e59 Mon Sep 17 00:00:00 2001 From: Gabrielle van de Vijver <gabrielle.van-de-vijver@etu.utc.fr> Date: Sun, 5 Nov 2023 17:20:32 +0100 Subject: [PATCH] initialisation comptes pour approval --- comsoc/Approval.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/comsoc/Approval.go b/comsoc/Approval.go index 1faee80..075f074 100644 --- a/comsoc/Approval.go +++ b/comsoc/Approval.go @@ -8,6 +8,12 @@ func ApprovalSWF(p Profile, thresholds []int) (count Count, err error) { if err != nil { return nil, err } + //initialisation de la map : comptes à 0 + count = make(Count) + for _,alt := range p[0]{ + count[alt]=0 + } + //actualisation du compte à l'aide du scrutin for index, alt := range p { for i := 0; i < thresholds[index]; i++ { count[alt[i]] += 1 -- GitLab