AIMA.Core.Learning.Learners.DecisionListLearner.DecisionListLearner C# (CSharp) Method

DecisionListLearner() public method

public DecisionListLearner ( String positive, String negative, DLTestFactory testFactory ) : System
positive String
negative String
testFactory DLTestFactory
return System
        public DecisionListLearner(String positive, String negative,
                DLTestFactory testFactory)
        {
            this.positive = positive;
            this.negative = negative;
            this.testFactory = testFactory;
        }