this repo has no description
1opam-version: "2.0" 2maintainer: "unixjunkie@sdf.org" 3authors: ["Francois BERENGER"] 4homepage: "https://github.com/UnixJunkie/vp-tree" 5bug-reports: "https://github.com/UnixJunkie/vp-tree/issues" 6dev-repo: "git+https://github.com/UnixJunkie/vp-tree.git" 7license: "BSD-3-Clause" 8build: [ 9 ["obuild" "configure"] 10 ["obuild" "build" "lib-minivpt"] 11] 12install: [ 13 ["obuild" "install"] 14] 15remove: [ 16 ["ocamlfind" "remove" "minivpt"] 17] 18depends: [ 19 "ocaml" 20 "ocamlfind" 21 "obuild" {build & >= "0.1.0"} 22] 23synopsis: "Minimalist vantage point tree implementation in OCaml" 24description: """ 25A vantage point tree allows to do fast but exact nearest neighbor searches 26in any space provided that you have a distance function to measure the 27distance between any two points in that space.""" 28flags: light-uninstall 29url { 30 src: "https://github.com/UnixJunkie/vp-tree/archive/v1.0.0.tar.gz" 31 checksum: [ 32 "sha256=141f0f816b8c13153aa771548dd4cb13e68661d4fb5a24015688e1ef369e7518" 33 "md5=a0c73fcfc720be90e69aa30be94b80d6" 34 ] 35}