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

theory_str binary search heuristic WIP

This commit is contained in:
Murphy Berzish 2016-12-22 19:17:42 -05:00
parent df63b62763
commit 2dc9b486d3
5 changed files with 442 additions and 168 deletions

View file

@ -27,4 +27,6 @@ void theory_str_params::updt_params(params_ref const & _p) {
m_UseFastLengthTesterCache = p.str_fast_length_tester_cache();
m_UseFastValueTesterCache = p.str_fast_value_tester_cache();
m_StringConstantCache = p.str_string_constant_cache();
m_UseBinarySearch = p.str_use_binary_search();
m_BinarySearchInitialUpperBound = p.str_binary_search_start();
}