3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00

fix java API

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-07-02 09:32:58 -07:00
parent a406b8e93a
commit 370abf602c

View file

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