ExponentialTime

open class ExponentialTime<T> : AbstractDistribution<T>

Markovian events.

Parameters

<T>

concentration type

Constructors

Link copied to clipboard
open fun ExponentialTime(markovianRate: Double, randomGenerator: RandomGenerator)
Link copied to clipboard
open fun ExponentialTime(markovianRate: Double, start: Time, randomGenerator: RandomGenerator)

Functions

Link copied to clipboard
open fun cloneOnNewNode(destination: Node<T>, currentTime: Time): ExponentialTime<T>
Must be overridden by subclasses returning the correct instance.
abstract fun cloneOnNewNode(p: Node<T>, p1: Time): TimeDistribution<T>
Link copied to clipboard
fun getNextOccurence(): Time
abstract fun getNextOccurence(): Time
Link copied to clipboard
abstract fun getRate(): Double
Link copied to clipboard
fun update(currentTime: Time, hasBeenExecuted: Boolean, additionalParameter: Double, environment: Environment<T, out Any>)
abstract fun update(p: Time, p1: Boolean, p2: Double, p3: Environment<T, out Any>)
Link copied to clipboard
fun updateStatus(currentTime: Time, executed: Boolean, newpropensity: Double, environment: Environment<T, out Any>)
Implement this method to update the distribution's internal status.

Properties

Link copied to clipboard
private val rate: Double

Inheritors

Link copied to clipboard