Z3
Public Member Functions | Data Fields
ScopedConstructorList 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 4261 of file z3py.py.

Constructor & Destructor Documentation

def __init__ (   self,
  c,
  ctx 
)

Definition at line 4263 of file z3py.py.

4263  def __init__(self, c, ctx):
4264  self.c = c
4265  self.ctx = ctx
def __init__(self, c, ctx)
Definition: z3py.py:4263
def __del__ (   self)

Definition at line 4266 of file z3py.py.

4266  def __del__(self):
4267  Z3_del_constructor_list(self.ctx.ref(), self.c)
4268 
void Z3_API Z3_del_constructor_list(Z3_context c, Z3_constructor_list clist)
Reclaim memory allocated for constructor list.

Field Documentation

c

Definition at line 4264 of file z3py.py.

Referenced by ScopedConstructorList.__del__().

ctx