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 4376 of file z3py.py.

Constructor & Destructor Documentation

§ __init__()

def __init__ (   self,
  c,
  ctx 
)

Definition at line 4378 of file z3py.py.

4378  def __init__(self, c, ctx):
4379  self.c = c
4380  self.ctx = ctx

§ __del__()

def __del__ (   self)

Definition at line 4381 of file z3py.py.

4381  def __del__(self):
4382  if self.ctx.ref() is not None:
4383  Z3_del_constructor_list(self.ctx.ref(), self.c)
4384 
void Z3_API Z3_del_constructor_list(Z3_context c, Z3_constructor_list clist)
Reclaim memory allocated for constructor list.

Field Documentation

§ c

c

Definition at line 4379 of file z3py.py.

§ ctx

ctx