1 # election library -- a ruby library for elections
2 # copyright © 2005 MIT Media Lab and Benjamin Mako Hill
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 #################################################################
20 ## ==== condorcet.rb ====
22 ## This file contains Condorcet election methods. Currently this
23 ## includes a pure condorcet and a CloneproofSSD implementation
24 ## modeled after the Python-based Debian project election code and
25 ## that gives the same results in several tested corner cases.
26 #################################################################
28 ##################################################################
29 ## CondorcetVote Classes and SubClasses
31 ## The CondorcetVote class is subclassed by the PureCondorcetVote and
32 ## the CloneproofSSDVote classes but should not be used directly.
34 class CondorcetVote < ElectionVote
36 def initialize(votes=nil)
37 unless defined?(@candidates)
38 @candidates = Array.new
39 votes.each do |vote_row|
40 vote_row = vote_row.flatten if vote_row.class == Array
41 vote_row.each do |vote|
42 @candidates << vote unless @candidates.include?(vote)
49 def tally_vote(vote=nil)
51 vote.each_with_index do |winner, index|
52 if vote.flatten.length < @candidates.length
53 implied_losers = @candidates.select { |c| not vote.include?(c) }
54 vote.push(implied_losers)
56 if vote.length - 1 == index
59 losers = vote.last( vote.flatten.length - index )
62 losers.each do |place|
63 place = [place] unless place.class == Array
66 next if winner == loser
68 @votes[winner] = Hash.new unless @votes.has_key?(winner)
69 @votes[loser] = Hash.new unless @votes.has_key?(loser)
71 if @votes[winner].has_key?(loser)
72 @votes[winner][loser] += 1
74 @votes[winner][loser] = 1
77 # make sure we have a comparable object
78 @votes[loser][winner] = 0 unless @votes[loser].has_key?( winner )
85 top_result = resultFactory( self )
86 until @candidates.empty?
87 aResult = resultFactory( self )
88 top_result.full_results << aResult
95 def verify_vote(vote=nil)
96 vote.instance_of?( Array ) and
102 class PureCondorcetVote < CondorcetVote
103 def resultFactory(init)
104 PureCondorcetResult.new(init)
108 class CloneproofSSDVote < CondorcetVote
109 def resultFactory(init)
110 CloneproofSSDResult.new(init)
115 ##################################################################
116 ## CondorcetResult Classes and SubClasses
118 ## The CondorcetResult class is subclassed by the PureCondorcetResult
119 ## and the CloneproofSSDResult classes but should not be used
122 class CondorcetResult < ElectionResult
123 def initialize(voteobj=nil)
124 unless voteobj and voteobj.kind_of?( CondorcetVote )
125 raise ArgumentError, "You must pass a CondorcetVote array.", caller
131 def defeats(candidates=nil, votes=nil)
132 candidates = @election.candidates unless candidates
133 votes = @election.votes unless votes
136 candidates.each do |candidate|
137 candidates.each do |challenger|
138 next if candidate == challenger
139 if votes[candidate][challenger] > votes[challenger][candidate]
140 defeats << [ candidate, challenger ]
150 class PureCondorcetResult < CondorcetResult
151 def initialize(voteobj=nil)
158 votes = @election.votes
159 candidates = @election.candidates
162 candidates.each do |candidate|
163 victors[candidate] = Array.new
166 self.defeats.each do |pair|
167 winner, loser = *pair
168 victors[winner] << loser
171 winners = @election.candidates.find_all do |candidate|
172 victors[candidate].length == @election.candidates.length - 1
175 @winners << winners if winners.length == 1
179 class CloneproofSSDResult < CondorcetResult
180 def initialize(voteobj=nil)
182 @winners = self.cpssd()
187 votes = @election.votes
188 candidates = *@election.candidates
190 def in_schwartz_set?(candidate, candidates, transitive_defeats)
191 candidates.each do |challenger|
192 next if candidate == challenger
194 if transitive_defeats.include?( [ challenger, candidate ] ) and
195 not transitive_defeats.include?( [ candidate, challenger ] )
204 # see the array with the standard defeats
205 transitive_defeats = self.defeats(candidates, votes)
207 candidates.each do |cand1|
208 candidates.each do |cand2|
209 candidates.each do |cand3|
210 if transitive_defeats.include?( [ cand2, cand1 ] ) and
211 transitive_defeats.include?( [ cand1, cand3 ] ) and
212 not transitive_defeats.include?( [ cand2, cand3 ] ) and
214 transitive_defeats << [ cand2, cand3 ]
220 schwartz_set = Array.new
221 candidates.each do |candidate|
222 if in_schwartz_set?(candidate, candidates, transitive_defeats)
223 schwartz_set << candidate
227 candidates = schwartz_set
229 # look through the schwartz set now for defeats
230 defeats = self.defeats(candidates, votes)
232 # it's a tie or there's only one option
233 break if defeats.length == 0
235 def is_weaker_defeat?( pair1, pair2 )
236 votes = @election.votes
237 if votes[pair1[0]][pair1[1]] > votes[pair2[0]][pair2[1]]
239 elsif votes[pair1[0]][pair1[1]] == votes[pair2[0]][pair2[1]] and
240 votes[pair1[1]][pair1[0]] > votes[pair2[1]][pair2[0]]
247 defeats.sort! do |pair1, pair2|
248 if is_weaker_defeat?( pair1, pair2 )
250 elsif is_weaker_defeat?( pair2, pair1 )
257 votes[defeats[0][0]][defeats[0][1]] = 0
258 votes[defeats[0][1]][defeats[0][0]] = 0