├── .Rbuildignore ├── .github └── SUPPORT.md ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── WKNNClasses.R ├── knn.R └── nabor-package.R ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── data └── kcpoints.rda ├── docs ├── LICENSE-text.html ├── SUPPORT.html ├── authors.html ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── WKNN-class.html │ ├── index.html │ ├── kcpoints.html │ ├── knn.html │ └── nabor-package.html ├── inst └── CITATION ├── man ├── WKNN-class.Rd ├── kcpoints.Rd ├── knn.Rd └── nabor-package.Rd ├── nabor.Rproj ├── nabor.bib ├── revdep ├── .gitignore └── check.R ├── src ├── Makevars ├── RcppExports.cpp ├── WKNN.cpp ├── WKNN.h ├── brute_force_cpu.cpp ├── index_heap.h ├── init.c ├── kdtree_cpu.cpp ├── nabo.cpp ├── nabo.h ├── nabo_private.h └── nabor.cpp └── tests ├── testthat.R └── testthat ├── test-WKNND.R ├── test-WKNNF.R └── test-knn.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/WKNNClasses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/R/WKNNClasses.R -------------------------------------------------------------------------------- /R/knn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/R/knn.R -------------------------------------------------------------------------------- /R/nabor-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/R/nabor-package.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | destination: docs 2 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/kcpoints.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/data/kcpoints.rda -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/SUPPORT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/SUPPORT.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/WKNN-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/reference/WKNN-class.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/kcpoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/reference/kcpoints.html -------------------------------------------------------------------------------- /docs/reference/knn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/reference/knn.html -------------------------------------------------------------------------------- /docs/reference/nabor-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/docs/reference/nabor-package.html -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/WKNN-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/man/WKNN-class.Rd -------------------------------------------------------------------------------- /man/kcpoints.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/man/kcpoints.Rd -------------------------------------------------------------------------------- /man/knn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/man/knn.Rd -------------------------------------------------------------------------------- /man/nabor-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/man/nabor-package.Rd -------------------------------------------------------------------------------- /nabor.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/nabor.Rproj -------------------------------------------------------------------------------- /nabor.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/nabor.bib -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- 1 | **/ 2 | summary.md 3 | -------------------------------------------------------------------------------- /revdep/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/revdep/check.R -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- 1 | PKG_CPPFLAGS = -I. 2 | -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/WKNN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/WKNN.cpp -------------------------------------------------------------------------------- /src/WKNN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/WKNN.h -------------------------------------------------------------------------------- /src/brute_force_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/brute_force_cpu.cpp -------------------------------------------------------------------------------- /src/index_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/index_heap.h -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/init.c -------------------------------------------------------------------------------- /src/kdtree_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/kdtree_cpu.cpp -------------------------------------------------------------------------------- /src/nabo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/nabo.cpp -------------------------------------------------------------------------------- /src/nabo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/nabo.h -------------------------------------------------------------------------------- /src/nabo_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/nabo_private.h -------------------------------------------------------------------------------- /src/nabor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/src/nabor.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-WKNND.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/tests/testthat/test-WKNND.R -------------------------------------------------------------------------------- /tests/testthat/test-WKNNF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/tests/testthat/test-WKNNF.R -------------------------------------------------------------------------------- /tests/testthat/test-knn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferis/nabor/HEAD/tests/testthat/test-knn.R --------------------------------------------------------------------------------