3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

disable aggressive length/value testing in theory_str, it seems to be detrimental

This commit is contained in:
Murphy Berzish 2016-08-21 00:30:29 -04:00
parent 1a75781a3c
commit 7b3203b48e

View file

@ -28,8 +28,8 @@ namespace smt {
theory_str::theory_str(ast_manager & m):
theory(m.mk_family_id("str")),
/* Options */
opt_AggressiveLengthTesting(true),
opt_AggressiveValueTesting(true),
opt_AggressiveLengthTesting(false),
opt_AggressiveValueTesting(false),
opt_EagerStringConstantLengthAssertions(true),
opt_VerifyFinalCheckProgress(true),
opt_LCMUnrollStep(2),