Skip to content

Commit 0ecc5e4

Browse files
committed
Activate an option for better quantifiers in CVC4
1 parent bbac993 commit 0ecc5e4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/org/sosy_lab/java_smt/solvers/cvc4/CVC4TheoremProver.java

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ private void setOptions(int randomSeed, Set<ProverOptions> pOptions) {
9898
smtEngine.setOption("random-seed", new SExpr(randomSeed));
9999
// Set Strings option to enable all String features (such as lessOrEquals)
100100
smtEngine.setOption("strings-exp", new SExpr(true));
101+
// Enable more complete quantifier solving
102+
smtEngine.setOption("full-saturate-quant", new SExpr(true));
101103
}
102104

103105
protected void setOptionForIncremental() {

0 commit comments

Comments
 (0)