name: burst-detection
version: 1.0
synopsis: Burst detection algorithms
description: Library implements burst detection algorithms that follows
.
Zhang, X. (2006). Fast Algorithms for Burst Detection. Thesis. New York University.
homepage: http://parsci.com/
license: GPL-2
license-file: LICENSE
author: serguey.zefirov@parsci.com
maintainer: alexander.vershilov@parsci.com
copyright: (c) 2013 Parallel Scientific Labs, LLC
category: Math
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/ps-labs/burst-detection.git
library
exposed-modules: Math.Bursts
build-depends: base >=4.6 && <4.7,
deepseq >=1.3 && <1.4
ghc-options: -O2
hs-source-dirs: src
default-language: Haskell2010
test-suite simple-tests
build-depends: base >=4.6 && <4.7,
burst-detection
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: tests
default-language: Haskell2010
benchmark c-bench
build-depends: base >= 4.6 && <4.7,
criterion >= 0.8 && <0.9,
burst-detection
type: exitcode-stdio-1.0
ghc-options: -O2
main-is: Main.hs
hs-source-dirs: benchmark
default-language: Haskell2010