mirror of
https://github.com/Z3Prover/z3
synced 2025-05-11 09:44:43 +00:00
Made DRQ objects public in Java and .NET APIs.
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
07c945718b
commit
4bed5183f8
32 changed files with 182 additions and 109 deletions
|
@ -229,7 +229,7 @@ public class AST extends Z3Object
|
|||
// Console.WriteLine("AST IncRef()");
|
||||
if (getContext() == null || o == 0)
|
||||
return;
|
||||
getContext().ast_DRQ().incAndClear(getContext(), o);
|
||||
getContext().getASTDRQ().incAndClear(getContext(), o);
|
||||
super.incRef(o);
|
||||
}
|
||||
|
||||
|
@ -238,7 +238,7 @@ public class AST extends Z3Object
|
|||
// Console.WriteLine("AST DecRef()");
|
||||
if (getContext() == null || o == 0)
|
||||
return;
|
||||
getContext().ast_DRQ().add(o);
|
||||
getContext().getASTDRQ().add(o);
|
||||
super.decRef(o);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue