| Copyright | Copyright (c) 2012-2015, David Sorokin <david.sorokin@gmail.com> |
|---|---|
| License | BSD3 |
| Maintainer | David Sorokin <david.sorokin@gmail.com> |
| Stability | experimental |
| Safe Haskell | None |
| Language | Haskell98 |
Simulation.Aivika.Experiment.FileRenderer
Description
Tested with: GHC 7.8.3
It defines a renderer that saves the results in files when running the simulation experiment.
- data FileRenderer a = FileRenderer a
- type FileGenerator a = ExperimentGenerator (FileRenderer a)
Documentation
data FileRenderer a Source
It defines a simulation Experiment renderer that saves the results in files.
Constructors
| FileRenderer a | A file renderer that depends on the provided parameter. |
Instances
| ExperimentView TableView (FileRenderer a) | |
| ExperimentView FinalTableView (FileRenderer a) | |
| ExperimentRendering (FileRenderer a) | Saving the results of simulation in files when running the experiment. |
| data ExperimentContext (FileRenderer a) = FileContext |
type FileGenerator a = ExperimentGenerator (FileRenderer a) Source
A convenient type synonym for describing a file generator.