Package edu.gmu.seor.prognos.unbbayesplugin.jt.prs.bn

Examples of edu.gmu.seor.prognos.unbbayesplugin.jt.prs.bn.PotentialTable.addVariable()


    }
     
    //initialize Potential Table
    if (uNode instanceof ITabledVariable) {
      PotentialTable potTable = ((ITabledVariable)uNode).getPotentialTable();
      potTable.addVariable(uNode);
    }
   
    rede.addNode(uNode);
  }
  
View Full Code Here


    edge.getDestinationNode().addParent(edge.getOriginNode());
      edgeList.add(edge);
      if (edge.getDestinationNode() instanceof ITabledVariable) {
      ITabledVariable v2 = (ITabledVariable) edge.getDestinationNode();
      PotentialTable auxTab = v2.getPotentialTable();
      auxTab.addVariable(edge.getOriginNode());
    }
  }

  /**
   *  Remove node.
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.