AIMA.Core.Learning.Inductive.DecisionList.DecisionList C# (CSharp) Method

DecisionList() public method

public DecisionList ( String positive, String negative ) : System
positive String
negative String
return System
        public DecisionList(String positive, String negative)
        {
            this.positive = positive;
            this.negative = negative;
            this.tests = new List<DLTest>();
            testOutcomes = new Dictionary<DLTest, String>();
        }