mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 02:45:51 +00:00
.NET and Java API Bugfix (Codeplex issue 101)
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
7bb1469d71
commit
944dfee008
2 changed files with 2 additions and 2 deletions
|
@ -94,7 +94,7 @@ public class Expr extends AST
|
|||
public void update(Expr[] args) throws Z3Exception
|
||||
{
|
||||
getContext().checkContextMatch(args);
|
||||
if (args.length != getNumArgs())
|
||||
if (isApp() && args.length != getNumArgs())
|
||||
throw new Z3Exception("Number of arguments does not match");
|
||||
setNativeObject(Native.updateTerm(getContext().nCtx(), getNativeObject(),
|
||||
(int) args.length, Expr.arrayToNative(args)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue