package core_bench

  1. Overview
  2. Docs

A module internal to Core_bench. Please look at Bench.

type t = {
  1. don't_display_table : bool;
  2. limit_width_to : int;
  3. display : Ascii_table_kernel.Display.t;
  4. ascii_table : bool;
  5. show_output_as_sexp : bool;
  6. show_absolute_ci : bool;
  7. show_percentage : bool;
  8. show_speedup : bool;
  9. show_samples : bool;
  10. show_all_values : bool;
  11. show_overheads : bool;
}
val show_overheads : t -> bool
val show_all_values : t -> bool
val show_samples : t -> bool
val show_speedup : t -> bool
val show_percentage : t -> bool
val show_absolute_ci : t -> bool
val show_output_as_sexp : t -> bool
val ascii_table : t -> bool
val limit_width_to : t -> int
val don't_display_table : t -> bool
module Fields : sig ... end
val create : ?don't_display_table:bool -> ?limit_width_to:int -> ?display:Ascii_table_kernel.Display.t -> ?ascii_table:bool -> ?show_output_as_sexp:bool -> ?show_absolute_ci:bool -> ?show_percentage:bool -> ?show_speedup:bool -> ?show_samples:bool -> ?show_all_values:bool -> ?show_overheads:bool -> unit -> t