Copyright | Copyright (c) 2009-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
The module allows printing and converting the Simulation
Results
to a String
.
Synopsis
- type ResultSourcePrint m = ResultSource m -> Event m ()
- type ResultSourceShowS m = ResultSource m -> Event m ShowS
- printResultsWithTime :: (MonadDES m, MonadIO (Event m)) => ResultSourcePrint m -> Results m -> Event m ()
- printResultsInStartTime :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Results m -> Simulation m ()
- printResultsInStopTime :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Results m -> Simulation m ()
- printResultsInIntegTimes :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Results m -> Simulation m ()
- printResultsInTime :: (MonadDES m, EventIOQueueing m) => Double -> ResultSourcePrint m -> Results m -> Simulation m ()
- printResultsInTimes :: (MonadDES m, EventIOQueueing m) => [Double] -> ResultSourcePrint m -> Results m -> Simulation m ()
- printSimulationResultsInStartTime :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m ()
- printSimulationResultsInStopTime :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m ()
- printSimulationResultsInIntegTimes :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m ()
- printSimulationResultsInTime :: (MonadDES m, EventIOQueueing m) => Double -> ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m ()
- printSimulationResultsInTimes :: (MonadDES m, EventIOQueueing m) => [Double] -> ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m ()
- showResultsWithTime :: MonadDES m => ResultSourceShowS m -> Results m -> Event m ShowS
- showResultsInStartTime :: MonadDES m => ResultSourceShowS m -> Results m -> Simulation m ShowS
- showResultsInStopTime :: MonadDES m => ResultSourceShowS m -> Results m -> Simulation m ShowS
- showResultsInIntegTimes :: MonadDES m => ResultSourceShowS m -> Results m -> Simulation m ShowS
- showResultsInTime :: MonadDES m => Double -> ResultSourceShowS m -> Results m -> Simulation m ShowS
- showResultsInTimes :: MonadDES m => [Double] -> ResultSourceShowS m -> Results m -> Simulation m ShowS
- showSimulationResultsInStartTime :: MonadDES m => ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS
- showSimulationResultsInStopTime :: MonadDES m => ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS
- showSimulationResultsInIntegTimes :: MonadDES m => ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS
- showSimulationResultsInTime :: MonadDES m => Double -> ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS
- showSimulationResultsInTimes :: MonadDES m => [Double] -> ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS
- hPrintResultSourceIndented :: (MonadDES m, MonadIO (Event m)) => Handle -> Int -> ResultLocalisation -> ResultSourcePrint m
- hPrintResultSource :: (MonadDES m, MonadIO (Event m)) => Handle -> ResultLocalisation -> ResultSourcePrint m
- hPrintResultSourceInRussian :: (MonadDES m, MonadIO (Event m)) => Handle -> ResultSourcePrint m
- hPrintResultSourceInEnglish :: (MonadDES m, MonadIO (Event m)) => Handle -> ResultSourcePrint m
- printResultSourceIndented :: (MonadDES m, MonadIO (Event m)) => Int -> ResultLocalisation -> ResultSourcePrint m
- printResultSource :: (MonadDES m, MonadIO (Event m)) => ResultLocalisation -> ResultSourcePrint m
- printResultSourceInRussian :: (MonadDES m, MonadIO (Event m)) => ResultSourcePrint m
- printResultSourceInEnglish :: (MonadDES m, MonadIO (Event m)) => ResultSourcePrint m
- hEnqueuePrintingResultSourceIndented :: (MonadDES m, EventIOQueueing m) => Handle -> Int -> ResultLocalisation -> ResultSourcePrint m
- hEnqueuePrintingResultSource :: (MonadDES m, EventIOQueueing m) => Handle -> ResultLocalisation -> ResultSourcePrint m
- hEnqueuePrintingResultSourceInRussian :: (MonadDES m, EventIOQueueing m) => Handle -> ResultSourcePrint m
- hEnqueuePrintingResultSourceInEnglish :: (MonadDES m, EventIOQueueing m) => Handle -> ResultSourcePrint m
- enqueuePrintingResultSourceIndented :: (MonadDES m, EventIOQueueing m) => Int -> ResultLocalisation -> ResultSourcePrint m
- enqueuePrintingResultSource :: (MonadDES m, EventIOQueueing m) => ResultLocalisation -> ResultSourcePrint m
- enqueuePrintingResultSourceInRussian :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m
- enqueuePrintingResultSourceInEnglish :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m
- showResultSourceIndented :: MonadDES m => Int -> ResultLocalisation -> ResultSourceShowS m
- showResultSource :: MonadDES m => ResultLocalisation -> ResultSourceShowS m
- showResultSourceInRussian :: MonadDES m => ResultSourceShowS m
- showResultSourceInEnglish :: MonadDES m => ResultSourceShowS m
Basic Types
type ResultSourcePrint m = ResultSource m -> Event m () Source #
This is a function that prints the simulation results within
the Event
computation synchronized with the event queue.
type ResultSourceShowS m = ResultSource m -> Event m ShowS Source #
This is a function that shows the simulation results within
the Event
computation synchronized with the event queue.
Printing the Results
printResultsWithTime :: (MonadDES m, MonadIO (Event m)) => ResultSourcePrint m -> Results m -> Event m () Source #
Print the results with the information about the modeling time.
printResultsInStartTime :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Results m -> Simulation m () Source #
Print the simulation results in start time.
printResultsInStopTime :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Results m -> Simulation m () Source #
Print the simulation results in stop time.
printResultsInIntegTimes :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Results m -> Simulation m () Source #
Print the simulation results in the integration time points.
printResultsInTime :: (MonadDES m, EventIOQueueing m) => Double -> ResultSourcePrint m -> Results m -> Simulation m () Source #
Print the simulation results in the specified time.
printResultsInTimes :: (MonadDES m, EventIOQueueing m) => [Double] -> ResultSourcePrint m -> Results m -> Simulation m () Source #
Print the simulation results in the specified time points.
Simulating and Printing the Results
printSimulationResultsInStartTime :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m () Source #
Run the simulation and then print the results in the start time.
printSimulationResultsInStopTime :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m () Source #
Run the simulation and then print the results in the final time.
printSimulationResultsInIntegTimes :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m () Source #
Run the simulation and then print the results in the integration time points.
printSimulationResultsInTime :: (MonadDES m, EventIOQueueing m) => Double -> ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m () Source #
Run the simulation and then print the results in the specified time point.
printSimulationResultsInTimes :: (MonadDES m, EventIOQueueing m) => [Double] -> ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m () Source #
Run the simulation and then print the results in the specified time points.
Showing the Results
showResultsWithTime :: MonadDES m => ResultSourceShowS m -> Results m -> Event m ShowS Source #
Show the results with the information about the modeling time.
showResultsInStartTime :: MonadDES m => ResultSourceShowS m -> Results m -> Simulation m ShowS Source #
Show the simulation results in start time.
showResultsInStopTime :: MonadDES m => ResultSourceShowS m -> Results m -> Simulation m ShowS Source #
Show the simulation results in stop time.
showResultsInIntegTimes :: MonadDES m => ResultSourceShowS m -> Results m -> Simulation m ShowS Source #
Show the simulation results in the integration time points.
It may consume much memory, for we have to traverse all the integration
points to create the resulting function within the Simulation
computation.
showResultsInTime :: MonadDES m => Double -> ResultSourceShowS m -> Results m -> Simulation m ShowS Source #
Show the simulation results in the specified time point.
showResultsInTimes :: MonadDES m => [Double] -> ResultSourceShowS m -> Results m -> Simulation m ShowS Source #
Show the simulation results in the specified time points.
It may consume much memory, for we have to traverse all the specified
points to create the resulting function within the Simulation
computation.
Simulating and Showing the Results
showSimulationResultsInStartTime :: MonadDES m => ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS Source #
Run the simulation and then show the results in the start time.
showSimulationResultsInStopTime :: MonadDES m => ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS Source #
Run the simulation and then show the results in the final time.
showSimulationResultsInIntegTimes :: MonadDES m => ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS Source #
Run the simulation and then show the results in the integration time points.
It may consume much memory, for we have to traverse all the integration
points to create the resulting function within the IO
computation.
showSimulationResultsInTime :: MonadDES m => Double -> ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS Source #
Run the simulation and then show the results in the integration time point.
showSimulationResultsInTimes :: MonadDES m => [Double] -> ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS Source #
Run the simulation and then show the results in the specified time points.
It may consume much memory, for we have to traverse all the specified
points to create the resulting function within the IO
computation.
Printing the Result Source
hPrintResultSourceIndented Source #
:: (MonadDES m, MonadIO (Event m)) | |
=> Handle | a handle |
-> Int | an indent |
-> ResultLocalisation | a localisation |
-> ResultSourcePrint m |
Print a localised text representation of the results by the specified source and with the given indent.
:: (MonadDES m, MonadIO (Event m)) | |
=> Handle | a handle |
-> ResultLocalisation | a localisation |
-> ResultSourcePrint m |
Print a localised text representation of the results by the specified source.
hPrintResultSourceInRussian :: (MonadDES m, MonadIO (Event m)) => Handle -> ResultSourcePrint m Source #
Print in Russian a text representation of the results by the specified source.
hPrintResultSourceInEnglish :: (MonadDES m, MonadIO (Event m)) => Handle -> ResultSourcePrint m Source #
Print in English a text representation of the results by the specified source.
printResultSourceIndented Source #
:: (MonadDES m, MonadIO (Event m)) | |
=> Int | an indent |
-> ResultLocalisation | a localisation |
-> ResultSourcePrint m |
Print a localised text representation of the results by the specified source and with the given indent.
:: (MonadDES m, MonadIO (Event m)) | |
=> ResultLocalisation | a localisation |
-> ResultSourcePrint m |
Print a localised text representation of the results by the specified source.
printResultSourceInRussian :: (MonadDES m, MonadIO (Event m)) => ResultSourcePrint m Source #
Print in Russian a text representation of the results by the specified source.
printResultSourceInEnglish :: (MonadDES m, MonadIO (Event m)) => ResultSourcePrint m Source #
Print in English a text representation of the results by the specified source.
Enqueue Printing of the Result Source
hEnqueuePrintingResultSourceIndented Source #
:: (MonadDES m, EventIOQueueing m) | |
=> Handle | a handle |
-> Int | an indent |
-> ResultLocalisation | a localisation |
-> ResultSourcePrint m |
Enqueue printing of a localised text representation of the results by the specified source and with the given indent.
hEnqueuePrintingResultSource Source #
:: (MonadDES m, EventIOQueueing m) | |
=> Handle | a handle |
-> ResultLocalisation | a localisation |
-> ResultSourcePrint m |
Enqueue printing of a localised text representation of the results by the specified source.
hEnqueuePrintingResultSourceInRussian :: (MonadDES m, EventIOQueueing m) => Handle -> ResultSourcePrint m Source #
Enqueue printing in Russian of a text representation of the results by the specified source.
hEnqueuePrintingResultSourceInEnglish :: (MonadDES m, EventIOQueueing m) => Handle -> ResultSourcePrint m Source #
Enqueue printing in English of a text representation of the results by the specified source.
enqueuePrintingResultSourceIndented Source #
:: (MonadDES m, EventIOQueueing m) | |
=> Int | an indent |
-> ResultLocalisation | a localisation |
-> ResultSourcePrint m |
Enqueue printing of a localised text representation of the results by the specified source and with the given indent.
enqueuePrintingResultSource Source #
:: (MonadDES m, EventIOQueueing m) | |
=> ResultLocalisation | a localisation |
-> ResultSourcePrint m |
Enqueue printing of a localised text representation of the results by the specified source.
enqueuePrintingResultSourceInRussian :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m Source #
Enqueue printing in Russian of a text representation of the results by the specified source.
enqueuePrintingResultSourceInEnglish :: (MonadDES m, EventIOQueueing m) => ResultSourcePrint m Source #
Enqueue printing in English of a text representation of the results by the specified source.
Showing the Result Source
showResultSourceIndented Source #
:: MonadDES m | |
=> Int | an indent |
-> ResultLocalisation | a localisation |
-> ResultSourceShowS m |
Show a localised text representation of the results by the specified source and with the given indent.
:: MonadDES m | |
=> ResultLocalisation | a localisation |
-> ResultSourceShowS m |
Show a localised text representation of the results by the specified source.
showResultSourceInRussian :: MonadDES m => ResultSourceShowS m Source #
Show in Russian a text representation of the results by the specified source.
showResultSourceInEnglish :: MonadDES m => ResultSourceShowS m Source #
Show in English a text representation of the results by the specified source.