Package edu.gmu.seor.prognos.unbbayesplugin.cps.dmp

Examples of edu.gmu.seor.prognos.unbbayesplugin.cps.dmp.DMPInference.reset()


    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."));
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.