3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

update java example to bypass bit-rot

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-07-02 09:50:29 -07:00
parent 370abf602c
commit 648a531950
3 changed files with 5 additions and 4 deletions

View file

@ -95,7 +95,7 @@ public class Model extends Z3Object {
long fd = Native.getAsArrayFuncDecl(getContext().nCtx(), n);
return getFuncInterp(new FuncDecl(getContext(), fd));
}
return new FuncInterp(getContext(), n);
return null;
}
} else
{