The function declaration of the constructor. @throws Z3Exception @throws Z3Exception on error
()
| 47 | * @throws Z3Exception on error |
| 48 | **/ |
| 49 | public FuncDecl<DatatypeSort<R>> ConstructorDecl() |
| 50 | { |
| 51 | Native.LongPtr constructor = new Native.LongPtr(); |
| 52 | Native.LongPtr tester = new Native.LongPtr(); |
| 53 | long[] accessors = new long[n]; |
| 54 | Native.queryConstructor(getContext().nCtx(), getNativeObject(), n, constructor, tester, accessors); |
| 55 | return new FuncDecl<>(getContext(), constructor.value); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * The function declaration of the tester. |
no test coverage detected