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

Constructor & Destructor Documentation

def __init__ (   self,
  c,
  ctx 
)

Definition at line 4255 of file z3py.py.

4255  def __init__(self, c, ctx):
4256  self.c = c
4257  self.ctx = ctx
def __init__(self, c, ctx)
Definition: z3py.py:4255
def __del__ (   self)

Definition at line 4258 of file z3py.py.

4258  def __del__(self):
4259  Z3_del_constructor(self.ctx.ref(), self.c)
4260 
void Z3_API Z3_del_constructor(Z3_context c, Z3_constructor constr)
Reclaim memory allocated to constructor.
def __del__(self)
Definition: z3py.py:4258

Field Documentation

c

Definition at line 4256 of file z3py.py.

Referenced by ScopedConstructor.__del__().

ctx