kmeans-par-1.0.2: kmeans-par.cabal
name: kmeans-par
version: 1.0.2
synopsis: Sequential and parallel implementations of Lloyd's algorithm.
license: MIT
license-file: LICENSE
author: vi
maintainer: me@vikramverma.com
category: Algorithm
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Algorithms.Lloyd.Sequential,
Algorithms.Lloyd.Strategies
build-depends: base == 2.*, vector, semigroups, parallel, split
hs-source-dirs: src
ghc-options: -threaded
default-language: Haskell2010
benchmark kmeans-benchmark
type: exitcode-stdio-1.0
main-is: Main.lhs
hs-source-dirs: benchmark
build-depends: base == 2.*, random, criterion, normaldistribution, kmeans-par, deepseq, vector
ghc-options: -threaded
default-language: Haskell2010