Up

module Measurement

: sig

A module internal to Core_bench. Please look at [root:Bench].

Contains the measurements of several runs of one benchmark.

#
type t
#
val name : t -> string
#
val largest_run : t -> int
#
val sample_count : t -> int
#
val samples : t -> Measurement_sample.t array
#
val create : name:string -> largest_run:int -> sample_count:int -> samples:Measurement_sample.t array -> t
#
val save : t -> filename:string -> unit
#
val load : filename:string -> t
#
val t_of_sexp : Sexplib.Sexp.t -> t
#
val sexp_of_t : t -> Sexplib.Sexp.t
end