Class DebuggingProverEnvironment
- java.lang.Object
-
- org.sosy_lab.java_smt.delegate.debugging.DebuggingProverEnvironment
-
- All Implemented Interfaces:
AutoCloseable
,BasicProverEnvironment<Void>
,ProverEnvironment
public class DebuggingProverEnvironment extends Object implements ProverEnvironment
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.sosy_lab.java_smt.api.BasicProverEnvironment
BasicProverEnvironment.AllSatCallback<R>
-
-
Field Summary
-
Fields inherited from interface org.sosy_lab.java_smt.api.BasicProverEnvironment
NO_MODEL_HELP
-
-
Constructor Summary
Constructors Constructor Description DebuggingProverEnvironment(BasicProverEnvironment<Void> pDelegate, org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions pDebugging)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable T
addConstraint(BooleanFormula constraint)
Add a constraint to the latest backtracking point.<R> R
allSat(BasicProverEnvironment.AllSatCallback<R> callback, List<BooleanFormula> important)
Get all satisfying assignments of the current environment with regard to a subset of terms, and create a region representing all those models.void
close()
Closes the prover environment.Model
getModel()
Get a satisfying assignment.List<BooleanFormula>
getUnsatCore()
Get an unsat core.boolean
isUnsat()
Check whether the conjunction of all formulas on the stack is unsatisfiable.boolean
isUnsatWithAssumptions(Collection<BooleanFormula> assumptions)
Check whether the conjunction of all formulas on the stack together with the list of assumptions is satisfiable.void
pop()
Remove one backtracking point/level from the current stack.void
push()
Create a new backtracking point, i.e., a new level on the assertion stack.int
size()
Get the number of backtracking points/levels on the current stack.Optional<List<BooleanFormula>>
unsatCoreOverAssumptions(Collection<BooleanFormula> assumptions)
Returns an UNSAT core (if it exists, otherwiseOptional.empty()
), over the chosen assumptions.-
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.BasicProverEnvironment
addConstraint, allSat, close, getEvaluator, getModel, getModelAssignments, getStatistics, getUnsatCore, isUnsat, isUnsatWithAssumptions, pop, push, push, registerUserPropagator, size, unsatCoreOverAssumptions
-
-
-
-
Constructor Detail
-
DebuggingProverEnvironment
public DebuggingProverEnvironment(BasicProverEnvironment<Void> pDelegate, org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions pDebugging)
-
-
Method Detail
-
pop
public void pop()
Description copied from interface:BasicProverEnvironment
Remove one backtracking point/level from the current stack. This removes the latest level including all of its formulas, i.e., all formulas that were added for this backtracking point.- Specified by:
pop
in interfaceBasicProverEnvironment<T>
-
addConstraint
public @Nullable T addConstraint(BooleanFormula constraint) throws InterruptedException
Description copied from interface:BasicProverEnvironment
Add a constraint to the latest backtracking point.- Specified by:
addConstraint
in interfaceBasicProverEnvironment<T>
- Throws:
InterruptedException
-
push
public void push() throws InterruptedException
Description copied from interface:BasicProverEnvironment
Create a new backtracking point, i.e., a new level on the assertion stack. Each level can hold several asserted formulas.If formulas are added before creating the first backtracking point, they can not be removed via a POP-operation.
- Specified by:
push
in interfaceBasicProverEnvironment<T>
- Throws:
InterruptedException
-
size
public int size()
Description copied from interface:BasicProverEnvironment
Get the number of backtracking points/levels on the current stack.Caution: This is the number of PUSH-operations, and not necessarily equal to the number of asserted formulas. On any level there can be an arbitrary number of asserted formulas. Even with size of 0, formulas can already be asserted (at bottom level).
- Specified by:
size
in interfaceBasicProverEnvironment<T>
-
isUnsat
public boolean isUnsat() throws SolverException, InterruptedException
Description copied from interface:BasicProverEnvironment
Check whether the conjunction of all formulas on the stack is unsatisfiable.- Specified by:
isUnsat
in interfaceBasicProverEnvironment<T>
- Throws:
SolverException
InterruptedException
-
isUnsatWithAssumptions
public boolean isUnsatWithAssumptions(Collection<BooleanFormula> assumptions) throws SolverException, InterruptedException
Description copied from interface:BasicProverEnvironment
Check whether the conjunction of all formulas on the stack together with the list of assumptions is satisfiable.- Specified by:
isUnsatWithAssumptions
in interfaceBasicProverEnvironment<T>
- Parameters:
assumptions
- A list of literals.- Throws:
SolverException
InterruptedException
-
getModel
public Model getModel() throws SolverException
Description copied from interface:BasicProverEnvironment
Get a satisfying assignment. This method should be called only immediately after anBasicProverEnvironment.isUnsat()
call that returnedfalse
. The returned model is guaranteed to stay constant and valid as long as the solver context is available, even if constraints are added to, pushed or popped from the prover stack.A model might contain additional symbols with their evaluation, if a solver uses its own temporary symbols. There should be at least a value-assignment for each free symbol.
- Specified by:
getModel
in interfaceBasicProverEnvironment<T>
- Throws:
SolverException
-
getUnsatCore
public List<BooleanFormula> getUnsatCore()
Description copied from interface:BasicProverEnvironment
Get an unsat core. This should be called only immediately after anBasicProverEnvironment.isUnsat()
call that returnedfalse
.- Specified by:
getUnsatCore
in interfaceBasicProverEnvironment<T>
-
unsatCoreOverAssumptions
public Optional<List<BooleanFormula>> unsatCoreOverAssumptions(Collection<BooleanFormula> assumptions) throws SolverException, InterruptedException
Description copied from interface:BasicProverEnvironment
Returns an UNSAT core (if it exists, otherwiseOptional.empty()
), over the chosen assumptions. Does NOT require theSolverContext.ProverOptions.GENERATE_UNSAT_CORE
option to work.- Specified by:
unsatCoreOverAssumptions
in interfaceBasicProverEnvironment<T>
- Parameters:
assumptions
- Selected assumptions- Returns:
- Empty optional if the constraints with assumptions are satisfiable, subset of assumptions which is unsatisfiable with the original constraints otherwise.
- Throws:
SolverException
InterruptedException
-
close
public void close()
Description copied from interface:BasicProverEnvironment
Closes the prover environment. The object should be discarded, and should not be used after closing. The first call of this method will close the prover instance, further calls are ignored.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceBasicProverEnvironment<T>
-
allSat
public <R> R allSat(BasicProverEnvironment.AllSatCallback<R> callback, List<BooleanFormula> important) throws InterruptedException, SolverException
Description copied from interface:BasicProverEnvironment
Get all satisfying assignments of the current environment with regard to a subset of terms, and create a region representing all those models.- Specified by:
allSat
in interfaceBasicProverEnvironment<T>
important
- A set of (positive) variables appearing in the asserted queries. Only these variables will appear in the region.- Returns:
- A region representing all satisfying models of the formula.
- Throws:
InterruptedException
SolverException
-
-