Class BDDFactoryIntImpl.IntBDD
- java.lang.Object
-
- com.github.javabdd.BDD
-
- com.github.javabdd.BDDFactoryIntImpl.IntBDD
-
- Direct Known Subclasses:
BDDFactoryIntImpl.IntBDDWithFinalizer
- Enclosing class:
- BDDFactoryIntImpl
public class BDDFactoryIntImpl.IntBDD extends BDD
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.github.javabdd.BDD
BDD.AllSatIterator, BDD.BDDIterator, BDD.BDDToString
-
-
Field Summary
Fields Modifier and Type Field Description protected intv
-
Constructor Summary
Constructors Modifier Constructor Description protectedIntBDD(int v)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BDDapply(BDD that, BDDFactory.BDDOp opr)Returns the result of applying the binary operatoroprto the two BDDs.BDDapplyAll(BDD that, BDDFactory.BDDOp opr, BDDVarSet var)Applies the binary operatoroprto two BDDs and then performs a universal quantification of the variables from the variable setvar.BDDapplyEx(BDD that, BDDFactory.BDDOp opr, BDDVarSet var)Applies the binary operatoroprto two BDDs and then performs an existential quantification of the variables from the variable setvar.BDDapplyUni(BDD that, BDDFactory.BDDOp opr, BDDVarSet var)Applies the binary operatoroprto two BDDs and then performs a unique quantification of the variables from the variable setvar.BDDapplyWith(BDD that, BDDFactory.BDDOp opr)Makes this BDD be the result of the binary operatoroprof two BDDs.BDDcompose(BDD g, int var)Functional composition.BDDconstrain(BDD that)Generalized cofactor.booleanequalsBDD(BDD that)Returns true if this BDD equals that BDD, false otherwise.BDDexist(BDDVarSet var)Existential quantification of variables.BDDforAll(BDDVarSet var)Universal quantification of variables.voidfree()Frees this BDD.BDDfullSatOne()Finds one satisfying variable assignment.BDDFactorygetFactory()Returns the factory that created this BDD.inthashCode()BDDhigh()Gets the true branch of this BDD.BDDid()Identity function.booleanisOne()Returns true if this BDD is the one (true) BDD.booleanisUniverse()Returns true if this BDD is the universe BDD.booleanisZero()Returns true if this BDD is the zero (false) BDD.BDDite(BDD thenBDD, BDD elseBDD)if-then-else operator.intlevel()Gets the level of this BDD.BDDlow()Gets the false branch of this BDD.intnodeCount()Counts the number of distinct nodes used for this BDD.BDDnot()Negates this BDD by exchanging all references to the zero-terminal with references to the one-terminal and vice-versa.doublepathCount()Counts the number of paths leading to the true terminal.BDDreplace(BDDPairing pair)Returns a BDD where all variables are replaced with the variables defined by pair.BDDreplaceWith(BDDPairing pair)Replaces all variables in this BDD with the variables defined by pair.BDDrestrict(BDD var)Restrict a set of variables to constant values.BDDrestrictWith(BDD that)Mutates this BDD to restrict a set of variables to constant values.doublesatCount()Calculates the number of satisfying variable assignments.BDDsatOne()Finds one satisfying variable assignment.BDDsatOne(BDDVarSet var, boolean pol)Finds one satisfying variable assignment.BDDsimplify(BDD d)Coudert and Madre's restrict function.BDDVarSetsupport()Returns the variable support of this BDD.BDDVarSettoVarSet()Converts this BDD to a new BDDVarSet.BDDunique(BDDVarSet var)Unique quantification of variables.intvar()Gets the variable labeling the BDD.int[]varProfile()Counts the number of times each variable occurs in this BDD.BDDveccompose(BDDPairing pair)Simultaneous functional composition.-
Methods inherited from class com.github.javabdd.BDD
allsat, and, andWith, biimp, biimpWith, equals, imp, impWith, iterator, logSatCount, logSatCount, or, orWith, printDot, printdot_rec, printSet, printSetWithDomains, relprod, satCount, scanAllVar, scanVar, toString, toStringWithDomains, toStringWithDomains, xor, xorWith
-
-
-
-
Method Detail
-
apply
public BDD apply(BDD that, BDDFactory.BDDOp opr)
Description copied from class:BDDReturns the result of applying the binary operatoroprto the two BDDs.Compare to bdd_apply.
-
applyAll
public BDD applyAll(BDD that, BDDFactory.BDDOp opr, BDDVarSet var)
Description copied from class:BDDApplies the binary operatoroprto two BDDs and then performs a universal quantification of the variables from the variable setvar.Compare to bdd_appall.
- Specified by:
applyAllin classBDD- Parameters:
that- the BDD to apply the operator onopr- the operator to applyvar- BDDVarSet containing the variables to quantify- Returns:
- the result
- See Also:
BDDDomain.set()
-
applyEx
public BDD applyEx(BDD that, BDDFactory.BDDOp opr, BDDVarSet var)
Description copied from class:BDDApplies the binary operatoroprto two BDDs and then performs an existential quantification of the variables from the variable setvar.Compare to bdd_appex.
- Specified by:
applyExin classBDD- Parameters:
that- the BDD to apply the operator onopr- the operator to applyvar- BDDVarSet containing the variables to quantify- Returns:
- the result
- See Also:
BDDDomain.set()
-
applyUni
public BDD applyUni(BDD that, BDDFactory.BDDOp opr, BDDVarSet var)
Description copied from class:BDDApplies the binary operatoroprto two BDDs and then performs a unique quantification of the variables from the variable setvar.Compare to bdd_appuni.
- Specified by:
applyUniin classBDD- Parameters:
that- the BDD to apply the operator onopr- the operator to applyvar- BDDVarSet containing the variables to quantify- Returns:
- the result
- See Also:
BDDDomain.set()
-
applyWith
public BDD applyWith(BDD that, BDDFactory.BDDOp opr)
Description copied from class:BDDMakes this BDD be the result of the binary operatoroprof two BDDs. The "that" BDD is consumed, and can no longer be used. Attempting to use the passed in BDD again will result in an exception being thrown.Compare to bdd_apply and bdd_delref.
-
compose
public BDD compose(BDD g, int var)
Description copied from class:BDDFunctional composition. Substitutes the variable var with the BDD that in this BDD: result = f[g/var].Compare to bdd_compose.
-
constrain
public BDD constrain(BDD that)
Description copied from class:BDDGeneralized cofactor. Computes the generalized cofactor of this BDD with respect to the given BDD.Compare to bdd_constrain.
-
equalsBDD
public boolean equalsBDD(BDD that)
Description copied from class:BDDReturns true if this BDD equals that BDD, false otherwise.
-
exist
public BDD exist(BDDVarSet var)
Description copied from class:BDDExistential quantification of variables. Removes all occurrences of this BDD in variables in the set var by existential quantification.Compare to bdd_exist.
- Specified by:
existin classBDD- Parameters:
var- BDDVarSet containing the variables to be existentially quantified- Returns:
- the result of the existential quantification
- See Also:
BDDDomain.set()
-
forAll
public BDD forAll(BDDVarSet var)
Description copied from class:BDDUniversal quantification of variables. Removes all occurrences of this BDD in variables in the set var by universal quantification.Compare to bdd_forall.
- Specified by:
forAllin classBDD- Parameters:
var- BDDVarSet containing the variables to be universally quantified- Returns:
- the result of the universal quantification
- See Also:
BDDDomain.set()
-
free
public void free()
Description copied from class:BDDFrees this BDD. Further use of this BDD will result in an exception being thrown.
-
fullSatOne
public BDD fullSatOne()
Description copied from class:BDDFinds one satisfying variable assignment. Finds a BDD with exactly one variable at all levels. The new BDD implies this BDD and is not false unless this BDD is false.Compare to bdd_fullsatone.
- Specified by:
fullSatOnein classBDD- Returns:
- one satisfying variable assignment
-
getFactory
public BDDFactory getFactory()
Description copied from class:BDDReturns the factory that created this BDD.- Specified by:
getFactoryin classBDD- Returns:
- factory that created this BDD
-
high
public BDD high()
Description copied from class:BDDGets the true branch of this BDD.Compare to bdd_high.
-
id
public BDD id()
Description copied from class:BDDIdentity function. Returns a copy of this BDD. Use as the argument to the "xxxWith" style operators when you do not want to have the argument consumed.Compare to bdd_addref.
-
isOne
public boolean isOne()
Description copied from class:BDDReturns true if this BDD is the one (true) BDD.
-
isUniverse
public boolean isUniverse()
Description copied from class:BDDReturns true if this BDD is the universe BDD. The universal BDD differs from the one BDD in ZDD mode.- Overrides:
isUniversein classBDD- Returns:
- true if this BDD is the universe BDD
-
isZero
public boolean isZero()
Description copied from class:BDDReturns true if this BDD is the zero (false) BDD.
-
ite
public BDD ite(BDD thenBDD, BDD elseBDD)
Description copied from class:BDDif-then-else operator.Compare to bdd_ite.
-
low
public BDD low()
Description copied from class:BDDGets the false branch of this BDD.Compare to bdd_low.
-
level
public int level()
Description copied from class:BDDGets the level of this BDD.Compare to LEVEL() macro.
-
nodeCount
public int nodeCount()
Description copied from class:BDDCounts the number of distinct nodes used for this BDD.Compare to bdd_nodecount.
-
not
public BDD not()
Description copied from class:BDDNegates this BDD by exchanging all references to the zero-terminal with references to the one-terminal and vice-versa.Compare to bdd_not.
-
pathCount
public double pathCount()
Description copied from class:BDDCounts the number of paths leading to the true terminal.Compare to bdd_pathcount.
-
replace
public BDD replace(BDDPairing pair)
Description copied from class:BDDReturns a BDD where all variables are replaced with the variables defined by pair. Each entry in pair consists of a old and a new variable. Whenever the old variable is found in this BDD then a new node with the new variable is inserted instead.Compare to bdd_replace.
-
replaceWith
public BDD replaceWith(BDDPairing pair)
Description copied from class:BDDReplaces all variables in this BDD with the variables defined by pair. Each entry in pair consists of a old and a new variable. Whenever the old variable is found in this BDD then a new node with the new variable is inserted instead. Mutates the current BDD.Compare to bdd_replace and bdd_delref.
- Specified by:
replaceWithin classBDD- Parameters:
pair- pairing of variables to the BDDs that replace those variables- Returns:
- result of replace
-
restrict
public BDD restrict(BDD var)
Description copied from class:BDDRestrict a set of variables to constant values. Restricts the variables in this BDD to constant true if they are included in their positive form in var, and constant false if they are included in their negative form.Note that this is quite different than Coudert and Madre's restrict function.
Compare to bdd_restrict.
- Specified by:
restrictin classBDD- Parameters:
var- BDD containing the variables to be restricted- Returns:
- the result of the restrict operation
- See Also:
BDD.simplify(BDD)
-
restrictWith
public BDD restrictWith(BDD that)
Description copied from class:BDDMutates this BDD to restrict a set of variables to constant values. Restricts the variables in this BDD to constant true if they are included in their positive form in var, and constant false if they are included in their negative form. The "that" BDD is consumed, and can no longer be used.Note that this is quite different than Coudert and Madre's restrict function.
Compare to bdd_restrict and bdd_delref.
- Specified by:
restrictWithin classBDD- Parameters:
that- BDD containing the variables to be restricted- Returns:
- the result of the restrict operation
- See Also:
BDDDomain.set()
-
satCount
public double satCount()
Description copied from class:BDDCalculates the number of satisfying variable assignments.Compare to bdd_satcount.
-
satOne
public BDD satOne()
Description copied from class:BDDFinds one satisfying variable assignment. Finds a BDD with at most one variable at each level. The new BDD implies this BDD and is not false unless this BDD is false.Compare to bdd_satone.
-
satOne
public BDD satOne(BDDVarSet var, boolean pol)
Description copied from class:BDDFinds one satisfying variable assignment. Finds a minterm in this BDD. Thevarargument is a set of variables that must be mentioned in the result. The polarity of these variables in the result - in case they are undefined in this BDD - are defined by thepolparameter. Ifpolis false, then all variables will be in negative form. Otherwise they will be in positive form.Compare to bdd_satoneset.
- Specified by:
satOnein classBDD- Parameters:
var- BDDVarSet containing the set of variables that must be mentioned in the resultpol- the polarity of the result- Returns:
- one satisfying variable assignment
- See Also:
BDDDomain.set()
-
simplify
public BDD simplify(BDD d)
Description copied from class:BDDCoudert and Madre's restrict function. Tries to simplify the BDD f by restricting it to the domain covered by d. No checks are done to see if the result is actually smaller than the input. This can be done by the user with a call to nodeCount().Compare to bdd_simplify.
-
support
public BDDVarSet support()
Description copied from class:BDDReturns the variable support of this BDD. The support is all the variables that this BDD depends on.Compare to bdd_support.
-
unique
public BDD unique(BDDVarSet var)
Description copied from class:BDDUnique quantification of variables. This type of quantification uses a XOR operator instead of an OR operator as in the existential quantification.Compare to bdd_unique.
- Specified by:
uniquein classBDD- Parameters:
var- BDDVarSet containing the variables to be uniquely quantified- Returns:
- the result of the unique quantification
- See Also:
BDDDomain.set()
-
var
public int var()
Description copied from class:BDDGets the variable labeling the BDD.Compare to bdd_var.
-
varProfile
public int[] varProfile()
Description copied from class:BDDCounts the number of times each variable occurs in this BDD. The result is stored and returned in an integer array where the i'th position stores the number of times the i'th printing variable occurred in the BDD.Compare to bdd_varprofile.
- Specified by:
varProfilein classBDD- Returns:
- the variable profile
-
veccompose
public BDD veccompose(BDDPairing pair)
Description copied from class:BDDSimultaneous functional composition. Uses the pairs of variables and BDDs in pair to make the simultaneous substitution: f [g1/V1, ... gn/Vn]. In this way one or more BDDs may be substituted in one step. The BDDs in pair may depend on the variables they are substituting. BDD.compose() may be used instead of BDD.replace() but is not as efficient when gi is a single variable, the same applies to BDD.restrict(). Note that simultaneous substitution is not necessarily the same as repeated substitution.Compare to bdd_veccompose.
- Specified by:
veccomposein classBDD- Parameters:
pair- the pairing of variables to functions- Returns:
- BDD the result of the simultaneous functional composition
-
-