Z3
Public Member Functions | Data Fields
ScopedConstructor Class Reference

Public Member Functions

def __init__ (self, c, ctx)
 
def __del__ (self)
 

Data Fields

 c
 
 ctx
 

Detailed Description

Auxiliary object used to create Z3 datatypes.

Definition at line 4216 of file z3py.py.

Constructor & Destructor Documentation

def __init__ (   self,
  c,
  ctx 
)

Definition at line 4218 of file z3py.py.

4218  def __init__(self, c, ctx):
4219  self.c = c
4220  self.ctx = ctx
def __init__(self, c, ctx)
Definition: z3py.py:4218
def __del__ (   self)

Definition at line 4221 of file z3py.py.

4221  def __del__(self):
4222  Z3_del_constructor(self.ctx.ref(), self.c)
4223 
void Z3_API Z3_del_constructor(__in Z3_context c, __in Z3_constructor constr)
Reclaim memory allocated to constructor.
def __del__(self)
Definition: z3py.py:4221

Field Documentation

c

Definition at line 4219 of file z3py.py.

Referenced by ScopedConstructor.__del__().

ctx