There was an error while loading. Please reload this page.
1 parent 3abb091 commit 57a60c8Copy full SHA for 57a60c8
src/api/python/z3/z3.py
@@ -653,6 +653,10 @@ def __ne__(self, other):
653
"""
654
return not Z3_is_eq_sort(self.ctx_ref(), self.ast, other.ast)
655
656
+ def __gt__(self, other):
657
+ """Create the function space Array(self, other)"""
658
+ return ArraySort(self, other)
659
+
660
def __hash__(self):
661
""" Hash code. """
662
return AstRef.__hash__(self)
0 commit comments