Added support for instant run-off voting with a patch from
[rubyvote] / lib / positional.rb
1 # election library -- a ruby library for elections
2 # copyright © 2005 MIT Media Lab and Benjamin Mako Hill
3
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.
8
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.
13
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
17 # 02110-1301, USA.
18
19 #################################################################
20 ## ==== positional.rb ====
21 ##
22 ## This file contains positional election methods. Currently only
23 ## includes an implementation of the Borda count election method.
24 #################################################################
25
26 ##################################################################
27 ## BordaVote and BordaResult Classes
28 ##
29 ## These classes inherit from and/or are modeled after the classes in
30 ## election.rb and condorcet.rb
31
32 require 'election'
33
34 class BordaVote < ElectionVote
35
36   def initialize(votes=nil)
37     @candidates = Array.new
38     votes.each do |vote|
39       @candidates = vote.uniq if vote.uniq.length > candidates.length
40     end
41     super(votes)
42   end
43
44   def tally_vote(vote)
45     points = candidates.length - 1
46     vote.each do |candidate|
47       @votes[candidate] = points
48       points -= 1
49     end
50   end
51
52   def verify_vote(vote=nil)
53     vote.instance_of?( Array ) and
54       vote == vote.uniq
55   end
56
57   def result
58     BordaResult.new(self)
59   end
60 end
61
62 class BordaResult < ElectionResult
63   def initialize(voteobj=nil)
64     super(voteobj)
65     votes = @election.votes
66
67     @ranked_candidates = votes.sort do |a, b|
68       b[1] <=> a[1]
69     end.collect {|i| i[0]}
70
71     @winners = @ranked_candidates.find_all do |i|
72       votes[i] == votes[@ranked_candidates[0]]
73     end
74   end
75
76 end

Benjamin Mako Hill || Want to submit a patch?