Package jline.io

Class Ret.cacheGamma

  • All Implemented Interfaces:

    
    public class Ret.cacheGamma
    
                        

    Represents the return type for the cache gamma linear program computations. This class encapsulates the computed gamma matrix along with the number of users, items, and levels.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
      public Matrix gamma
      public int u
      public int n
      public int h
    • Constructor Summary

      Constructors 
      Constructor Description
      Ret.cacheGamma(Matrix gamma, int u, int n, int h) Constructor for initializing the cacheGammaLpReturn object.
    • 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.cacheGamma

        Ret.cacheGamma(Matrix gamma, int u, int n, int h)
        Constructor for initializing the cacheGammaLpReturn object.
        Parameters:
        gamma - - Matrix representing the gamma values.
        u - - Integer representing the number of users.
        n - - Integer representing the number of items.
        h - - Integer representing the number of levels.
    • Method Detail