Class DebuggingQuantifiedFormulaManager
java.lang.Object
org.sosy_lab.java_smt.delegate.debugging.DebuggingQuantifiedFormulaManager
- All Implemented Interfaces:
QuantifiedFormulaManager
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.sosy_lab.java_smt.api.QuantifiedFormulaManager
QuantifiedFormulaManager.Quantifier -
Constructor Summary
ConstructorsConstructorDescriptionDebuggingQuantifiedFormulaManager(QuantifiedFormulaManager pDelegate, org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions pDebugging) -
Method Summary
Modifier and TypeMethodDescriptionEliminate the quantifiers for a given formula.mkQuantifier(QuantifiedFormulaManager.Quantifier q, List<? extends Formula> pVariables, BooleanFormula pBody) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.sosy_lab.java_smt.api.QuantifiedFormulaManager
exists, exists, forall, forall
-
Constructor Details
-
DebuggingQuantifiedFormulaManager
public DebuggingQuantifiedFormulaManager(QuantifiedFormulaManager pDelegate, org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions pDebugging)
-
-
Method Details
-
mkQuantifier
public BooleanFormula mkQuantifier(QuantifiedFormulaManager.Quantifier q, List<? extends Formula> pVariables, BooleanFormula pBody) - Specified by:
mkQuantifierin interfaceQuantifiedFormulaManager- Parameters:
q- Quantifier typepVariables- The variables that will get bound (variables) by the quantification.pBody- TheBooleanFormula} within that the binding will be performed.- Returns:
- A quantified formula
-
eliminateQuantifiers
public BooleanFormula eliminateQuantifiers(BooleanFormula pF) throws InterruptedException, SolverException Description copied from interface:QuantifiedFormulaManagerEliminate the quantifiers for a given formula. If this is not possible, it will return the input formula. Note that CVC4 only supports this for LIA and LRA.- Specified by:
eliminateQuantifiersin interfaceQuantifiedFormulaManager- Parameters:
pF- Formula with quantifiers.- Returns:
- New formula without quantifiers.
- Throws:
InterruptedExceptionSolverException
-