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