AIMA.Probability.BayesNetNode.BayesNetNode C# (CSharp) 메소드

BayesNetNode() 공개 메소드

public BayesNetNode ( String variable ) : System
variable String
리턴 System
        public BayesNetNode(String variable)
        {
            this.variable = variable;
            parents = new List<BayesNetNode>();
            children = new List<BayesNetNode>();
            distribution = new ProbabilityDistribution(variable);
        }