AIMA.Core.Learning.Learners.DecisionListLearner.DecisionListLearner C# (CSharp) 메소드

DecisionListLearner() 공개 메소드

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