class Benchmark::IPS::Job

def initialize opts={}

Instantiate the Benchmark::IPS::Job.
def initialize opts={}
  @list = []
  @run_single = false
  @json_path = false
  @compare = false
  @compare_order = :fastest
  @held_path = nil
  @held_results = nil
  @timing = Hash.new 1 # default to 1 in case warmup isn't run
  @full_report = Report.new
  # Default warmup and calculation time in seconds.
  @warmup = 2
  @time = 5
  @iterations = 1
  # Default statistical model
  @stats = :sd
  @confidence = 95
  @out = MultiReport.new(StreamReport.new)
end