weka.classifiers.kstar
Class KStarCache.TableEntry

java.lang.Object
  |
  +--weka.classifiers.kstar.KStarCache.TableEntry
Enclosing class:
KStarCache

public class KStarCache.TableEntry
extends java.lang.Object

Hashtable collision list.


Field Summary
 int hash
          attribute value hash code
 double key
          attribute value
 KStarCache.TableEntry next
          next table entry (separate chaining)
 double pmiss
          transformation probability to missing value
 double value
          scale factor or stop parameter
 
Constructor Summary
KStarCache.TableEntry(int hash, double key, double value, double pmiss, KStarCache.TableEntry next)
          Constructor
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

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 Detail

KStarCache.TableEntry

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