We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d57dd6e commit 0cefc92Copy full SHA for 0cefc92
1 file changed
src/api/java/NativeStatic.txt
@@ -92,6 +92,7 @@ struct JavaInfo {
92
jmethodID eq = nullptr;
93
jmethodID final = nullptr;
94
jmethodID decide = nullptr;
95
+ jmethodID on_binding = nullptr;
96
97
Z3_solver_callback cb = nullptr;
98
};
@@ -173,6 +174,7 @@ DLL_VIS JNIEXPORT jlong JNICALL Java_com_microsoft_z3_Native_propagateInit(JNIEn
173
174
info->eq = jenv->GetMethodID(jcls, "eqWrapper", "(JJ)V");
175
info->final = jenv->GetMethodID(jcls, "finWrapper", "()V");
176
info->decide = jenv->GetMethodID(jcls, "decideWrapper", "(JIZ)V");
177
+ info->on_binding = jenv->GetMethodID(jcls, "onBindingWrapper", "(JIZ)V");
178
179
if (!info->push || !info->pop || !info->fresh || !info->created || !info->fixed || !info->eq || !info->final || !info->decide) {
180
assert(false);
0 commit comments