-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvpt.opam
32 lines (31 loc) · 1.01 KB
/
vpt.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
31
32
opam-version: "2.0"
maintainer: "unixjunkie@sdf.org"
authors: ["Francois BERENGER"]
homepage: "https://github.com/UnixJunkie/vp-tree"
bug-reports: "https://github.com/UnixJunkie/vp-tree/issues"
dev-repo: "git+https://github.com/UnixJunkie/vp-tree.git"
license: "BSD-3-Clause"
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"dune" {>= "2.8"}
]
synopsis: "Vantage point tree implementation in OCaml"
description: """
A vantage point tree allows to do fast but exact nearest neighbor searches
in any space provided that you have a metric (function) to measure the
distance between any two points in that space.
Bibliography
============
Yianilos, P. N. (1993, January).
Data structures and algorithms for nearest neighbor search
in general metric spaces.
In Soda (Vol. 93, No. 194, pp. 311-21).
http://dx.doi.org/10.1145/313559.313789
"""
url {
src: "https://github.com/UnixJunkie/vp-tree/archive/v4.0.1.tar.gz"
checksum: "md5=d65973d0c20d32deb57bbc91f2af5a6d"
}