
aima.core.probability.bayes.FiniteNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aima-core Show documentation
Show all versions of aima-core Show documentation
AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.
package aima.core.probability.bayes;
/**
* A node over a Random Variable that has a finite countable domain.
*
* @author Ciaran O'Reilly
*
*/
public interface FiniteNode extends DiscreteNode {
/**
*
* @return the Conditional Probability Table detailing the finite set of
* probabilities for this Node.
*/
ConditionalProbabilityTable getCPT();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy