mirror of
https://github.com/Z3Prover/z3
synced 2025-04-26 18:45:33 +00:00
Improved memory use of the .NET API
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
635fbee2bc
commit
3b78509d0a
16 changed files with 44 additions and 9 deletions
|
@ -114,6 +114,8 @@ namespace Microsoft.Z3
|
|||
|
||||
internal class DecRefQueue : IDecRefQueue
|
||||
{
|
||||
public DecRefQueue() : base() { }
|
||||
public DecRefQueue(uint move_limit) : base(move_limit) { }
|
||||
public override void IncRef(Context ctx, IntPtr obj)
|
||||
{
|
||||
Native.Z3_tactic_inc_ref(ctx.nCtx, obj);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue