Package jline.solvers.des
Class DESResult
-
- All Implemented Interfaces:
public class DESResult extends SolverResult
- Since:
1.0
QORE Lab, Imperial College London
-
-
Field Summary
Fields Modifier and Type Field Description public Map<Integer, Matrix>tranSysStatepublic MatrixtranSyncpublic NetworkStructsnpublic Stringmethodpublic Stringsolverpublic intiterpublic MatrixQNpublic MatrixUNpublic MatrixRNpublic MatrixTNpublic MatrixANpublic MatrixWNpublic MatrixCNpublic MatrixXNpublic Array<Array<Matrix>>QNtpublic Array<Array<Matrix>>RNtpublic Array<Array<Matrix>>UNtpublic Array<Array<Matrix>>TNtpublic Array<Array<Matrix>>XNtpublic Array<Array<Matrix>>CNtpublic Matrixtpublic Matrixpi_tpublic MatrixSSpublic doubleruntime
-
Constructor Summary
Constructors Constructor Description DESResult()Constructs an empty DESResult to allow field population from different sources. DESResult(Matrix QN, Matrix UN, Matrix RN, Matrix TN, Matrix CN, Matrix XN, Map<Integer, Matrix> tranSysState, Matrix tranSync, NetworkStruct sn)Constructs a DESResult with the specified performance metrics and state information.
-
Method Summary
Modifier and Type Method Description -
-
Constructor Detail
-
DESResult
DESResult()
Constructs an empty DESResult to allow field population from different sources.
-
DESResult
DESResult(Matrix QN, Matrix UN, Matrix RN, Matrix TN, Matrix CN, Matrix XN, Map<Integer, Matrix> tranSysState, Matrix tranSync, NetworkStruct sn)
Constructs a DESResult 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
-
-
-
-