weka.classifiers.lazy.kstar
Class KStarCache.TableEntry

java.lang.Object
  extended byweka.classifiers.lazy.kstar.KStarCache.TableEntry
All Implemented Interfaces:
java.io.Serializable
Enclosing class:
KStarCache

public class KStarCache.TableEntry
extends java.lang.Object
implements java.io.Serializable

Hashtable collision list.

See Also:
Serialized Form

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