Class DebuggingQuantifiedFormulaManager
- java.lang.Object
-
- org.sosy_lab.java_smt.delegate.debugging.DebuggingQuantifiedFormulaManager
-
- All Implemented Interfaces:
QuantifiedFormulaManager
public class DebuggingQuantifiedFormulaManager extends Object implements QuantifiedFormulaManager
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.sosy_lab.java_smt.api.QuantifiedFormulaManager
QuantifiedFormulaManager.Quantifier
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleanFormulaeliminateQuantifiers(BooleanFormula pF)Eliminate the quantifiers for a given formula.BooleanFormulamkQuantifier(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, wait
-
Methods inherited from interface org.sosy_lab.java_smt.api.QuantifiedFormulaManager
exists, exists, forall, forall
-
-
-
-
Method Detail
-
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
-
-