Interface SimCondition
-
- Type Parameters:
M- the type of the simulation model
public interface SimConditionA condition which is continuously checked over the course of a simulation run. Whenever the condition is satisfied, thecheckmethod performs a specific action, such as stopping the simulation run, for example.A common use of this class is the implementation of a stop condition, which causes the simulation run to stop whenever the
checkmethod evaluates totrue.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancheck()Checks whether this condition is satisfied.
-