type t = {verbosity : Verbosity.t; | 
no_compactions : bool; | 
time_quota : Core.Time.Span.t; | 
sampling_type : [ `Geometric of float | `Linear of int ]; | 
stabilize_gc_between_runs : bool; | 
fork_each_benchmark : bool; | 
}val fork_each_benchmark : t ‑> boolval stabilize_gc_between_runs : t ‑> boolval sampling_type : t ‑> [ `Geometric of float | `Linear of int ]val time_quota : t ‑> Core.Time.Span.tval no_compactions : t ‑> boolval verbosity : t ‑> Verbosity.tmodule Fields : sig ... endval t_of_sexp : Sexplib.Sexp.t ‑> tval sexp_of_t : t ‑> Sexplib.Sexp.tval create : ?verbosity:Verbosity.t ‑> ?no_compactions:bool ‑> ?time_quota:Core.Time.Span.t ‑> ?sampling_type:[ `Geometric of float | `Linear of int ] ‑> ?stabilize_gc_between_runs:bool ‑> ?fork_each_benchmark:bool ‑> unit ‑> t