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

add string constant cache to theory_str and associated param

This commit is contained in:
Murphy Berzish 2016-12-18 18:47:38 -05:00
parent e5d3e425f1
commit 94762d276d
4 changed files with 32 additions and 19 deletions

View file

@ -26,4 +26,5 @@ void theory_str_params::updt_params(params_ref const & _p) {
m_AggressiveUnrollTesting = p.str_aggressive_unroll_testing();
m_UseFastLengthTesterCache = p.str_fast_length_tester_cache();
m_UseFastValueTesterCache = p.str_fast_value_tester_cache();
m_StringConstantCache = p.str_string_constant_cache();
}