Class CacheTranResult

java.lang.Object
jline.solvers.fluid.analyzers.CacheTranResult

public final class CacheTranResult extends Object
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

    Fields
    Modifier and Type
    Field
    Description
    final 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

    Constructors
    Constructor
    Description
    CacheTranResult(double[] t, int[] caches, double[][][] hitprob, double[][][] missprob, double[][] arate, double[][][] xocc)
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • t

      public final double[] t
      Shared time grid (nt,).
    • caches

      public final int[] caches
      Cache node indices (rows ordered as found by nodetype==Cache).
    • hitprob

      public final double[][][] hitprob
      Per-cache per-class hit-probability trajectory (ncaches x K x nt).
    • missprob

      public final double[][][] missprob
      Per-cache per-class miss-probability trajectory (ncaches x K x nt).
    • arate

      public final double[][] arate
      Per-cache per-class arrival rate (ncaches x K).
    • xocc

      public final double[][][] xocc
      Per-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)