Package jline.solvers.ldes
Class LDESResult
-
- All Implemented Interfaces:
public class LDESResult extends SolverResult
- Since:
1.0
QORE Lab, Imperial College London
-
-
Field Summary
-
Constructor Summary
Constructors Constructor Description LDESResult()Constructs an empty LDESResult to allow field population from different sources. LDESResult(Matrix QN, Matrix UN, Matrix RN, Matrix TN, Matrix CN, Matrix XN, Map<Integer, Matrix> tranSysState, Matrix tranSync, NetworkStruct sn)Constructs a LDESResult with the specified performance metrics and state information.
-
Method Summary
Modifier and Type Method Description voidinitRespTimeSamples(int nStations, int nClasses)Initializes the respTimeSamples array with empty lists for each (station, class) pair. -
-
Constructor Detail
-
LDESResult
LDESResult()
Constructs an empty LDESResult to allow field population from different sources.
-
LDESResult
LDESResult(Matrix QN, Matrix UN, Matrix RN, Matrix TN, Matrix CN, Matrix XN, Map<Integer, Matrix> tranSysState, Matrix tranSync, NetworkStruct sn)
Constructs a LDESResult with the specified performance metrics and state information.- Parameters:
QN- queue lengths [stations x classes]UN- utilizations [stations x classes]RN- response times [stations x classes]TN- throughputs [stations x classes]CN- visit counts [stations x classes]XN- arrival rates [stations x classes]tranSysState- transient system states indexed by timetranSync- transient synchronization matrixsn- network structure information
-
-
Method Detail
-
initRespTimeSamples
void initRespTimeSamples(int nStations, int nClasses)
Initializes the respTimeSamples array with empty lists for each (station, class) pair.
- Parameters:
nStations- number of stationsnClasses- number of classes
-
-
-
-