We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be4a08d commit 16fdcb2Copy full SHA for 16fdcb2
src/org/sosy_lab/java_smt/solvers/cvc5/CVC5AbstractProver.java
@@ -99,6 +99,10 @@ protected void setSolverOptions(
99
// Set Strings option to enable all String features (such as lessOrEquals)
100
pSolver.setOption("strings-exp", "true");
101
102
+ // Enable experimental array features
103
+ // Needed when array constants (= with default element) are used
104
+ pSolver.setOption("arrays-exp", "true");
105
+
106
// Enable more complete quantifier solving (for more info see CVC5QuantifiedFormulaManager)
107
pSolver.setOption("full-saturate-quant", "true");
108
}
0 commit comments