From 208b617bbac18337147cc3e158cf373c2de2a1f9 Mon Sep 17 00:00:00 2001 From: Daniel Tartavel Date: Fri, 23 Sep 2022 20:41:50 +0200 Subject: [PATCH] test --- methods/schulzeResults.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/methods/schulzeResults.php b/methods/schulzeResults.php index 8f7e5e0..1797a1f 100644 --- a/methods/schulzeResults.php +++ b/methods/schulzeResults.php @@ -59,13 +59,16 @@ class schulze $s = $v[$i]; if ($i == 0) { + echo "i = 0"; $w[$s] = 1; } if ($s == $v[$i+1]) { + echo "egal\n"; $w[$s] += 1; }else { + echo "non egal\n"; $w[$s] = 1; } }