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:
parent
55cb440aae
commit
c456795acd
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue