X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/6dfbfbec4b0d01138c272649d668c5a872706a5c..ae1b10889b53eeabc3a1f2281cfc1555781ab7fb:/lib/rubyvote/irv.rb diff --git a/lib/rubyvote/irv.rb b/lib/rubyvote/irv.rb index 3851738..c3fabe6 100644 --- a/lib/rubyvote/irv.rb +++ b/lib/rubyvote/irv.rb @@ -87,6 +87,11 @@ class InstantRunoffResult < ElectionResult apply_retention(votes, votes_sum * params['percent_retention']) end + unless votes.length > 0 + @winners=[] + return + end + begin ranked_candidates = votes.sort do |a, b| b[1][0] <=> a[1][0]