Lines Matching refs:suspects
252 suspects = []
259 suspects.append(bench)
260 return suspects
270 def suspects_arg(suspects): argument
271 patterns = map(process_bench_pattern, suspects)
312 suspects = get_suspects()
313 if len(suspects) != last_suspect_number:
314 last_suspect_number = len(suspects)
316 if (len(suspects) == 0 or it - last_unchanged_iter >= TERM):
319 print "Number of suspects at iteration %d: %d" % (it, len(suspects))
323 args.arg_a + suspects_arg(suspects), -j)
325 args.arg_b + suspects_arg(suspects), -j)
329 suspects = get_suspects()
330 if len(suspects) == 0:
334 suspects.sort(key = regression)
336 for suspect in suspects:
348 r = regression(bench) if bench in suspects else 1.0
380 for bench in suspects + timesA.keys():
386 "%s, %s, %f, " % (bench, bench in suspects, regression(bench)) +
395 (len([x for x in timesA if x in timesB]), len(suspects)))