mirror of
https://github.com/Z3Prover/z3
synced 2025-10-10 17:58:06 +00:00
build fix
This commit is contained in:
parent
daf7e9e3ef
commit
7c2fe46eb7
7 changed files with 46 additions and 49 deletions
|
@ -501,7 +501,7 @@ namespace sat {
|
|||
clause * solver::mk_nary_clause(unsigned num_lits, literal * lits, sat::status st) {
|
||||
m_stats.m_mk_clause++;
|
||||
clause * r = alloc_clause(num_lits, lits, st.is_redundant());
|
||||
SASSERT(!st.is_learned() || r->is_learned());
|
||||
SASSERT(!st.is_redundant() || r->is_learned());
|
||||
bool reinit = attach_nary_clause(*r);
|
||||
if (reinit && !st.is_redundant()) push_reinit_stack(*r);
|
||||
if (st.is_redundant()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue