mirror of
https://github.com/Z3Prover/z3
synced 2025-05-11 09:44:43 +00:00
Bugfixes for the Java FPA API
Merge branch 'unstable' of https://git01.codeplex.com/z3 into unstable Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
42162f1ea5
commit
84ed1c19a0
2 changed files with 12 additions and 8 deletions
|
@ -227,10 +227,8 @@ public class AST extends Z3Object
|
|||
void incRef(long o) throws Z3Exception
|
||||
{
|
||||
// Console.WriteLine("AST IncRef()");
|
||||
if (getContext() == null)
|
||||
throw new Z3Exception("inc() called on null context");
|
||||
if (o == 0)
|
||||
throw new Z3Exception("inc() called on null AST");
|
||||
if (getContext() == null || o == 0)
|
||||
return;
|
||||
getContext().ast_DRQ().incAndClear(getContext(), o);
|
||||
super.incRef(o);
|
||||
}
|
||||
|
@ -238,10 +236,8 @@ public class AST extends Z3Object
|
|||
void decRef(long o) throws Z3Exception
|
||||
{
|
||||
// Console.WriteLine("AST DecRef()");
|
||||
if (getContext() == null)
|
||||
throw new Z3Exception("dec() called on null context");
|
||||
if (o == 0)
|
||||
throw new Z3Exception("dec() called on null AST");
|
||||
if (getContext() == null || o == 0)
|
||||
return;
|
||||
getContext().ast_DRQ().add(o);
|
||||
super.decRef(o);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue