package core_bench

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Core_bench_internals.Display_configSource

A module internal to Core_bench. Please look at Bench.

Sourcetype 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;
  12. max_name_length : int;
}
Sourceval max_name_length : t -> int
Sourceval show_overheads : t -> bool
Sourceval show_all_values : t -> bool
Sourceval show_samples : t -> bool
Sourceval show_speedup : t -> bool
Sourceval show_percentage : t -> bool
Sourceval show_absolute_ci : t -> bool
Sourceval show_output_as_sexp : t -> bool
Sourceval ascii_table : t -> bool
Sourceval limit_width_to : t -> int
Sourceval don't_display_table : t -> bool
Sourcemodule Fields : sig ... end
Sourceval create : ?don't_display_table:bool -> ?max_name_length:int -> ?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