Copyright | Copyright (c) 2012-2017 David Sorokin <david.sorokin@gmail.com> |
---|---|
License | BSD3 |
Maintainer | David Sorokin <david.sorokin@gmail.com> |
Stability | experimental |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Tested with: GHC 8.0.1
It defines a renderer that saves the results in files when running the simulation experiment.
Synopsis
- data FileRenderer a = FileRenderer a ExperimentFilePath
- type FileGenerator a = ExperimentGenerator (FileRenderer a)
Documentation
data FileRenderer a Source #
It defines a simulation Experiment
renderer that saves the results in files.
FileRenderer a ExperimentFilePath | A file renderer that depends on the provided parameter and a directory path, where the simulation results are saved in. |
Instances
type FileGenerator a = ExperimentGenerator (FileRenderer a) Source #
A convenient type synonym for describing a file generator.