/* -------------------------------------------------------------------------- */ /* */ /* DECISION TREE NODE */ /* */ /* Frans Coenen */ /* */ /* Thursday 8 November 2007 */ /* */ /* Department of Computer Science */ /* The University of Liverpool */ /* */ /* -------------------------------------------------------------------------- */ //package lucsKDD_ARM; // Class defining a decision tree node public class DecisionTreeNode { /** Attribute represented by node (class if leaf node). */ public short attNumber=0; /** Positive branch. */ public DecisionTreeNode posBranch = null; /** Negative branch. */ public DecisionTreeNode negBranch = null; }