Drools :: Beliefs 6.2.0.Beta2

Uses of Class
org.drools.beliefs.bayes.OpenBitSet

Packages that use OpenBitSet
org.drools.beliefs.bayes   
 

Uses of OpenBitSet in org.drools.beliefs.bayes
 

Methods in org.drools.beliefs.bayes that return OpenBitSet
 OpenBitSet OpenBitSet.clone()
           
 OpenBitSet JunctionTreeSeparator.getBitSet()
           
 OpenBitSet JunctionTreeClique.getBitSet()
           
 OpenBitSet SeparatorSet.getClique1()
           
 OpenBitSet SeparatorSet.getClique2()
           
 OpenBitSet EliminationCandidate.getCliqueBitSit()
           
 OpenBitSet SeparatorSet.getIntersection()
           
 OpenBitSet CliqueBitSet.getOpenBitSet()
           
 

Methods in org.drools.beliefs.bayes that return types with arguments of type OpenBitSet
 List<OpenBitSet> JunctionTreeBuilder.triangulate()
           
 

Methods in org.drools.beliefs.bayes with parameters of type OpenBitSet
 void OpenBitSet.and(OpenBitSet other)
           
 void OpenBitSet.andNot(OpenBitSet other)
           
static long OpenBitSet.andNotCount(OpenBitSet a, OpenBitSet b)
          Returns the popcount or cardinality of "a and not b" or "intersection(a, not(b))".
 void OpenBitSet.intersect(OpenBitSet other)
          this = this AND other
static long OpenBitSet.intersectionCount(OpenBitSet a, OpenBitSet b)
          Returns the popcount or cardinality of the intersection of the two sets.
 boolean OpenBitSet.intersects(OpenBitSet other)
          returns true if the sets have any elements in common
 void JunctionTreeBuilder.mapNodeToCliqueFamily(OpenBitSet[] varNodeToCliques, JunctionTreeClique[] jtNodes)
          Given the set of cliques, mapped via ID in a Bitset, for a given bayes node, Find the best clique.
 void JunctionTreeBuilder.mapVarNodeToCliques(OpenBitSet[] nodeToCliques, int id, OpenBitSet clique)
          Maps each Bayes node to cliques it's in.
 void JunctionTreeBuilder.mapVarNodeToCliques(OpenBitSet[] nodeToCliques, int id, OpenBitSet clique)
          Maps each Bayes node to cliques it's in.
 void OpenBitSet.or(OpenBitSet other)
           
 void OpenBitSet.remove(OpenBitSet other)
          Remove all elements set in other. this = this AND_NOT other
 void OpenBitSet.union(OpenBitSet other)
          this = this OR other
static long OpenBitSet.unionCount(OpenBitSet a, OpenBitSet b)
          Returns the popcount or cardinality of the union of the two sets.
static void JunctionTreeBuilder.updateCliques(List<OpenBitSet> cliques, OpenBitSet newClique)
           
 void OpenBitSet.xor(OpenBitSet other)
          this = this XOR other
static long OpenBitSet.xorCount(OpenBitSet a, OpenBitSet b)
          Returns the popcount or cardinality of the exclusive-or of the two sets.
 

Method parameters in org.drools.beliefs.bayes with type arguments of type OpenBitSet
 JunctionTree JunctionTreeBuilder.junctionTree(List<OpenBitSet> cliques, boolean init)
           
static void JunctionTreeBuilder.updateCliques(List<OpenBitSet> cliques, OpenBitSet newClique)
           
 

Constructors in org.drools.beliefs.bayes with parameters of type OpenBitSet
CliqueBitSet(OpenBitSet OpenBitSet, int weight)
           
JunctionTreeClique(int id, Graph<BayesVariable> graph, OpenBitSet bitSet)
           
JunctionTreeSeparator(int id, JunctionTreeClique parent, JunctionTreeClique child, OpenBitSet bitSet, Graph<BayesVariable> graph)
           
SeparatorSet(OpenBitSet clique1, int id1, OpenBitSet clique2, int id2, Graph<BayesVariable> graph)
           
 


Drools :: Beliefs 6.2.0.Beta2

Copyright © 2001-2014 JBoss by Red Hat. All Rights Reserved.