mirror of
https://github.com/Z3Prover/z3
synced 2025-08-24 03:57:51 +00:00
fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a574eebd05
commit
95e2d174c7
5 changed files with 37 additions and 23 deletions
|
@ -90,7 +90,7 @@ namespace polysat {
|
|||
SASSERT(empty());
|
||||
m_conflict_var = v;
|
||||
for (auto c : s.m_cjust[v]) {
|
||||
c->set_var_dependent();
|
||||
c->set_var_dependent(); // ??
|
||||
insert(c);
|
||||
}
|
||||
SASSERT(!empty());
|
||||
|
@ -103,8 +103,8 @@ namespace polysat {
|
|||
LOG("Conflict: " << cl);
|
||||
SASSERT(empty());
|
||||
for (auto lit : cl) {
|
||||
auto c = s.lit2cnstr(lit);
|
||||
c->set_var_dependent();
|
||||
auto c = s.lit2cnstr(lit);
|
||||
// no c->set_var_dependent();
|
||||
insert(~c);
|
||||
}
|
||||
SASSERT(!empty());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue