Package unbbayes.prs.mebn.ssbn

Examples of unbbayes.prs.mebn.ssbn.SimpleContextNodeFatherSSBNNode


   
    if(ovFaultForNewNodeList.size()>0){
     
      for(OrdinaryVariable ov: ovFaultForNewNodeList){
       
        SimpleContextNodeFatherSSBNNode contextNodeFather =
          node.getMFragInstance().getContextNodeFatherForOv(ov);
       
        if(contextNodeFather != null){
          contextParentsCount++;
          contextNodeFatherList.add(contextNodeFather);
View Full Code Here


          }
         
          //Utilized only in the specific case z = RandomVariable(x),
          //where z is the unknow variable. (Should have only one unknow variable)
         
          SimpleContextNodeFatherSSBNNode simpleContextNodeFather = null;
         
          if(ovInstancesFault.size() == 1){
            try{
              simpleContextNodeFather =
                evaluateUncertaintyReferenceCase(mFragInstance,
View Full Code Here

      //The new ov are at the tree... but, too are at the simple context node parent.
     
      mFragInstance.addOVValueCombination(ovFault, result);
      mFragInstance.setStateEvaluationOfContextNode(contextNode, ContextNodeEvaluationState.EVALUATION_SEARCH);
     
      SimpleContextNodeFatherSSBNNode contextParent = new SimpleContextNodeFatherSSBNNode(contextNode, ovFault);
      contextParent.setPossibleValues(result);
     
      mFragInstance.setContextNodeForOrdinaryVariable(ovFault, contextParent);
     
      return contextParent;
     
View Full Code Here

TOP

Related Classes of unbbayes.prs.mebn.ssbn.SimpleContextNodeFatherSSBNNode

Copyright © 2018 www.massapicom. 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.