AIMA.Core.Learning.Inductive.DecisionList.DecisionList C# (CSharp) Метод

DecisionList() публичный Метод

public DecisionList ( String positive, String negative ) : System
positive String
negative String
Результат System
        public DecisionList(String positive, String negative)
        {
            this.positive = positive;
            this.negative = negative;
            this.tests = new List<DLTest>();
            testOutcomes = new Dictionary<DLTest, String>();
        }