Package jline.api.aoi
Class AoiParams
-
- All Implemented Interfaces:
public final class AoiParamsExtracted parameters for AoI analysis.
For bufferless systems (capacity=1): tau, T define the PH arrival process sigma, S define the PH service process p is the preemption probability
For single-buffer systems (capacity=2): lambda is the Poisson arrival rate sigma, S define the PH service process r is the replacement probability
-
-
Method Summary
Modifier and Type Method Description final MatrixgetTau()Arrival initial probability vector (bufferless only) final MatrixgetT()Arrival sub-generator matrix (bufferless only) final MatrixgetSigma()Service initial probability vector final MatrixgetS()Service sub-generator matrix final DoublegetP()Preemption probability, 0=FCFS, 1=preemptive (bufferless only) final DoublegetLambda()Arrival rate (single-buffer only) final DoublegetR()Replacement probability, 0=FCFS, 1=replacement (single-buffer only) final StringgetSystemType()"bufferless" or "singlebuffer" final StringgetArrivalType()"PH" or "M" -
-
Method Detail
-
getSystemType
final String getSystemType()
"bufferless" or "singlebuffer"
-
getArrivalType
final String getArrivalType()
"PH" or "M"
-
-
-
-