3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-16 13:51:44 +00:00
This commit is contained in:
Jakob Rath 2023-02-20 11:56:23 +01:00
parent 4501a372b1
commit 7f41761616
4 changed files with 9 additions and 0 deletions

View file

@ -403,6 +403,9 @@ namespace polysat {
/** Create expression for bit-wise xor of p, q. */
pdd bxor(pdd const& p, pdd const& q) { return m_constraints.bxor(p, q); }
/** Create expression for bit-wise xnor of p, q. */
pdd bxnor(pdd const& p, pdd const& q) { return m_constraints.bxnor(p, q); }
/** Create expression for bit-wise nand of p, q. */
pdd bnand(pdd const& p, pdd const& q) { return m_constraints.bnand(p, q); }