Inheritance diagram for BoolRef:Public Member Functions | |
| def | sort |
| def sort | ( | self | ) |
Return the sort of expression `self`.
>>> x = Int('x')
>>> (x + 1).sort()
Int
>>> y = Real('y')
>>> (x + y).sort()
Real
Reimplemented from ExprRef.
Reimplemented in QuantifierRef.
Definition at line 1243 of file z3py.py.
Referenced by ArrayRef.domain(), and ArrayRef.range().
01243 01244 def sort(self): 01245 return BoolSortRef(Z3_get_sort(self.ctx_ref(), self.as_ast()), self.ctx)
1.7.6.1