예제 #1
0
 /** Validate the structure of this Bayesian network. */
 public void validate() {
   for (BayesianEvent e : this.eventMap.values()) {
     e.validate();
   }
 }