Skip to content

Commit

Permalink
Update src/core/Test_stat.ml
Browse files Browse the repository at this point in the history
Co-authored-by: Simon Cruanes <[email protected]>
  • Loading branch information
Halbaroth and c-cube authored Oct 9, 2023
1 parent 85aee20 commit 45ed699
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/Test_stat.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ open Common
open Test
module PB = PrintBox

(* Aggregate function computing the mean and the standard deviation
of data series using the Welford's algoritm. *)
(** Aggregate function computing the mean and the standard deviation
of data series using the Welford's algorithm. *)
module Stats = struct
type acc = { n: int; total: float; mean: float * float; s: float * float }

Expand Down

0 comments on commit 45ed699

Please sign in to comment.