mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
redoing arrays
This commit is contained in:
parent
aa901c4e88
commit
0ef0ed3b94
7 changed files with 61 additions and 52 deletions
|
@ -298,12 +298,9 @@ namespace euf {
|
|||
void solver::asserted(literal l) {
|
||||
|
||||
if (m_relevancy.enabled() && !m_relevancy.is_relevant(l)) {
|
||||
if (s().lvl(l) <= s().search_lvl())
|
||||
mark_relevant(l);
|
||||
else {
|
||||
m_relevancy.asserted(l);
|
||||
m_relevancy.asserted(l);
|
||||
if (!m_relevancy.is_relevant(l))
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
expr* e = m_bool_var2expr.get(l.var(), nullptr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue