AIMA.Probability.BayesNetNode.influencedBy C# (CSharp) Метод

influencedBy() публичный Метод

public influencedBy ( BayesNetNode parent1, BayesNetNode parent2 ) : void
parent1 BayesNetNode
parent2 BayesNetNode
Результат void
        public void influencedBy(BayesNetNode parent1, BayesNetNode parent2)
        {
            influencedBy(parent1);
            influencedBy(parent2);
            distribution = new ProbabilityDistribution(parent1.getVariable(),
                    parent2.getVariable());
        }

Same methods

BayesNetNode::influencedBy ( BayesNetNode parent1 ) : void