mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 06:15:46 +00:00
updated conflict state
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
486cc632d0
commit
c48f14e537
8 changed files with 1085 additions and 1067 deletions
|
@ -555,19 +555,15 @@ namespace polysat {
|
|||
auto lhs = hi - next_lo;
|
||||
auto rhs = next_hi - next_lo;
|
||||
signed_constraint c = s.m_constraints.ult(lhs, rhs);
|
||||
core.insert(c);
|
||||
}
|
||||
for (auto sc : e->side_cond) {
|
||||
core.insert(sc);
|
||||
core.insert_vars(sc);
|
||||
core.propagate(c);
|
||||
}
|
||||
for (auto sc : e->side_cond)
|
||||
core.propagate(sc);
|
||||
core.insert(e->src);
|
||||
e = n;
|
||||
}
|
||||
while (e != first);
|
||||
|
||||
// core.set_bailout();
|
||||
// TODO - review this; c is true under current assignment?
|
||||
for (auto c : core) {
|
||||
if (c.bvalue(s) == l_false) {
|
||||
core.reset();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue