# File lib/kwala/actions/cyclomatic_complexity.rb, line 77
  def score
    # high complexity is probably one of the things that should weigh higher.
    score_scaling(( @cyclo_count[:errors] * 3 + @cyclo_count[:warnings]), @bound)
  end