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

no need to keep an enode_pair, since the other is always the root

This commit is contained in:
Jakob Rath 2023-08-08 17:13:05 +02:00
parent 99a078dd69
commit 3573305917
3 changed files with 8 additions and 7 deletions

View file

@ -339,8 +339,8 @@ namespace polysat {
void collect_simple_overlaps(pvar v, pvar_vector& out);
/** Collect fixed portions of the variable v */
void collect_fixed(pvar v, fixed_bits_vector& out, euf::enode_pair_vector& out_just);
void explain_fixed(euf::enode_pair const& just, std::function<void(sat::literal)> const& on_lit, std::function<void(pvar)> const& on_var);
void collect_fixed(pvar v, fixed_bits_vector& out, enode_vector& out_just);
void explain_fixed(euf::enode* just, std::function<void(sat::literal)> const& on_lit, std::function<void(pvar)> const& on_var);
std::ostream& display(std::ostream& out) const;
std::ostream& display_tree(std::ostream& out) const;