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);
        }