hs-carbon-0.1.0.0: hs-carbon.cabal
name: hs-carbon
version: 0.1.0.0
synopsis: A Haskell framework for parallel monte carlo simulations
description:
Carbon is an open-source, Haskell framework aiming to provide easy access to
parallel Monte Carlo simulations by providing a simple, but powerful
compositional method for building simulations and high-level functions for
running them.
Examples can be found at https://github.com/icasperzen/hs-carbon-examples
license: MIT
license-file: LICENSE
author: Casper M. H. Holmgreen
maintainer: cholmgreen@gmail.com
-- copyright:
category: Simulation
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Control.Monad.MonteCarlo
, Data.Result
, Data.Summary
, Data.Summary.Bool
, Data.Summary.Double
-- other-modules:
build-depends:
base == 4.*, mtl, random, parallel, deepseq
hs-source-dirs: src
ghc-options: -Wall
Test-Suite tests
type: exitcode-stdio-1.0
main-is: Summary.hs
hs-source-dirs: spec
build-depends: base, HUnit, hs-carbon
ghc-options: -Wall
source-repository head
type: git
location: https://github.com/icasperzen/hs-carbon