3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-14 06:45:25 +00:00

slicing: fix dependency tracking for values

This commit is contained in:
Jakob Rath 2023-11-06 14:17:28 +01:00
parent f49440690d
commit f09d37f93f
3 changed files with 21 additions and 14 deletions

View file

@ -154,7 +154,7 @@ namespace polysat {
enode* parent(enode* s) const { return info(s).parent; }
enode* get_value_node(enode* s) const { return info(s->get_root()).value_node; }
enode* get_value_node(enode* s) const { return info(s).value_node; }
void set_value_node(enode* s, enode* value_node);
unsigned get_cut(enode* s) const { return info(s).cut; }