The field declarations. @throws Z3Exception
()
| 46 | * @throws Z3Exception |
| 47 | **/ |
| 48 | public FuncDecl<?>[] getFieldDecls() |
| 49 | { |
| 50 | |
| 51 | int n = getNumFields(); |
| 52 | FuncDecl<?>[] res = new FuncDecl[n]; |
| 53 | for (int i = 0; i < n; i++) |
| 54 | res[i] = new FuncDecl<>(getContext(), Native.getTupleSortFieldDecl( |
| 55 | getContext().nCtx(), getNativeObject(), i)); |
| 56 | return res; |
| 57 | } |
| 58 | |
| 59 | TupleSort(Context ctx, Symbol name, int numFields, Symbol[] fieldNames, |
| 60 | Sort[] fieldSorts) |
no test coverage detected