Copyright | Copyright (c) 2012-2017 David Sorokin <david.sorokin@gmail.com> |
---|---|
License | BSD3 |
Maintainer | David Sorokin <david.sorokin@gmail.com> |
Stability | experimental |
Safe Haskell | None |
Language | Haskell98 |
Tested with: GHC 8.0.1
It defines a renderer that saves the results in files when running the simulation experiment.
- 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. |
ExperimentView FinalTableView (FileRenderer a) Source # | |
ExperimentView TableView (FileRenderer a) Source # | |
ExperimentRendering (FileRenderer a) Source # | Saving the results of simulation in files when running the experiment. |
data ExperimentContext (FileRenderer a) Source # | |
type ExperimentEnvironment (FileRenderer a) Source # | |
type ExperimentMonad (FileRenderer a) Source # | |
type FileGenerator a = ExperimentGenerator (FileRenderer a) Source #
A convenient type synonym for describing a file generator.