Package-level declarations
Types
Processes the ConditionalActions to check if their testCondition() is true, if so the action is executed. All actions are checked until no action's testCondition() is true To prevent conditional cycling the number of rescans is limited to DEFAULT_MAX_SCANS, which can be changed by the user or turned off via setMaxScanFlag()
This class provides the information for running a simulation experiment. An experiment is a specification for the number of replications, the warm-up length, replication length, etc. for controlling the running of a simulation.
This class represents a simulated event. It allows for the simulation of durations of simulated time. These events are placed on the Executive and ordered by time, priority, and order of creation.
A class implementing the ModelProviderIfc interface to manage and provide models based on unique identifiers. It uses a mutable map to store model builders, where each builder is responsible for instantiating a specific model.
An interface representing a builder for creating Model instances.
This interface defines a function that can be called when the model is being set up, prior to the execution of any replications. The intention is to allow the modeler to specify via the configuration map specifications for configuring the model for the experiments. A KSL model has two methods for providing input variations, ksl.controls.Controls and ksl.utilities.random.rvariable.parameters.RVParameterSetter. This interface provides a third more general method. The map can hold information that the specific implementor of the interface can use to adjust, change, update, or configure the model in the way necessary to prepare it before executing the simulation experiments. The general idea is that the key indicates what will be done or changed and the associated value can be used to make the change. For example, a key could be a model element name and the value could be a JSON string that can be deserialized to required inputs for the change.
A type alias for a function that creates and returns an instance of the Model
class.
An interface that promises to provide a model instance based on some identifier for the model.
This class facilitates simulation output reporting. There are two main reporting functions: within replication statistics and across replication statistics. The class automatically reports within replication and across replication statistics to comma separated value files by attaching observers to the model. If you do not want this automated output, then you should use the appropriate turnOffXXX methods.
When added to a Model, this class will cause batch statistics to be collected for Response and TWResponse variables. It uses the TWBatchingElement and the ResponseBatchingElement to perform this functionality.