3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-30 04:15:51 +00:00

add more parameters for theory_str

This commit is contained in:
Murphy Berzish 2016-12-13 19:38:40 -05:00
parent bced5828f7
commit 27a2c20c1c
5 changed files with 37 additions and 30 deletions

View file

@ -23,4 +23,7 @@ void theory_str_params::updt_params(params_ref const & _p) {
m_AssertStrongerArrangements = p.str_strong_arrangements();
m_AggressiveLengthTesting = p.str_aggressive_length_testing();
m_AggressiveValueTesting = p.str_aggressive_value_testing();
m_AggressiveUnrollTesting = p.str_aggressive_unroll_testing();
m_UseFastLengthTesterCache = p.str_fast_length_tester_cache();
m_UseFastValueTesterCache = p.str_fast_value_tester_cache();
}