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.07.0"} 14 "core_kernel" {>= "v0.12" & < "v0.13"} 15 "ppx_jane" {>= "v0.12" & < "v0.13"} 16 "dune" {>= "1.5.1"} 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.12/files/splay_tree-v0.12.0.tar.gz" 35 checksum: [ 36 "sha256=b9f117b45197efa436cb59660150dde41e9c1c7cfaae793ce9ec99e138d6f2e9" 37 "md5=364587a772dc8c2fd81ef9d326eb2592" 38 ] 39}