# File lib/analyzer_tools/bench.rb, line 80
  def time
    start_time = Time.now.to_f
    yield
    end_time = Time.now.to_f
    return end_time - start_time
  end