Class KStarCache.TableEntry

java.lang.Object
weka.classifiers.lazy.kstar.KStarCache.TableEntry
All Implemented Interfaces:
Serializable, RevisionHandler
Enclosing class:
KStarCache

public class KStarCache.TableEntry extends Object implements Serializable, RevisionHandler
Hashtable collision list.
See Also:
  • Field Details

    • hash

      public int hash
      attribute value hash code
    • key

      public double key
      attribute value
    • value

      public double value
      scale factor or stop parameter
    • pmiss

      public double pmiss
      transformation probability to missing value
    • next

      public KStarCache.TableEntry next
      next table entry (separate chaining)
  • Constructor Details

    • TableEntry

      public TableEntry(int hash, double key, double value, double pmiss, KStarCache.TableEntry next)
      Constructor
  • Method Details