aivika-transformers-4.3.3: Transformers for the Aivika simulation library

CopyrightCopyright (c) 2009-2015, David Sorokin <david.sorokin@gmail.com>
LicenseBSD3
MaintainerDavid Sorokin <david.sorokin@gmail.com>
Stabilityexperimental
Safe HaskellSafe
LanguageHaskell2010

Simulation.Aivika.Trans.Parameter

Contents

Description

Tested with: GHC 7.10.1

The module defines the Parameter monad transformer that allows representing the model parameters. For example, they can be used when running the Monte-Carlo simulation.

In general, this monad tranformer is very useful for representing a computation which is external relative to the model itself.

Synopsis

Parameter

data Parameter m a Source

The Parameter monad that allows specifying the model parameters. For example, they can be used when running the Monte-Carlo simulation.

In general, this monad is very useful for representing a computation which is external relative to the model itself.

class ParameterLift t m where Source

A type class to lift the parameters into other computations.

Methods

liftParameter :: Parameter m a -> t m a Source

Lift the specified Parameter computation into another computation.

runParameter :: MonadDES m => Parameter m a -> Specs m -> m a Source

Run the parameter using the specified specs.

runParameters :: MonadDES m => Parameter m a -> Specs m -> Int -> [m a] Source

Run the given number of parameters using the specified specs, where each parameter is distinguished by its index parameterIndex.

Error Handling

catchParameter :: (MonadException m, Exception e) => Parameter m a -> (e -> Parameter m a) -> Parameter m a Source

Exception handling within Parameter computations.

finallyParameter :: MonadException m => Parameter m a -> Parameter m b -> Parameter m a Source

A computation with finalization part like the finally function.

throwParameter :: (MonadException m, Exception e) => e -> Parameter m a Source

Like the standard throw function.

Predefined Parameters

simulationIndex :: Monad m => Parameter m Int Source

Return the run index for the current simulation.

simulationCount :: Monad m => Parameter m Int Source

Return the number of simulations currently run.

simulationSpecs :: Monad m => Parameter m (Specs m) Source

Return the simulation specs.

generatorParameter :: Monad m => Parameter m (Generator m) Source

Return the random number generator for the simulation run.

starttime :: Monad m => Parameter m Double Source

Computation that returns the start simulation time.

stoptime :: Monad m => Parameter m Double Source

Computation that returns the final simulation time.

dt :: Monad m => Parameter m Double Source

Computation that returns the integration time step.

Memoization

memoParameter :: Parameter IO a -> IO (Parameter IO a) Source

Memoize the Parameter computation, always returning the same value within a simulation run. However, the value will be recalculated for other simulation runs. Also it is thread-safe when different simulation runs are executed in parallel on physically different operating system threads.

Utilities

tableParameter :: Monad m => Array Int a -> Parameter m a Source

Return a parameter which value is taken consequently from the specified table based on the run index of the current simulation starting from zero. After all values from the table are used, it takes again the first value of the table, then the second one and so on.