AIMA.Probability.BayesNetNode.BayesNetNode C# (CSharp) Method

BayesNetNode() public method

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