summaryrefslogtreecommitdiff
path: root/src/SenateTypes.hs
blob: 764e7339f627d575a0d33291cd9349fc57deb315 (plain)
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
module SenateTypes(
    Ranking,
    Position,
    CandidateID,
    AbovePreferences,
    BelowPreferences,
    FullPreferences,
    UpperMap,
    LowerMap,
    Trace
    ) where



--  fairly obvious, rankings, positions and candidateIDs are all numbers
type Ranking = Int
type Position = Int
type CandidateID = String



type AbovePreferences = [(Position,Ranking)]
type BelowPreferences = [(Position,Ranking)]
type FullPreferences = (AbovePreferences,BelowPreferences)



--  positions in the uppermap list correspond to the boxes above the line,
--  and the lists of candidateIDs are the boxes below the line
type UpperMap = [[Position]]



--  a list of candidates in the order of how they were placed below the line
type LowerMap = [CandidateID]



--  represents a criteria used for finding ballots that voted a specific
--  way, for example voted for candidate C as #1, candidate F as #2, etc
type Trace = [(Ranking,CandidateID)]