Microsoft.Z3.AST.DecRef C# (CSharp) 메소드

DecRef() 개인적인 메소드

private DecRef ( IntPtr o ) : void
o IntPtr
리턴 void
        internal override void DecRef(IntPtr o)
        {
            // Console.WriteLine("AST DecRef()");
            if (Context == null)
                throw new Z3Exception("dec() called on null context");
            if (o == IntPtr.Zero)
                throw new Z3Exception("dec() called on null AST");
            Context.AST_DRQ.Add(o);
            base.DecRef(o);
        }