The sorts of the columns of the relation sort. @throws Z3Exception
()
| 35 | * @throws Z3Exception |
| 36 | **/ |
| 37 | public Sort[] getColumnSorts() |
| 38 | { |
| 39 | |
| 40 | if (m_columnSorts != null) |
| 41 | return m_columnSorts; |
| 42 | |
| 43 | int n = getArity(); |
| 44 | Sort[] res = new Sort[n]; |
| 45 | for (int i = 0; i < n; i++) |
| 46 | res[i] = Sort.create(getContext(), Native.getRelationColumn(getContext() |
| 47 | .nCtx(), getNativeObject(), i)); |
| 48 | return res; |
| 49 | } |
| 50 | |
| 51 | private Sort[] m_columnSorts = null; |
| 52 |
nothing calls this directly
no test coverage detected