mirror of
https://github.com/Z3Prover/z3
synced 2025-11-09 23:52:02 +00:00
cleanup
This commit is contained in:
parent
4b1ec583ec
commit
579275a17d
6 changed files with 16 additions and 39 deletions
|
|
@ -216,8 +216,8 @@ namespace polysat {
|
|||
SASSERT(all_of(m_lemma, [this](sat::literal lit) { return is_forced_false(s.lit2cnstr(lit)); }));
|
||||
|
||||
m_lemma.insert(c);
|
||||
core.add_lemma(m_rule, m_lemma.build());
|
||||
verbose_stream() << "Lemma\n";
|
||||
m_lemma.set_name(m_rule);
|
||||
core.add_lemma(m_lemma.build());
|
||||
log_lemma(v, core);
|
||||
return true;
|
||||
}
|
||||
|
|
@ -247,7 +247,8 @@ namespace polysat {
|
|||
return false;
|
||||
|
||||
m_lemma.insert_eval(c);
|
||||
core.add_lemma(m_rule, m_lemma.build());
|
||||
m_lemma.set_name(m_rule);
|
||||
core.add_lemma(m_lemma.build());
|
||||
log_lemma(v, core);
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue