class CwCardUtils::SynergyProbability

def copies_by_name

Only need to calculate this once for the deck passed in.
def copies_by_name
  @copies_by_name ||= @deck.main.each_with_object(Hash.new(0)) { |card, h| h[card.name] += card.count }
end