From ebdbc0e3c005d8b57eb368dcc60ce27d4dde9e32 Mon Sep 17 00:00:00 2001 From: Semen Zhydenko Date: Tue, 27 Dec 2022 14:14:48 +0100 Subject: [PATCH] Fixed typo: strenght -> strength --- scripts/postprocessing/rankings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/postprocessing/rankings.py b/scripts/postprocessing/rankings.py index 5fd2fcf6..7b28399c 100644 --- a/scripts/postprocessing/rankings.py +++ b/scripts/postprocessing/rankings.py @@ -99,7 +99,7 @@ def ranked_pairs(ranks: List[List[int]]): tallies = tallies - tallies.T # print(tallies) # note: the resulting tally matrix should be skew-symmetric - # order by strenght of victory (using tideman's original method, don't think it would make a difference for us) + # order by strength of victory (using tideman's original method, don't think it would make a difference for us) sorted_majorities = [] for i in range(len(ranks[0])): for j in range(len(ranks[i])):