File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ struct JavaInfo {
9292 jmethodID eq = nullptr;
9393 jmethodID final = nullptr;
9494 jmethodID decide = nullptr;
95+ jmethodID on_binding = nullptr;
9596
9697 Z3_solver_callback cb = nullptr;
9798};
@@ -173,6 +174,7 @@ DLL_VIS JNIEXPORT jlong JNICALL Java_com_microsoft_z3_Native_propagateInit(JNIEn
173174 info->eq = jenv->GetMethodID(jcls, "eqWrapper", "(JJ)V");
174175 info->final = jenv->GetMethodID(jcls, "finWrapper", "()V");
175176 info->decide = jenv->GetMethodID(jcls, "decideWrapper", "(JIZ)V");
177+ info->on_binding = jenv->GetMethodID(jcls, "onBindingWrapper", "(JIZ)V");
176178
177179 if (!info->push || !info->pop || !info->fresh || !info->created || !info->fixed || !info->eq || !info->final || !info->decide) {
178180 assert(false);
You can’t perform that action at this time.
0 commit comments