Package jline.io

Class Ret.cacheXiFp

  • All Implemented Interfaces:

    
    public class Ret.cacheXiFp
    
                        

    Result type for the cache characteristic time (xi) fixed-point algorithm.

    This algorithm computes the characteristic times (xi) for cache replacement policies using a fixed-point iteration. The characteristic time represents the average time between consecutive misses for each item in the cache.

    The results include:

    • xi: Characteristic times for each item
    • pi0: Steady-state probability that each item is not in cache
    • pij: Joint probabilities for cache states
    • it: Number of iterations until convergence
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Ret.cacheXiFp

        Ret.cacheXiFp(Matrix xi, Matrix pi0, Matrix pij, int it)
        Creates a new cacheXiFp result object.
        Parameters:
        xi - Matrix of characteristic times (one per item)
        pi0 - Matrix of miss probabilities (probability each item is not in cache)
        pij - Matrix of joint cache state probabilities
        it - Number of fixed-point iterations performed
    • Method Detail