Package jline.solvers.fluid.analyzers
Class CacheTranResult
java.lang.Object
jline.solvers.fluid.analyzers.CacheTranResult
Transient refined-mean-field cache trajectory for a network, produced by
FluidCacheTran. Java analog of the outputs of the MATLAB
solver_fld_cacheqn_tran.m.-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal double[][]Per-cache per-class arrival rate (ncaches x K).final int[]Cache node indices (rows ordered as found by nodetype==Cache).final double[][][]Per-cache per-class hit-probability trajectory (ncaches x K x nt).final double[][][]Per-cache per-class miss-probability trajectory (ncaches x K x nt).final double[]Shared time grid (nt,).final double[][][]Per-cache full DDPP occupancy trajectory (ncaches x dim x nt). -
Constructor Summary
ConstructorsConstructorDescriptionCacheTranResult(double[] t, int[] caches, double[][][] hitprob, double[][][] missprob, double[][] arate, double[][][] xocc) -
Method Summary
-
Field Details
-
t
public final double[] tShared time grid (nt,). -
caches
public final int[] cachesCache node indices (rows ordered as found by nodetype==Cache). -
hitprob
public final double[][][] hitprobPer-cache per-class hit-probability trajectory (ncaches x K x nt). -
missprob
public final double[][][] missprobPer-cache per-class miss-probability trajectory (ncaches x K x nt). -
arate
public final double[][] aratePer-cache per-class arrival rate (ncaches x K). -
xocc
public final double[][][] xoccPer-cache full DDPP occupancy trajectory (ncaches x dim x nt).
-
-
Constructor Details
-
CacheTranResult
public CacheTranResult(double[] t, int[] caches, double[][][] hitprob, double[][][] missprob, double[][] arate, double[][][] xocc)
-