MCPcopy Create free account
hub / github.com/Z3Prover/z3 / getTesterDecl

Method getTesterDecl

src/api/java/Constructor.java:63–70  ·  view source on GitHub ↗

The function declaration of the tester. @throws Z3Exception @throws Z3Exception on error

()

Source from the content-addressed store, hash-verified

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

Callers 2

treeExampleMethod · 0.95
forestExampleMethod · 0.95

Calls 3

nCtxMethod · 0.80
getContextMethod · 0.80
getNativeObjectMethod · 0.80

Tested by

no test coverage detected