The function declaration of the tester. @throws Z3Exception @throws Z3Exception on error
()
| 61 | * @throws Z3Exception on error |
| 62 | **/ |
| 63 | public FuncDecl<BoolSort> getTesterDecl() |
| 64 | { |
| 65 | Native.LongPtr constructor = new Native.LongPtr(); |
| 66 | Native.LongPtr tester = new Native.LongPtr(); |
| 67 | long[] accessors = new long[n]; |
| 68 | Native.queryConstructor(getContext().nCtx(), getNativeObject(), n, constructor, tester, accessors); |
| 69 | return new FuncDecl<>(getContext(), tester.value); |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * The function declarations of the accessors |
no test coverage detected