sig
  module Stat :
    sig
      type t = {
        run_cycles : int;
        compactions : int;
        minor_allocated : int;
        major_allocated : int;
        promoted : int;
      }
      val empty : Deprecated_bench.Result.Stat.t
    end
  type t = string option * int * Deprecated_bench.Result.Stat.t array
  val mean :
    Deprecated_bench.Result.Stat.t array -> Deprecated_bench.Result.Stat.t
  val min :
    Deprecated_bench.Result.Stat.t array -> Deprecated_bench.Result.Stat.t
  val max :
    Deprecated_bench.Result.Stat.t array -> Deprecated_bench.Result.Stat.t
  val compactions_occurred : Deprecated_bench.Result.Stat.t array -> bool
end