mirror of
https://github.com/Z3Prover/z3
synced 2026-02-16 13:51:44 +00:00
xnor
This commit is contained in:
parent
4501a372b1
commit
7f41761616
4 changed files with 9 additions and 0 deletions
|
|
@ -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); }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue