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

theory_str parameters

This commit is contained in:
Murphy Berzish 2016-12-13 17:20:58 -05:00
parent f5bc17b864
commit bced5828f7
5 changed files with 26 additions and 22 deletions

View file

@ -30,8 +30,22 @@ struct theory_str_params {
*/
bool m_AssertStrongerArrangements;
/*
* If AggressiveLengthTesting is true, we manipulate the phase of length tester equalities
* to prioritize trying concrete length options over choosing the "more" option.
*/
bool m_AggressiveLengthTesting;
/*
* Similarly, if AggressiveValueTesting is true, we manipulate the phase of value tester equalities
* to prioritize trying concrete value options over choosing the "more" option.
*/
bool m_AggressiveValueTesting;
theory_str_params(params_ref const & p = params_ref()):
m_AssertStrongerArrangements(true)
m_AssertStrongerArrangements(true),
m_AggressiveLengthTesting(false),
m_AggressiveValueTesting(false)
{
updt_params(p);
}