The domain of the function declaration
()
| 93 | * The domain of the function declaration |
| 94 | **/ |
| 95 | public Sort[] getDomain() |
| 96 | { |
| 97 | |
| 98 | int n = getDomainSize(); |
| 99 | |
| 100 | Sort[] res = new Sort[n]; |
| 101 | for (int i = 0; i < n; i++) |
| 102 | res[i] = Sort.create(getContext(), |
| 103 | Native.getDomain(getContext().nCtx(), getNativeObject(), i)); |
| 104 | return res; |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * The range of the function declaration |
no test coverage detected