mirror of
https://github.com/Z3Prover/z3
synced 2025-08-22 11:07:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fe7a7fe23f
commit
88f0e4a64c
6 changed files with 160 additions and 39 deletions
|
@ -198,9 +198,8 @@ namespace nlsat {
|
|||
*/
|
||||
void reset_already_added() {
|
||||
SASSERT(m_result != 0);
|
||||
unsigned sz = m_result->size();
|
||||
for (unsigned i = 0; i < sz; i++)
|
||||
m_already_added_literal[(*m_result)[i].index()] = false;
|
||||
for (literal lit : *m_result)
|
||||
m_already_added_literal[lit.index()] = false;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue