Skip to content
Snippets Groups Projects
Commit b96d181e authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Add assumption is_integer == True to IntegerFunctionTwoArgsMixIn

parent 9d019783
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,10 @@ class IntegerFunctionTwoArgsMixIn(sp.Function):
raise ValueError("Integer functions can only be constructed with typed expressions")
return super().__new__(cls, *args)
@property
def is_integer(self):
return True
# noinspection PyPep8Naming
class bitwise_xor(IntegerFunctionTwoArgsMixIn):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment