gauge/app/models/conflict_coefficient.rb

26 lines
715 B
Ruby
Raw Normal View History

2015-10-15 02:01:03 +03:00
class ConflictCoefficient
attr_reader :left, :right, :conflicts
def self.all
talk_combinations = Talk.all.map(&:id).combination(2)
talk_preferences = TalkPreference.all
talk_preferences_count = TalkPreference.count
talk_combinations.map do |talks|
conflicts = talk_preferences.select do |talk_preference|
talk_preference.include_all? talks
end.count
ConflictCoefficient.new talks.first, talks.last, conflicts, talk_preferences_count
end
end
def initialize(left, right, conflicts, total_votes)
@left, @right, @conflicts, @total_votes = left, right, conflicts, total_votes
end
def per_cent
Rational(100 * @conflicts, @total_votes).to_f
end
end