mirror of
https://github.com/Z3Prover/z3
synced 2025-10-10 17:58:06 +00:00
Merge branch 'opt' of https://github.com/nikolajbjorner/z3 into opt
This commit is contained in:
commit
54f2063c81
4 changed files with 15 additions and 13 deletions
|
@ -209,10 +209,10 @@ namespace sat {
|
|||
if (!c.is_learned()) {
|
||||
m_stats.m_non_learned_generation++;
|
||||
}
|
||||
if (m_config.m_drat) {
|
||||
if (m_config.m_drat && !m_drat.is_cleaned(c)) {
|
||||
m_drat.del(c);
|
||||
}
|
||||
else if (!m_config.m_drat || !m_config.m_drat_check) {
|
||||
else if (!m_config.m_drat || !m_config.m_drat_check || m_drat.is_cleaned(c)) {
|
||||
m_cls_allocator.del_clause(&c);
|
||||
}
|
||||
m_stats.m_del_clause++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue