public override void AddNode(string attributeValue, DecisionTree tree)
 {
     throw new ApplicationException("cannot add Node to ConstantDecisonTree");
 }
Exemple #2
0
 public virtual void AddNode(string attributeValue, DecisionTree tree)
 {
     nodes[attributeValue] = tree;
 }