|
1 | 1 | opam-version: "2.0"
|
2 |
| -name: "bst" |
3 |
| -synopsis: "Bisector tree implementation in OCaml" |
4 |
| -description: """ |
5 |
| -A bisector tree allows to do fast but exact nearest neighbor searches |
6 |
| -in any space provided that you can measure the |
7 |
| -distance between any two points in that space. |
8 |
| -A bisector tree also allows fast neighbor searches (range queries/ |
9 |
| -finding all points within a given tolerance from your query point). |
10 |
| -Cf. this article for details: |
11 |
| -'A Data Structure and an Algorithm for the Nearest Point Problem'; |
12 |
| -Iraj Kalaranti and Gerard McDonald. |
13 |
| -ieeexplore.ieee.org/iel5/32/35936/01703102.pdf""" |
14 | 2 |
|
15 |
| -authors: "Francois Berenger" |
16 |
| -license: "BSD-3" |
| 3 | +authors: ["Francois Berenger"] |
17 | 4 | homepage: "https://github.com/UnixJunkie/bisec-tree"
|
18 | 5 | bug-reports: "https://github.com/UnixJunkie/bisec-tree/issues"
|
19 | 6 | dev-repo: "git+https://github.com/UnixJunkie/bisec-tree.git"
|
| 7 | +license: "BSD-3-Clause" |
| 8 | +build: ["dune" "build" "-p" name "-j" jobs] |
20 | 9 | depends: [
|
21 | 10 | "ocaml"
|
22 | 11 | "batteries"
|
23 |
| - "dune" {build} |
| 12 | + "dune" |
24 | 13 | "base-unix" {with-test}
|
25 | 14 | "dolog" {with-test}
|
26 | 15 | "minicli" {with-test}
|
27 | 16 | ]
|
28 |
| -build: ["dune" "build" "-p" name "-j" jobs] |
| 17 | +synopsis: "Bisector tree implementation in OCaml" |
| 18 | +description: """ |
| 19 | +A bisector tree allows to do fast but exact nearest neighbor searches |
| 20 | +in any space provided that you can measure the |
| 21 | +distance between any two points in that space. |
| 22 | +A bisector tree also allows fast neighbor searches (range queries/ |
| 23 | +finding all points within a given tolerance from your query point). |
| 24 | +Cf. this article for details: |
| 25 | +'A Data Structure and an Algorithm for the Nearest Point Problem'; |
| 26 | +Iraj Kalaranti and Gerard McDonald. |
| 27 | +ieeexplore.ieee.org/iel5/32/35936/01703102.pdf |
| 28 | +""" |
29 | 29 | # url {
|
30 | 30 | # src: "https://github.com/UnixJunkie/bisec-tree/archive/v6.0.0.tar.gz"
|
31 | 31 | # checksum: "md5=e3bafda0a2b705c5cd24e0710dee9c37"
|
|
0 commit comments