Merge pull request #8754 from ethereum/smt_improve_array_performance

Use Spacer option to improve performance of constant arrays
This commit is contained in:
chriseth
2020-04-23 12:19:04 +02:00
committed by GitHub
7 changed files with 23 additions and 9 deletions
+2
View File
@@ -43,6 +43,8 @@ Z3CHCInterface::Z3CHCInterface():
p.set("fp.spacer.mbqi", false);
// Ground pobs by using values from a model.
p.set("fp.spacer.ground_pobs", false);
// Limits array reasoning, good for constant arrays.
p.set("fp.spacer.weak_abs", false);
m_solver.set(p);
}