packages feed

spaceprobe-0.3.0: spaceprobe.cabal

name:            spaceprobe
version:         0.3.0
license:         BSD3
license-file:    LICENSE
category:        Optimization
author:          Sean Burton <burton.seanr@gmail.com> 
maintainer:      Sean Burton <burton.seanr@gmail.com>
stability:       experimental
tested-with:     GHC == 7.6
synopsis:        Optimization over arbitrary search spaces 
cabal-version:   >= 1.8
homepage:        https://github.com/SeanRBurton/spaceprobe
bug-reports:     https://github.com/SeanRBurton/spaceprobe/issues
build-type:      Simple
description:
    A parameter optimization library, designed for optimizing over 
    arbitrary search spaces. It is particularly well suited for discontinuous
    and/or high-dimensional search spaces.
extra-source-files:
    README.markdown
    benchmarks/*.hs
    tests/*.hs

library
  build-depends: base >=2 && <5,
                 containers -any,
                 clock >=0.4.2.0,
                 erf >=2.0.0.0,
                 mtl >=2.0.1.1
  exposed-modules: Control.SpaceProbe
                   Control.SpaceProbe.Internal.Probe
                   Control.SpaceProbe.Internal.Optimize
  ghc-options: -O3 -funbox-strict-fields -fllvm -Wall

test-suite tests
  type:           exitcode-stdio-1.0
  hs-source-dirs: tests .
  main-is:        Tests.hs

  ghc-options:
    -Wall

  build-depends:
    base >=2 && <5,
    QuickCheck >=1.0,
    test-framework >=0.1,
    test-framework-quickcheck2 >=0.2.1,
    clock >=0.4.2.0,
    erf >=2.0.0.0,
    containers -any,
    mtl >=2.0.1.1

benchmark benchmarks
  type: exitcode-stdio-1.0
  hs-source-dirs: benchmarks
  main-is: Benchmarks.hs

  ghc-options: -O2 -Wall

  build-depends:
    base >=2 && <5,
    criterion >=0.1,
    spaceprobe >=0.0.0

  
source-repository head
  type:     git
  location: https://github.com/SeanRBurton/spaceprobe