Add somewhat hackish fix for PureCondorcetVote.new([]).result deadlocking
[rubyvote] / lib / rubyvote / condorcet.rb
index 65c664dd28a57417aa0a90395562289c8de0eed4..c0539abea5f02aa5b11ddda80fd41f68e78b9b8e 100644 (file)
@@ -184,7 +184,10 @@ class PureCondorcetResult < CondorcetResult
   def condorcet
     votes = @election.votes
     candidates = @election.candidates
   def condorcet
     votes = @election.votes
     candidates = @election.candidates
-
+    unless votes.length>0 and candidates.length>0
+      @winners=[nil]
+      return @winners
+    end
     victors = Hash.new
     candidates.each do |candidate|
       victors[candidate] = Array.new
     victors = Hash.new
     candidates.each do |candidate|
       victors[candidate] = Array.new

Benjamin Mako Hill || Want to submit a patch?