Name: monoid-statistics Version: 1.0.0 Cabal-Version: >= 1.10 License: BSD3 License-File: LICENSE Author: Alexey Khudyakov Maintainer: Alexey Khudyakov Homepage: https://github.com/Shimuuar/monoid-statistics Bug-reports: https://github.com/Shimuuar/monoid-statistics/issues Category: Statistics Build-Type: Simple Synopsis: Monoids for calculation of statistics of sample Description: Monoids for calculation of statistics of sample. This approach allows to calculate many statistics in one pass over data and possibility to parallelize calculations. However not all statistics could be calculated this way. extra-source-files: README.md source-repository head type: git location: https://github.com/Shimuuar/monoid-statistics Library default-language: Haskell2010 ghc-options: -Wall -O2 Build-Depends: base >=4.8 && <5 , vector >=0.11 && <1 , vector-th-unbox >=0.2.1.6 , math-functions >=0.2.1.0 Exposed-modules: Data.Monoid.Statistics Data.Monoid.Statistics.Class Data.Monoid.Statistics.Numeric test-suite tests default-language: Haskell2010 type: exitcode-stdio-1.0 ghc-options: -Wall -threaded -- Tests for math-functions' Sum require SSE2 on i686 to pass -- (because of excess precision) if arch(i386) ghc-options: -msse2 hs-source-dirs: tests main-is: Main.hs other-modules: build-depends: monoid-statistics , base >=4.8 && <5 , math-functions >=0.2.1 , tasty >=0.11 , tasty-quickcheck >=0.9 , QuickCheck