Condorcet methods determine all candidates before tallying, in case of
[rubyvote] / lib / rubyvote / condorcet.rb
index f4ed7b74be0e7a9ec79d1ffe20f61fcfcab97ed2..68b3c708d25fa324dd2d361b210fc10fd0184a08 100644 (file)
 
 class CondorcetVote < ElectionVote
 
+  def initialize(votes=nil)
+    unless defined?(@candidates)
+      @candidates = Array.new
+      votes.each do |vote_row|
+        vote_row = vote_row.flatten if vote_row.class == Array
+        vote_row.each do |vote| 
+          @candidates << vote unless @candidates.include?(vote)
+        end
+      end
+    end
+    super(votes)
+  end
+
   def tally_vote(vote=nil)
 
     vote.each_with_index do |winner, index|
@@ -67,9 +80,6 @@ class CondorcetVote < ElectionVote
           @candidates << loser unless @candidates.include?( loser )
         end
       end
-
-      @candidates << winner unless @candidates.include?( winner ) || 
-        winner.class == Array
     end
   end
 

Benjamin Mako Hill || Want to submit a patch?