Uses of Class
weka.classifiers.trees.adtree.Splitter

Packages that use Splitter
weka.classifiers.trees   
weka.classifiers.trees.adtree   
 

Uses of Splitter in weka.classifiers.trees
 

Fields in weka.classifiers.trees declared as Splitter
protected  Splitter ADTree.m_search_bestSplitter
          The best splitter to insert, as found so far by the latest search
 

Uses of Splitter in weka.classifiers.trees.adtree
 

Subclasses of Splitter in weka.classifiers.trees.adtree
 class TwoWayNominalSplit
          Class representing a two-way split on a nominal attribute, of the form: either 'is some_value' or 'is not some_value'.
 class TwoWayNumericSplit
          Class representing a two-way split on a numeric attribute, of the form: either 'is < some_value' or 'is >= some_value'.
 

Methods in weka.classifiers.trees.adtree with parameters of type Splitter
 void PredictionNode.addChild(Splitter newChild, ADTree addingTo)
          Adds a child to this node.
private  void PredictionNode.setOrderAddedSubtree(Splitter addChild, ADTree addingTo)
          Sets the order added values of the subtree rooted at this splitter node.
abstract  boolean Splitter.equalTo(Splitter compare)
          Tests whether two splitters are equivalent.
 boolean TwoWayNominalSplit.equalTo(Splitter compare)
          Tests whether two splitters are equivalent.
 boolean TwoWayNumericSplit.equalTo(Splitter compare)
          Tests whether two splitters are equivalent.