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

temporarily remove finite model finding from theory_str

This commit is contained in:
Murphy Berzish 2017-02-07 17:14:11 -05:00
parent 55cb440aae
commit c456795acd

View file

@ -6968,6 +6968,7 @@ void theory_str::handle_equality(expr * lhs, expr * rhs) {
return;
}
/* // temporarily disabled, we are borrowing these testers for something else
if (m_params.m_FiniteOverlapModels && !finite_model_test_varlists.empty()) {
// TODO NEXT
if (finite_model_test_varlists.contains(lhs)) {
@ -6976,6 +6977,7 @@ void theory_str::handle_equality(expr * lhs, expr * rhs) {
finite_model_test(rhs, lhs); return;
}
}
*/
if (free_var_attempt(lhs, rhs) || free_var_attempt(rhs, lhs)) {
return;