Examples of multiplyBySubtableFast()


Examples of org.integratedmodelling.riskwiz.influence.JTPotential.multiplyBySubtableFast()

        JTPotential targetPT = target.getPotential();

        SubtableFastMap2 fmap2 = target.getSubtableOpFastMap(jtedge);

        targetPT.multiplyBySubtableFast(sepsetPT, fmap2);

    }

    public void unmarkAll() {
        Set<SJTVertex> vertexSet = this.vertexSet();
View Full Code Here

Examples of org.integratedmodelling.riskwiz.pt.PT.multiplyBySubtableFast()

        if (node.hasEvidence()) {
      
            // cross fingers
            if (bundle.liklihoodfmap instanceof SubtableFastMap2) {
                clusterPT.multiplyBySubtableFast(node.getEvidence(),
                        (SubtableFastMap2) bundle.liklihoodfmap);
            } else {
                clusterPT.multiplyBySubtable(node.getEvidence(),
                        bundle.liklihoodfmap);
            }
View Full Code Here

Examples of org.integratedmodelling.riskwiz.pt.PT.multiplyBySubtableFast()

        PT targetPT = target.getPotential().getProbabilityPotential();

        SubtableFastMap2 fmap2 = target.getSubtableOpFastMap(jtedge);

        targetPT.multiplyBySubtableFast(sepsetPT, fmap2);
        targetPT.divideBySubtableFast(oldSepsetPT, fmap2);

    }

    public void setNodeMarginals() {
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.