Run one or more SyncroSim scenarios.
run(
ssimObject,
scenario = NULL,
summary = FALSE,
jobs = 1,
transformerName = NULL,
forceElements = FALSE
)# S4 method for character
run(
ssimObject,
scenario = NULL,
summary = FALSE,
jobs = 1,
transformerName = NULL,
forceElements = FALSE
)
# S4 method for list
run(
ssimObject,
scenario = NULL,
summary = FALSE,
jobs = 1,
transformerName = NULL,
forceElements = FALSE
)
# S4 method for SsimObject
run(
ssimObject,
scenario = NULL,
summary = FALSE,
jobs = 1,
transformerName = NULL,
forceElements = FALSE
)
# S4 method for BreakpointSession
run(ssimObject, scenario, summary, jobs, forceElements)
SsimLibrary/Project/Scenario or a list of Scenarios. Or the path to a library on disk.
Character, integer, or vector of these. Scenario names or ids. Or NULL. Note that integer ids are slightly faster.
Logical. If FALSE (default) result Scenario objects are returned. If TRUE (faster) result scenario ids are returned.
Integer. The number of jobs to run. Passed to SyncroSim where multithreading is handled.
Character. The name of the transformer to run.
Logical. If TRUE then returns a single result scenario as a named list; otherwise returns a single result scenario as a Scenario object. Applies only when summary=FALSE.
If summary = FALSE
, returns a result Scenario object or a named list of result Scenarios.
The name is the parent scenario for each result. If summary = TRUE
, returns summary info
for result scenarios.
Note that breakpoints are ignored unless ssimObject is a single scenario.