3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-07-05 14:32:13 -07:00
parent 5262248823
commit b419a0e4a4
4 changed files with 288 additions and 68 deletions

View file

@ -96,10 +96,8 @@ namespace sat {
cache_bins(l, old_tr_sz);
s.pop(1);
literal_vector::iterator it = m_to_assert.begin();
literal_vector::iterator end = m_to_assert.end();
for (; it != end; ++it) {
s.assign(*it, justification());
for (literal l : m_to_assert) {
s.assign(l, justification());
m_num_assigned++;
}
}