AIMA.Core.Learning.Inductive.ConstantDecisonTree.addNode C# (CSharp) Method

addNode() public method

public addNode ( String attributeValue, DecisionTree tree ) : void
attributeValue String
tree DecisionTree
return void
        public override void addNode(String attributeValue, DecisionTree tree)
        {
            throw new ApplicationException("cannot add Node to ConstantDecisonTree");
        }