-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgrenier.opam
30 lines (30 loc) · 920 Bytes
/
grenier.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
opam-version: "2.0"
maintainer: "Frederic Bour <[email protected]>"
authors: "Frederic Bour <[email protected]>"
homepage: "https://github.com/let-def/grenier"
bug-reports: "https://github.com/let-def/grenier"
license: "ISC"
dev-repo: "git+https://github.com/let-def/grenier.git"
doc: "https://let-def.github.io/grenier/doc"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "3.0.0"}
]
synopsis: "A collection of various algorithms in OCaml"
description: """
This library implements various datastructures and algorithms:
- automata minimization and transformation to regular expression
- balanced trees
- binpacking
- cardinality estimation (hyperloglog)
- immutable sequences
- jump consistent hashing
- solutions to the order maintenance problem
- congruence closure
- ...
"""