mirror of
https://github.com/Z3Prover/z3
synced 2025-06-22 22:03:39 +00:00
remove watch, hoist orbit to track used variables
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1d0572354b
commit
c1032c3403
6 changed files with 46 additions and 117 deletions
|
@ -285,7 +285,12 @@ namespace dd {
|
|||
if (level_p > level_q) {
|
||||
push(apply_rec(lo(p), q, op));
|
||||
push(apply_rec(hi(p), q, op));
|
||||
r = make_node(level_p, read(2), read(1));
|
||||
if (read(2) == lo(p) && read(1) == hi(p)) {
|
||||
r = p;
|
||||
}
|
||||
else {
|
||||
r = make_node(level_p, read(2), read(1));
|
||||
}
|
||||
}
|
||||
else {
|
||||
SASSERT(level_p == level_q);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue