The sorts of the bound variables. @throws Z3Exception
()
| 125 | * @throws Z3Exception |
| 126 | **/ |
| 127 | public Sort[] getBoundVariableSorts() |
| 128 | { |
| 129 | int n = getNumBound(); |
| 130 | Sort[] res = new Sort[n]; |
| 131 | for (int i = 0; i < n; i++) |
| 132 | res[i] = Sort.create(getContext(), Native.getQuantifierBoundSort( |
| 133 | getContext().nCtx(), getNativeObject(), i)); |
| 134 | return res; |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * The body of the quantifier. |
nothing calls this directly
no test coverage detected