end
protected
+
def defeats(candidates=nil, votes=nil)
candidates = @election.candidates unless candidates
votes = @election.votes unless votes
end
protected
+
def cpssd
votes = @election.votes
candidates = *@election.candidates
# see the array with the standard defeats
transitive_defeats = self.defeats(candidates, votes)
+ defeats_hash = Hash.new
+ transitive_defeats.each { |td| defeats_hash[td] = 1 }
candidates = [candidates] unless candidates.class == Array
candidates.each do |cand1|
candidates.each do |cand3|
if not cand2 == cand3 and
not cand1 == cand3 and
- transitive_defeats.include?( [ cand2, cand1 ] ) and
- transitive_defeats.include?( [ cand1, cand3 ] ) and
- not transitive_defeats.include?( [ cand2, cand3 ] )
- transitive_defeats << [ cand2, cand3 ]
+ defeats_hash[[cand2, cand1]] and
+ defeats_hash[[cand1, cand3]] and
+ not defeats_hash[[cand2, cand3]]
+ transitive_defeats << [cand2, cand3]
+ defeats_hash[[cand2, cand3]] = 1
end
end
end