Interface BooleanFormulaManager
-
- All Known Implementing Classes:
AbstractBooleanFormulaManager
public interface BooleanFormulaManagerManager for dealing with boolean formulas.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BooleanFormulaand(Collection<BooleanFormula> bits)BooleanFormulaand(BooleanFormula... bits)BooleanFormulaand(BooleanFormula bits1, BooleanFormula bits2)Creates a formula representing an AND of the two arguments.BooleanFormulaequivalence(BooleanFormula formula1, BooleanFormula formula2)Creates a formula representing an equivalence of the two arguments.<T extends Formula>
TifThenElse(BooleanFormula cond, T f1, T f2)Creates a formula representingIF cond THEN f1 ELSE f2.BooleanFormulaimplication(BooleanFormula formula1, BooleanFormula formula2)booleanisFalse(BooleanFormula formula)Check, if the formula is the formula "FALSE".booleanisTrue(BooleanFormula formula)Check, if the formula is the formula "TRUE".default BooleanFormulamakeBoolean(boolean value)Returns aBooleanFormularepresenting the given value.BooleanFormulamakeFalse()Shortcut formakeBoolean(false).BooleanFormulamakeTrue()Shortcut formakeBoolean(true).BooleanFormulamakeVariable(String pVar)Creates a variable with exactly the given name.BooleanFormulanot(BooleanFormula bits)Creates a formula representing a negation of the argument.BooleanFormulaor(Collection<BooleanFormula> bits)BooleanFormulaor(BooleanFormula... bits)BooleanFormulaor(BooleanFormula bits1, BooleanFormula bits2)Creates a formula representing an OR of the two arguments.Collector<BooleanFormula,?,BooleanFormula>toConjunction()Return a streamCollectorthat creates a conjunction of all elements in the stream.Set<BooleanFormula>toConjunctionArgs(BooleanFormula f, boolean flatten)Return a set of formulas such that a conjunction over them is equivalent to the input formula.Collector<BooleanFormula,?,BooleanFormula>toDisjunction()Return a streamCollectorthat creates a disjunction of all elements in the stream.Set<BooleanFormula>toDisjunctionArgs(BooleanFormula f, boolean flatten)Return a set of formulas such that a disjunction over them is equivalent to the input formula.BooleanFormulatransformRecursively(BooleanFormula f, BooleanFormulaTransformationVisitor pVisitor)Visit the formula recursively with a givenBooleanFormulaVisitor.<R> Rvisit(BooleanFormula pFormula, BooleanFormulaVisitor<R> visitor)Visit the formula with the given visitor.voidvisitRecursively(BooleanFormula f, BooleanFormulaVisitor<TraversalProcess> rFormulaVisitor)Visit the formula recursively with a givenBooleanFormulaVisitor.BooleanFormulaxor(BooleanFormula bits1, BooleanFormula bits2)Creates a formula representing XOR of the two arguments.
-
-
-
Method Detail
-
makeBoolean
default BooleanFormula makeBoolean(boolean value)
Returns aBooleanFormularepresenting the given value.- Parameters:
value- the boolean value the returnedFormulashould represent- Returns:
- a Formula representing the given value
-
makeTrue
BooleanFormula makeTrue()
Shortcut formakeBoolean(true).
-
makeFalse
BooleanFormula makeFalse()
Shortcut formakeBoolean(false).
-
makeVariable
BooleanFormula makeVariable(String pVar)
Creates a variable with exactly the given name.Please make sure that the given name is valid in SMT-LIB2. Take a look at
FormulaManager.isValidName(java.lang.String)for further information.This method does not quote or unquote the given name, but uses the plain name "AS IS".
Formula.toString()can return a different String than the given one.
-
equivalence
BooleanFormula equivalence(BooleanFormula formula1, BooleanFormula formula2)
Creates a formula representing an equivalence of the two arguments.- Parameters:
formula1- a Formulaformula2- a Formula- Returns:
formula1 <-> formula2
-
implication
BooleanFormula implication(BooleanFormula formula1, BooleanFormula formula2)
- Returns:
formula1 => formula2.
-
isTrue
boolean isTrue(BooleanFormula formula)
Check, if the formula is the formula "TRUE". This does not include a satisfiability check, but only a syntactical matching. However, depending on the SMT solver, there might be some pre-processing of formulas such that trivial cases like "1==1" are recognized and rewritten as "TRUE", and thus such formulas might also be matched.
-
isFalse
boolean isFalse(BooleanFormula formula)
Check, if the formula is the formula "FALSE". This does not include a satisfiability check, but only a syntactical matching. However, depending on the SMT solver, there might be some pre-processing of formulas such that trivial cases like "1==2" are recognized and rewritten as "FALSE", and thus such formulas might also be matched.
-
ifThenElse
<T extends Formula> T ifThenElse(BooleanFormula cond, T f1, T f2)
Creates a formula representingIF cond THEN f1 ELSE f2.- Parameters:
cond- a Formulaf1- a Formulaf2- a Formula- Returns:
- (IF cond THEN f1 ELSE f2)
-
not
BooleanFormula not(BooleanFormula bits)
Creates a formula representing a negation of the argument.- Parameters:
bits- a Formula- Returns:
!bits
-
and
BooleanFormula and(BooleanFormula bits1, BooleanFormula bits2)
Creates a formula representing an AND of the two arguments.- Parameters:
bits1- a Formulabits2- a Formula- Returns:
bits1 & bits2
-
and
BooleanFormula and(Collection<BooleanFormula> bits)
- See Also:
and(BooleanFormula, BooleanFormula)
-
and
BooleanFormula and(BooleanFormula... bits)
- See Also:
and(BooleanFormula, BooleanFormula)
-
toConjunction
Collector<BooleanFormula,?,BooleanFormula> toConjunction()
Return a streamCollectorthat creates a conjunction of all elements in the stream.
-
or
BooleanFormula or(BooleanFormula bits1, BooleanFormula bits2)
Creates a formula representing an OR of the two arguments.- Parameters:
bits1- a Formulabits2- a Formula- Returns:
bits1 | bits2
-
or
BooleanFormula or(Collection<BooleanFormula> bits)
- See Also:
or(BooleanFormula, BooleanFormula)
-
or
BooleanFormula or(BooleanFormula... bits)
- See Also:
or(BooleanFormula, BooleanFormula)
-
toDisjunction
Collector<BooleanFormula,?,BooleanFormula> toDisjunction()
Return a streamCollectorthat creates a disjunction of all elements in the stream.
-
xor
BooleanFormula xor(BooleanFormula bits1, BooleanFormula bits2)
Creates a formula representing XOR of the two arguments.
-
visit
@CanIgnoreReturnValue <R> R visit(BooleanFormula pFormula, BooleanFormulaVisitor<R> visitor)
Visit the formula with the given visitor.
-
visitRecursively
void visitRecursively(BooleanFormula f, BooleanFormulaVisitor<TraversalProcess> rFormulaVisitor)
Visit the formula recursively with a givenBooleanFormulaVisitor.This method guarantees that the traversal is done iteratively, without using Java recursion, and thus is not prone to StackOverflowErrors.
Furthermore, this method also guarantees that every equal part of the formula is visited only once. Thus, it can be used to traverse DAG-like formulas efficiently.
-
transformRecursively
BooleanFormula transformRecursively(BooleanFormula f, BooleanFormulaTransformationVisitor pVisitor)
Visit the formula recursively with a givenBooleanFormulaVisitor. The arguments each visitor method receives are already transformed.This method guarantees that the traversal is done iteratively, without using Java recursion, and thus is not prone to StackOverflowErrors.
Furthermore, this method also guarantees that every equal part of the formula is visited only once. Thus, it can be used to traverse DAG-like formulas efficiently.
-
toConjunctionArgs
Set<BooleanFormula> toConjunctionArgs(BooleanFormula f, boolean flatten)
Return a set of formulas such that a conjunction over them is equivalent to the input formula.Example output:
- For conjunction
A /\ B /\ C:A, B, C - For "true": empty set.
- For anything else: singleton set consisting of the input formula.
- Parameters:
flatten- Iftrue, flatten recursively.
- For conjunction
-
toDisjunctionArgs
Set<BooleanFormula> toDisjunctionArgs(BooleanFormula f, boolean flatten)
Return a set of formulas such that a disjunction over them is equivalent to the input formula.Example output:
- For conjunction
A \/ B \/ C:A, B, C - For "false": empty set.
- For anything else: singleton set consisting of the input formula.
- Parameters:
flatten- Iftrue, flatten recursively.
- For conjunction
-
-