package aima.core.probability.bayes; /** * A node over a Random Variable that has a countable domain (may be infinite). * * @author Ciaran O'Reilly * */ public interface DiscreteNode extends Node { }