3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 06:03:23 +00:00

streamline pb solver interface and naming after removal of xor

This commit is contained in:
Nikolaj Bjorner 2021-02-28 12:32:04 -08:00
parent 13f05ae9dc
commit 026065ff71
73 changed files with 1131 additions and 1201 deletions

View file

@ -69,7 +69,7 @@ namespace smt {
unsigned operator()(induction_term_and_position_t const& t) const {
unsigned a = get_node_hash(t.m_term);
for (auto const& p : t.m_positions) {
a = mk_mix(a, p.second, get_node_hash(p.first->get_owner()));
a = mk_mix(a, p.second, get_node_hash(p.first->get_expr()));
}
return a;
}