Examples of EvaluationController


Examples of unbbayes.evaluation.controller.EvaluationController

    /* (non-Javadoc)
   * @see unbbayes.controller.INetworkMediator#evaluateNetwork()
   */
    public void evaluateNetwork() {
      if (singleEntityNetwork != null && singleEntityNetwork instanceof ProbabilisticNetwork) {
        EvaluationController evaluationController = new EvaluationController((ProbabilisticNetwork)singleEntityNetwork);
        screen.changeToPNEvaluationPane(evaluationController.getView());
      } else {
        JOptionPane.showMessageDialog(screen, "Evaluation can only be done in probabilistic networks.", "Evaluation Error", JOptionPane.ERROR_MESSAGE);
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.