3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Overload xor operator for BoolRef (#7043)

This commit is contained in:
Asger Hautop Drewsen 2023-12-05 16:48:57 +01:00 committed by GitHub
parent 4d4359f78a
commit 764f0d54a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1593,6 +1593,9 @@ class BoolRef(ExprRef):
def __or__(self, other):
return Or(self, other)
def __xor__(self, other):
return Xor(self, other)
def __invert__(self):
return Not(self)