Examples of DMPInference


Examples of edu.gmu.seor.prognos.unbbayesplugin.cps.dmp.DMPInference

    // initial assertion
    if (ssbn == null || algorithm == null) {
      throw new SSBNNodeGeneralException(new NullPointerException(this.getClass() + ": SSBN == null; algorithm == null."));
    }
    if (algorithm instanceof DMPInference) {
      DMPInference dmp = (DMPInference) algorithm;
     
      // dmp needs a reset, because it uses static db and previous findings may still be in the system.
      // TODO fix dmp so that it stops using static db
      dmp.reset();
     
      // findings of discrete nodes may be directly inserted to the network treated by the algorithm
      Graph g = dmp.getNetwork()// net to add findings
      if (g == null) {
        throw new SSBNNodeGeneralException(new IllegalStateException(ssbn + " and " + algorithm + " should be compiled before this method."));
      }
      if (g instanceof ProbabilisticNetwork) {
        ProbabilisticNetwork net = (ProbabilisticNetwork) g;
View Full Code Here

Examples of edu.gmu.seor.prognos.unbbayesplugin.cps.dmp.DMPInference

  /* (non-Javadoc)
   * @see unbbayes.prs.mebn.ssbn.laskeyalgorithm.LaskeySSBNGenerator#getLastIterationCount()
   */
  public int getLastIterationCount() {
    if (getBNInferenceAlgorithm() instanceof DMPInference) {
      DMPInference dmpInference = (DMPInference) getBNInferenceAlgorithm();
      return (int) dmpInference.getIteration_Size().longValue();
    }
    return 1;
  }
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.