package core_bench

  1. Overview
  2. Docs

Results of a benchmark analysis, including all the regressions.

module Ci95 : sig ... end

95% confidence interval, stored as (left endpoint, right endpoint)

module Coefficient : sig ... end
module Regression : sig ... end
type t
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val name : t -> string
val test_name : t -> string
val file_name : t -> string
val module_name : t -> string
val sample_count : t -> int
val largest_run : t -> int
val regressions : t -> Regression.t array
val create : name:string -> test_name:string -> file_name:string -> module_name:string -> sample_count:int -> largest_run:int -> regressions:Regression.t array -> t
val find_key : t -> int -> Regression.t option