mirror of
https://github.com/Z3Prover/z3
synced 2025-06-21 05:13:39 +00:00
meeting notes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
806571d2cd
commit
48d5a98edc
1 changed files with 13 additions and 0 deletions
|
@ -631,6 +631,7 @@ namespace polysat {
|
||||||
|
|
||||||
bool viable::resolve(pvar v, conflict2& core) {
|
bool viable::resolve(pvar v, conflict2& core) {
|
||||||
NOT_IMPLEMENTED_YET();
|
NOT_IMPLEMENTED_YET();
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool viable::resolve(pvar v, conflict& core) {
|
bool viable::resolve(pvar v, conflict& core) {
|
||||||
|
@ -652,6 +653,18 @@ namespace polysat {
|
||||||
auto rhs = next_hi - next_lo;
|
auto rhs = next_hi - next_lo;
|
||||||
signed_constraint c = s.m_constraints.ult(lhs, rhs);
|
signed_constraint c = s.m_constraints.ult(lhs, rhs);
|
||||||
core.propagate(c);
|
core.propagate(c);
|
||||||
|
#if 0
|
||||||
|
if (n != first) {
|
||||||
|
while {
|
||||||
|
entry* n1 = n->next();
|
||||||
|
if (n1 != first && e->currently_contains(*n1)) {
|
||||||
|
n = n1;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while (false);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
for (auto sc : e->side_cond)
|
for (auto sc : e->side_cond)
|
||||||
core.propagate(sc);
|
core.propagate(sc);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue