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:
parent
1a75781a3c
commit
7b3203b48e
1 changed files with 2 additions and 2 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue