-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvotes.py
49 lines (38 loc) · 1.37 KB
/
votes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from typing import Self, Type
from src.pairings import *
from src.utilities import *
class Vote:
def __init__(self, N=500, budget=1000, comparisons_cls: Type[Pairings] = Random, rematch=1, p=1) -> None:
self.N = N
self.comparisons = comparisons_cls(N)
self.budget = budget
self.rematch = rematch
self.p = p
self.true_ranking = random_list(N)
self.start_vote()
def start_vote(self) -> Self:
while self.budget > 0:
(i, j) = self.next_comparison()
n = self.rematch
while n > 0:
(loser, winner) = self.single_vote((i, j), self.true_ranking, self.p)
self.comparisons.record_vote(winner, loser)
self.budget -= 1
n -= 1
if self.budget == 0:
break
else:
continue
break
return self
def next_comparison(self):
# Subclasses can hook into this function
return self.comparisons.next_comparison()
def single_vote(self, pair: tuple, ranking: list, p: int = 1):
# Subclasses can hook into this function
return vote(pair, ranking, p)
def rank(self) -> list[int]:
# Subclasses must implement this function
pass
def score(self, func=top_10):
return func(self.true_ranking, self.rank())