TimeDistribution

interface TimeDistribution<T> : Cloneable, Serializable

This interface represents a temporal distribution for any event.

Parameters

<T>

concentration type

Functions

Link copied to clipboard
abstract fun cloneOnNewNode(destination: Node<T>, currentTime: Time): TimeDistribution<T>
Link copied to clipboard
abstract fun getNextOccurence(): Time
Link copied to clipboard
abstract fun getRate(): Double
Link copied to clipboard
abstract fun update(    currentTime: Time,     executed: Boolean,     param: Double,     environment: Environment<T, out Any>)
Updates the internal status.