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
-
-
Constructor Summary
Constructors Constructor Description Ret.cacheXiFp(Matrix xi, Matrix pi0, Matrix pij, int it)
Creates a new cacheXiFp result object.
-
Method Summary
Modifier and Type Method Description -
-
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 probabilitiesit
- Number of fixed-point iterations performed
-
-
-
-