-- Initial kdt.cabal generated by cabal init. For further documentation, -- see http://haskell.org/cabal/users-guide/ name: kdt version: 0.1.0 synopsis: Fast and flexible k-d trees for various types of point queries. description: This package includes static and dynamic versions of k-d trees, as well as \"Map\" variants that store data at each point in the k-d tree structure. Supports nearest neighbor, k nearest neighbors, points within a given radius, and points within a given range. To learn to use this package, start with the documentation for the "Data.KdTree.Static" module. homepage: https://github.com/giogadi/kdt license: MIT license-file: LICENSE author: Luis G. Torres maintainer: lgtorres42@gmail.com copyright: Luis G. Torres, 2014 category: Data build-type: Simple -- extra-source-files: cabal-version: >=1.10 source-repository head type: git location: https://github.com/giogadi/kdt.git branch: master library exposed-modules: Data.KdMap.Static, Data.KdTree.Static, Data.KdMap.Dynamic, Data.KdTree.Dynamic, Data.Point2d -- other-modules: other-extensions: DeriveGeneric, TemplateHaskell ghc-options: -Wall -O3 ghc-prof-options: -Wall -O3 -fprof-auto build-depends: base >=4.6 && <4.8, deepseq >=1.3 && <1.4, QuickCheck >=2.7 && <2.8, pqueue >=1.2.1 && <1.3, deepseq-generics >=0.1.1.1 hs-source-dirs: lib-src default-language: Haskell2010 Test-Suite KdTreeTest type: exitcode-stdio-1.0 main-is: Tests/KdTreeTest.hs hs-source-dirs: app-src ghc-options: -Wall -O3 build-depends: base >=4.6 && <4.8, kdt -any default-language: Haskell2010 benchmark KDTBenchmark type: exitcode-stdio-1.0 main-is: Benchmarks/KDTBenchmark.hs hs-source-dirs: app-src ghc-options: -Wall -O3 ghc-prof-options: -Wall -O3 -fprof-auto "-with-rtsopts=-p" build-depends: base >=4.6 && <4.8, kdt -any, MonadRandom >= 0.1.12 && <0.2, mersenne-random-pure64 >=0.2.0.4 && <0.3, criterion >= 1.0.0.0 && <1.1, pqueue >=1.2.1 && <1.3 default-language: Haskell2010