3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05: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

@ -68,6 +68,9 @@ struct theory_str_params {
*/
bool m_StringConstantCache;
bool m_UseBinarySearch;
unsigned m_BinarySearchInitialUpperBound;
theory_str_params(params_ref const & p = params_ref()):
m_AssertStrongerArrangements(true),
m_AggressiveLengthTesting(false),
@ -75,7 +78,9 @@ struct theory_str_params {
m_AggressiveUnrollTesting(true),
m_UseFastLengthTesterCache(false),
m_UseFastValueTesterCache(true),
m_StringConstantCache(true)
m_StringConstantCache(true),
m_UseBinarySearch(false),
m_BinarySearchInitialUpperBound(64)
{
updt_params(p);
}