3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-30 20:35:51 +00:00

rename to some saner name

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-06-21 16:19:37 -07:00
parent 63f3c841d8
commit ce5c8b3066
6 changed files with 37 additions and 49 deletions

View file

@ -63,11 +63,11 @@ namespace polysat {
rational a = q.hi().val();
rational b = q.lo().val();
s.m_vble.intersect_eq(a, v, b, is_positive());
s.m_viable.intersect_eq(a, v, b, is_positive());
rational val;
if (s.m_vble.find_viable(v, val) == dd::find_t::singleton)
if (s.m_viable.find_viable(v, val) == dd::find_t::singleton)
s.propagate(v, val, *this);
return;
}