mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
n/a
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5262248823
commit
b419a0e4a4
4 changed files with 288 additions and 68 deletions
|
@ -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++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue