Class Cache_erec

java.lang.Object
jline.api.cache.Cache_erec

public final class Cache_erec extends Object
  • Method Details

    • cache_erec

      public static Matrix cache_erec(Matrix gamma, Matrix m)
      Computes the cache miss rate using an exact recursive method.
      Parameters:
      gamma - Matrix representing the cache access factors.
      m - Matrix representing the cache capacity vector.
      Returns:
      Matrix containing the computed cache miss rates.
    • cache_erec_aux

      public static Matrix cache_erec_aux(Matrix gamma, Matrix m, int k)
      Auxiliary method for computing the cache miss rate using an exact recursive method.
      Parameters:
      gamma - Matrix representing the cache access factors.
      m - Matrix representing the cache capacity vector.
      k - Integer representing the current number of rows in the recursive step.
      Returns:
      Matrix containing the computed cache miss rates.