this repo has no description
1opam-version: "2.0" 2maintainer: "Simon Grondin" 3authors: [ 4 "Simon Grondin" 5 "Will Welch" 6] 7synopsis: "OCaml implementation of the T-Digest algorithm" 8description: """ 9The T-Digest is a data structure and algorithm for constructing an approximate distribution for a collection of real numbers presented as a stream. 10 11The T-Digest can estimate percentiles or quantiles extremely accurately even at the tails, while using a fraction of the space. 12 13Additionally, the T-Digest is concatenable, making it a good fit for distributed systems. The internal state of a T-Digest can be exported as a binary string, and the concatenation of any number of those strings can then be imported to form a new T-Digest. 14""" 15license: "MIT" 16homepage: "https://github.com/SGrondin/tdigest" 17dev-repo: "git+https://github.com/SGrondin/tdigest" 18doc: "https://github.com/SGrondin/tdigest" 19bug-reports: "https://github.com/SGrondin/tdigest/issues" 20depends: [ 21 "ocaml" { >= "4.10.0" } 22 "dune" { >= "1.9.0" } 23 24 "core" { >= "v0.15.0" & < "v0.16.0" } 25# "ocamlformat" { = "0.21.0" } # Development 26# "ocaml-lsp-server" # Development 27 28 "alcotest" { with-test } 29 "yojson" { with-test } 30] 31build: ["dune" "build" "-p" name "-j" jobs] 32url { 33 src: "https://github.com/SGrondin/tdigest/archive/2.0.0.tar.gz" 34 checksum: [ 35 "md5=5732b60dbdc548f124ffd4acbe1637ba" 36 "sha512=c6773bb73c22f03f8ac645e5da444dd7d43ea8600f3982ac94e065857d2bcf69cece01bccced5acb215f362d12b927d6df5916bc0d8e19852108d6cbd4eccfd2" 37 ] 38}