complexity-0.1.3: complexity.cabal
name: complexity
version: 0.1.3
cabal-version: >= 1.6
build-type: Simple
stability: experimental
author: Roel van Dijk
maintainer: vandijk.roel@gmail.com
copyright: (c) 2009 Roel van Dijk
license: BSD3
license-file: LICENSE
category: Testing
synopsis: Empirical algorithmic complexity
description:
Determine the complexity of functions by testing them on inputs of various sizes.
Extra-Source-Files: example.hs
library
GHC-Options: -O2 -Wall -fno-warn-name-shadowing
build-depends: base >= 2
, time >= 1.1.2
, parallel == 1.*
, transformers >= 0.1.4
, data-accessor >= 0.2
, pretty >= 1
, colour >= 2
, Chart >= 0.11 && < 0.12
, hstats >= 0.1 && <= 0.3
exposed-modules: Test.Complexity
, Test.Complexity.Base
, Test.Complexity.Chart
, Test.Complexity.Pretty
, Test.Complexity.Utils
other-modules: Test.Complexity.Misc
-- executable example
-- GHC-Options: -O2 -Wall -fno-warn-name-shadowing
-- build-depends: containers
-- main-is: example.hs