3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00

revert some fixes to euf

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-11-29 13:47:59 -08:00
parent 41a3196c89
commit 4289cfac8d
2 changed files with 3 additions and 3 deletions

View file

@ -89,7 +89,7 @@ namespace euf {
enode* a, * b;
to_merge_t t;
bool commutativity() const { return t == to_merge_comm; }
to_merge(enode* a, enode* b, bool c) : a(a), b(b), t(c ? to_merge_comm : to_merge_comm) {}
to_merge(enode* a, enode* b, bool c) : a(a), b(b), t(c ? to_merge_comm : to_merge_plain) {}
to_merge(enode* p, enode* ante): a(p), b(ante), t(to_add_literal) {}
};