packages feed

aivika-experiment-0.1: aivika-experiment.cabal

name:            aivika-experiment
version:         0.1
synopsis:        Simulation experiments for the Aivika library
description:
    This package allows defining simulation experiments for the Aivika
    package. Such experiments define in declarative manner what should be
    simulated and in which view the simulation results should be 
    generated. It can be charts, tables and so on.
    .
    The library is extensible and you can add new views for the results.
    .
category:        Simulation
license:         BSD3
license-file:    LICENSE
copyright:       (c) 2012. David Sorokin <david.sorokin@gmail.com>
author:          David Sorokin
maintainer:      David Sorokin <david.sorokin@gmail.com>
homepage:        http://github.com/dsorokin/aivika-experiment
cabal-version:   >= 1.2.0
build-type:      Simple
tested-with:     GHC == 7.4.1

extra-source-files:  examples/MachRep3.hs

library

    exposed-modules: Simulation.Aivika.Experiment
                     Simulation.Aivika.Experiment.HtmlWriter
                     Simulation.Aivika.Experiment.LastValueView
                     Simulation.Aivika.Experiment.TableView
                     Simulation.Aivika.Experiment.Utils
                     
    build-depends:   base >= 3 && < 6,
                     mtl >= 1.1.0.2,
                     array >= 0.3.0.0,
                     containers >= 0.4.0.0,
                     directory >= 1.1.0.2,
                     filepath >= 1.3.0.0,
                     MissingH >= 1.2.0.0,
                     network >= 2.4.0.1,
                     aivika >= 0.4.3

    extensions:      FlexibleInstances
                     
    ghc-options:     -O2