mirror of
https://github.com/Z3Prover/z3
synced 2025-12-27 14:36:35 +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
|
|
@ -334,13 +334,13 @@ public class Fixedpoint extends Z3Object
|
|||
|
||||
void incRef(long o) throws Z3Exception
|
||||
{
|
||||
getContext().fixedpoint_DRQ().incAndClear(getContext(), o);
|
||||
getContext().getFixedpointDRQ().incAndClear(getContext(), o);
|
||||
super.incRef(o);
|
||||
}
|
||||
|
||||
void decRef(long o) throws Z3Exception
|
||||
{
|
||||
getContext().fixedpoint_DRQ().add(o);
|
||||
getContext().getFixedpointDRQ().add(o);
|
||||
super.decRef(o);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue