mirror of
https://github.com/Z3Prover/z3
synced 2025-05-06 07:15:47 +00:00
retire deprecated functionality
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8ec5ccbb9a
commit
8db711bc3c
15 changed files with 395 additions and 1100 deletions
|
@ -180,17 +180,10 @@ namespace polysat {
|
|||
if (x_max * y_max > pddm.max_value())
|
||||
push_omega_bisect(x, x_max, y, y_max);
|
||||
else {
|
||||
#if NEW_VIABLE
|
||||
for (auto const& c : s.m_viable.get_constraints(y.var()))
|
||||
m_new_constraints.insert(c);
|
||||
for (auto const& c : s.m_viable.get_constraints(x.var()))
|
||||
m_new_constraints.insert(c);
|
||||
#else
|
||||
for (auto c : s.m_cjust[y.var()])
|
||||
m_new_constraints.insert(c);
|
||||
for (auto c : s.m_cjust[x.var()])
|
||||
m_new_constraints.insert(c);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue