Package jline.solvers
Class LayeredSolverResult
-
- All Implemented Interfaces:
public class LayeredSolverResult extends SolverResult
Result container for layered queueing network solver analysis.
LayeredSolverResult extends the base SolverResult to include metrics specific to layered queueing networks (LQNs). In addition to standard performance metrics, it provides processor utilization and service time measurements essential for analyzing software system models with nested service requests.
LQN-specific metrics:
- Processor utilization for hardware resource modeling
- Service time breakdowns across software layers
- End-to-end response time analysis
- Resource bottleneck identification
- Since:
1.0
-
-
Field Summary
Fields Modifier and Type Field Description public Matrix
PN
public Matrix
SN
public String
method
public String
solver
public int
iter
public Matrix
QN
public Matrix
UN
public Matrix
RN
public Matrix
TN
public Matrix
AN
public Matrix
WN
public Matrix
CN
public Matrix
XN
public Array<Array<Matrix>>
QNt
public Array<Array<Matrix>>
RNt
public Array<Array<Matrix>>
UNt
public Array<Array<Matrix>>
TNt
public Array<Array<Matrix>>
XNt
public Array<Array<Matrix>>
CNt
public Matrix
t
public Matrix
pi_t
public Matrix
SS
public double
runtime
-
Constructor Summary
Constructors Constructor Description LayeredSolverResult()
-
Method Summary
Modifier and Type Method Description LayeredSolverResult
deepCopy()
Creates a deep copy of this layered solver result. -
-
Method Detail
-
deepCopy
LayeredSolverResult deepCopy()
Creates a deep copy of this layered solver result.
- Returns:
a new LayeredSolverResult with copied data
-
-
-
-