deleteBreakpoint {rsyncrosim} | R Documentation |
Delete a Scenario breakpoint
Description
This function will delete a Scenario
breakpoint.
Usage
deleteBreakpoint(x, transformerName = NULL, breakpointType = NULL)
## S4 method for signature 'Scenario'
deleteBreakpoint(x, transformerName = NULL, breakpointType = NULL)
Arguments
x |
|
transformerName |
character. A Stochastic Time Transformer e.g. "stsim_Runtime" (optional) |
breakpointType |
character. Options include "bi" (before iteration), "ai" (after iteration), "bt" (before timestep), or "at" (after timestep) (optional) |
Value
A SyncroSim Scenario with an updated list of breakpoints.
See Also
Examples
## Not run:
# Create callback function
callbackFunction <- function(x, iteration, timestep) {
print(paste0("Breakpoint hit: ", scenarioId(x)))
}
# Install helloworldSpatial package
addPackage("helloworldSpatial")
# Set SsimLibrary name
myLibraryName <- file.path(tempdir(),"testlib")
# Set Session and SsimLibrary
mySession <- session()
myLibrary <- ssimLibrary(name = myLibraryName,
session = mySession,
package = "helloworldSpatial")
myScenario <- scenario(myLibrary, "My Scenario")
# Add breakpoints before the 1st and 2nd iterations
myScenario <- addBreakpoint(x= myScenario,
transformerName= "helloworldSpatial_Primary",
breakpointType = "bi",
arguments = c(1,2),
callback = callbackFunction)
# Check that the breakpoints were added
breakpoint(myScenario)
# Delete breakpoints
myScenario <- deleteBreakpoint(myScenario)
# Check that breakpoints were deleted
breakpoint(myScenario)
## End(Not run)
[Package rsyncrosim version 1.5.0 Index]