Return the sort of the i-th bound variable.
(self, i: int)
| 844 | return str(v._ast) |
| 845 | |
| 846 | def var_sort(self, i: int) -> SortRef: |
| 847 | """Return the sort of the i-th bound variable.""" |
| 848 | return self._bound[i]._sort |
| 849 | |
| 850 | def weight(self) -> int: |
| 851 | """Return quantifier weight (default 0).""" |