The sorts of the bound variables. @throws Z3Exception
()
| 55 | * @throws Z3Exception |
| 56 | **/ |
| 57 | public Sort[] getBoundVariableSorts() |
| 58 | { |
| 59 | int n = getNumBound(); |
| 60 | Sort[] res = new Sort[n]; |
| 61 | for (int i = 0; i < n; i++) |
| 62 | res[i] = Sort.create(getContext(), Native.getQuantifierBoundSort( |
| 63 | getContext().nCtx(), getNativeObject(), i)); |
| 64 | return res; |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * The body of the quantifier. |
nothing calls this directly
no test coverage detected