mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 03:27:52 +00:00
This commit is contained in:
parent
9a5c0f2312
commit
76427cd281
3 changed files with 10 additions and 1 deletions
|
@ -113,8 +113,11 @@ class sat_tactic : public tactic {
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
bool euf = m_goal2sat.has_euf();
|
||||
|
||||
for (auto* f : fmls_to_validate)
|
||||
if (md->is_false(f))
|
||||
if (!euf && md->is_false(f))
|
||||
IF_VERBOSE(0, verbose_stream() << "failed to validate: " << mk_pp(f, m) << "\n";);
|
||||
|
||||
m_goal2sat.update_model(md);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue