3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-17 16:52:15 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-08-02 20:41:34 -07:00
parent 1173c93150
commit f333d78f01
2 changed files with 5 additions and 2 deletions

View file

@ -656,6 +656,7 @@ namespace sat {
s.propagate_core(false); // must not use propagate(), since s.m_clauses is not in a consistent state.
if (s.inconsistent())
return;
m_use_list.reserve(s.num_vars());
unsigned new_trail_sz = s.m_trail.size();
for (unsigned i = old_trail_sz; i < new_trail_sz; i++) {
literal l = s.m_trail[i];