this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/janestreet/splay_tree"
5bug-reports: "https://github.com/janestreet/splay_tree/issues"
6dev-repo: "git+https://github.com/janestreet/splay_tree.git"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/splay_tree/index.html"
8license: "MIT"
9build: [
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "4.08.0"}
14 "core_kernel" {>= "v0.14" & < "v0.15"}
15 "ppx_jane" {>= "v0.14" & < "v0.15"}
16 "dune" {>= "2.0.0"}
17]
18synopsis: "A splay tree implementation"
19description: "
20Splay trees are binary search trees that move recently accessed nodes
21closer to the root for easier access. They have amortized O(log
22n)-time access for a large enough sequence of primitive operations.
23
24A splay trees may outperform other trees such as red-black trees when
25recently accessed items are more likely to be accessed in the near
26future.
27
28Notably, this splay tree implementation is parameterized by a
29reduction operation which lets you specify an extra accumulator value,
30which can then be searched by efficiently.
31"
32url {
33 src:
34 "https://ocaml.janestreet.com/ocaml-core/v0.14/files/splay_tree-v0.14.0.tar.gz"
35 checksum: [
36 "sha256=1f1ec85a6eafdb7ecb2e03a204eee237ea6db73e2ffbdbc222fe8edb6cd5f050"
37 "md5=d00a8015f285764bc719125dc110856c"
38 ]
39}