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

addLeaf() public method

public addLeaf ( String attributeValue, String decision ) : void
attributeValue String
decision String
return void
        public override void addLeaf(String attributeValue, String decision)
        {
            throw new ApplicationException("cannot add Leaf to ConstantDecisonTree");
        }