name:            aivika-lattice
version:         0.3
synopsis:        Nested discrete event simulation module for the Aivika library using lattice
description:
    This experimental package extends the aivika-transformers [1] library and allows 
    running nested discrete event simulations within lattice nodes, where
    traversing the nodes of branching has a quadratic complexity.
    .
    \[1] <http://hackage.haskell.org/package/aivika-transformers>
    .
category:        Simulation
license:         BSD3
license-file:    LICENSE
copyright:       (c) 2016-2017. David Sorokin <david.sorokin@gmail.com>
author:          David Sorokin
maintainer:      David Sorokin <david.sorokin@gmail.com>
homepage:        http://www.aivikasoft.com
cabal-version:   >= 1.6
build-type:      Simple
tested-with:     GHC == 7.10.3

extra-source-files:  CHANGELOG.md
                     tests/MachRep1.hs
                     tests/TraversingLattice1.hs
                     tests/TraversingLattice2.hs
                     tests/TraversingLattice3.hs
                     tests/TraversingLattice4.hs
                     tests/TraversingMachRep1.hs
                     tests/EstimatingMachRep1.hs

library

    exposed-modules: Simulation.Aivika.Lattice
                     Simulation.Aivika.Lattice.Estimate
                     Simulation.Aivika.Lattice.Event
                     Simulation.Aivika.Lattice.Generator
                     Simulation.Aivika.Lattice.LIO
                     Simulation.Aivika.Lattice.QueueStrategy
                     Simulation.Aivika.Lattice.Ref.Base
                     Simulation.Aivika.Lattice.Ref.Base.Lazy
                     Simulation.Aivika.Lattice.Ref.Base.Strict

    other-modules:   Simulation.Aivika.Lattice.Internal.Event
                     Simulation.Aivika.Lattice.Internal.Estimate
                     Simulation.Aivika.Lattice.Internal.LIO
                     Simulation.Aivika.Lattice.Internal.Ref
                     Simulation.Aivika.Lattice.Internal.Ref.Lazy
                     Simulation.Aivika.Lattice.Internal.Ref.Strict

    build-depends:   base >= 3 && < 6,
                     mtl >= 2.1.1,
                     containers >= 0.4.0.0,
                     random >= 1.0.0.3,
                     mwc-random >= 0.13.0.0,
                     aivika >= 5.2,
                     aivika-transformers >= 5.2

    extensions:      TypeFamilies,
                     MultiParamTypeClasses,
                     FlexibleInstances,
                     BangPatterns

    ghc-options:     -O2

source-repository head

    type:     git
    location: https://github.com/dsorokin/aivika-lattice