summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update dependenciesHEAD0.3.0mainTavian Barnes2021-10-241-3/+3
|
* Bump the version to 0.3.0Tavian Barnes2021-10-241-1/+1
|
* ci: Switch to GitHub ActionsTavian Barnes2021-10-243-12/+19
|
* Bump the edition to 2021Tavian Barnes2021-10-248-16/+1
|
* Add explicit '_ lifetimes to generic typesTavian Barnes2021-10-214-11/+13
|
* Fix some clippy lintsTavian Barnes2021-10-124-5/+6
|
* exhaustive: Derive CloneTavian Barnes2021-07-041-1/+1
|
* kd, vp: Use as_deref()Tavian Barnes2021-06-022-6/+4
|
* docs: Update katex to 0.13.11Tavian Barnes2021-05-191-2/+4
|
* distance: Move a bound from a where clause to Self::Value directlyTavian Barnes2021-02-251-2/+1
|
* knn: Move NearestNeighbor interfaces to a submoduleTavian Barnes2021-02-258-509/+524
|
* vp: Remove workaround for https://github.com/rust-lang/rust/issues/72582Tavian Barnes2021-02-241-5/+1
|
* vp: Add a non-consuming iter() to VpTree and FlatVpTreeTavian Barnes2021-02-241-0/+92
|
* kd: Add a non-consuming iter() to KdTree and FlatKdTreeTavian Barnes2021-02-241-2/+72
|
* exhaustive: Add a non-consuming iter()Tavian Barnes2021-02-241-3/+37
|
* exhaustive: Add a wrapper type for IntoIteratorTavian Barnes2021-02-241-9/+13
|
* docs: Fix a typo in the top-level documentationTavian Barnes2021-02-241-2/+2
|
* ks: Use sort_unstable_by_key rather than sort_by_cached_keyTavian Barnes2020-11-181-4/+4
| | | | | The comparison key is just a single coordinate, no need for the overhead of caching.
* vp: Fix FlatVpTree Debug field nameTavian Barnes2020-10-131-1/+1
|
* Version 0.2.00.2.0Tavian Barnes2020-08-241-2/+2
|
* Update default branch to 'main'Tavian Barnes2020-07-101-2/+2
|
* docs: Add some examples to the main pageTavian Barnes2020-07-081-0/+27
|
* kd: Use a more traditional k-d tree implementationTavian Barnes2020-07-069-118/+84
| | | | | | | | | The slight extra pruning possible in the previous implementation didn't seem to be worth it. The new, simpler implementation is also about 30% faster in most of the benchmarks. This gets rid of Coordinate{Proximity,Metric} as they're not necessary any more (and the old ExactNeighbors impl was too restrictive anyway).
* Clean up merge_k_nearest*() interface a bitTavian Barnes2020-07-062-47/+41
|
* Add methods for merging new neighbors into a vector in-placeTavian Barnes2020-07-032-82/+184
|
* Preallocate the heap for k_nearest*()Tavian Barnes2020-07-021-3/+3
|
* Version 0.1.10.1.1Tavian Barnes2020-06-291-1/+1
|
* Bump criterion to 0.3.3Tavian Barnes2020-06-291-1/+1
|
* distance: Expand the Distance docsTavian Barnes2020-06-291-3/+9
|
* distance: Expand the Proximity docsTavian Barnes2020-06-291-6/+49
|
* Apply some rustfmt suggestionsTavian Barnes2020-06-288-18/+16
|
* benches: Deduplicate some code with macrosTavian Barnes2020-06-281-46/+48
|
* cos: Add a TryFrom<T> impl for AngularDistance<T>Tavian Barnes2020-06-271-1/+20
|
* Fix some clippy lintsTavian Barnes2020-06-272-5/+17
|
* docs: Update some linksTavian Barnes2020-06-2710-63/+73
|
* docs: Integrate KaTeX and add some formulasTavian Barnes2020-06-279-18/+141
|
* euclid: Fix a doc typo (s/Createa/Creates/)Tavian Barnes2020-06-251-1/+1
|
* cos: Add prenormalized cosine/angular distances, and an order embeddingTavian Barnes2020-06-251-16/+332
|
* cos: Implement cosine and angular distanceTavian Barnes2020-06-252-0/+196
|
* Add links to module summariesTavian Barnes2020-06-248-8/+8
|
* cargo: Update dependenciesTavian Barnes2020-06-241-2/+2
|
* cargo: Make rand a dev dependencyTavian Barnes2020-06-241-2/+2
|
* README.md: Add crates.io and docs.rs badgesTavian Barnes2020-06-241-0/+2
|
* lp: Implement general L^p spacesTavian Barnes2020-06-242-0/+59
|
* hamming: Implement Hamming distance0.1.0Tavian Barnes2020-06-242-0/+77
|
* chebyshev: Implement Chebyshev distanceTavian Barnes2020-06-242-0/+121
|
* taxi: Implement taxicab distanceTavian Barnes2020-06-242-0/+117
|
* docs: Add a READMETavian Barnes2020-06-242-0/+31
|
* Add an overview to the documentationTavian Barnes2020-06-241-0/+88
|
* kd: Implement flat k-d treesTavian Barnes2020-06-242-1/+162
|