Statistics.Makemodule type Arg = sig ... endmodule Aux : sig ... endCreate an implementation for a Statistics module that computes an Average.
Create an implementation for a Statistics module that computes a Median.
module Percentile95 (X : Arg) : Stats with type t = intCreate an implementation for a Statistics module that computes a 95th Percentile.
Create an implementation for a Statistics module that computes a Maximum.
Create an implementation for a Statistics module that computes a Minimum.
module CountPerNode (X : Arg) : Stats with type t = intCreate an implementation for a Statistics module that computes a Counter per Node.
Create an implementation for a Statistics module that computes a Global Counter for integers.