Class CacheMissRmfTranResult

java.lang.Object
jline.api.cache.CacheMissRmfTranResult

public final class CacheMissRmfTranResult extends Object
Transient refined-mean-field cache trajectory returned by Cache_miss_rmf.cache_miss_rmf_tran(jline.util.matrix.Matrix, jline.util.matrix.Matrix, jline.util.matrix.Matrix[], double, int, double[]).

Java port of the transient outputs of the MATLAB cache_miss_rmf.m tspan path: the time grid, the per-item list-0 occupancy trajectory, the per-user miss-rate trajectory, and the full DDPP occupancy trajectory used to carry the cache mean occupancy across environment switches.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final double[][]
    Per-user miss-rate trajectory (u x nt).
    final double[][]
    Per-item list-0 occupancy (miss probability) trajectory (n x nt).
    final double[]
    Time grid (nt,).
    final double[][]
    Full DDPP occupancy trajectory (dim x nt).
  • Constructor Summary

    Constructors
    Constructor
    Description
    CacheMissRmfTranResult(double[] t, double[][] pi0_t, double[][] MU_t, double[][] xtraj)
     
  • 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
      Time grid (nt,).
    • pi0_t

      public final double[][] pi0_t
      Per-item list-0 occupancy (miss probability) trajectory (n x nt).
    • MU_t

      public final double[][] MU_t
      Per-user miss-rate trajectory (u x nt).
    • xtraj

      public final double[][] xtraj
      Full DDPP occupancy trajectory (dim x nt).
  • Constructor Details

    • CacheMissRmfTranResult

      public CacheMissRmfTranResult(double[] t, double[][] pi0_t, double[][] MU_t, double[][] xtraj)