Z3
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | Data Fields
Datatype Class Reference

Public Member Functions

def __init__
 
def declare_core
 
def declare
 
def __repr__
 
def create
 

Data Fields

 ctx
 
 name
 
 constructors
 

Detailed Description

Helper class for declaring Z3 datatypes. 

>>> List = Datatype('List')
>>> List.declare('cons', ('car', IntSort()), ('cdr', List))
>>> List.declare('nil')
>>> List = List.create()
>>> # List is now a Z3 declaration
>>> List.nil
nil
>>> List.cons(10, List.nil)
cons(10, nil)
>>> List.cons(10, List.nil).sort()
List
>>> cons = List.cons
>>> nil  = List.nil
>>> car  = List.car
>>> cdr  = List.cdr
>>> n = cons(1, cons(0, nil))
>>> n
cons(1, cons(0, nil))
>>> simplify(cdr(n))
cons(0, nil)
>>> simplify(car(n))
1

Definition at line 4176 of file z3py.py.

Constructor & Destructor Documentation

def __init__ (   self,
  name,
  ctx = None 
)

Definition at line 4202 of file z3py.py.

4203  def __init__(self, name, ctx=None):
4204  self.ctx = _get_ctx(ctx)
4205  self.name = name
4206  self.constructors = []
def __init__
Definition: z3py.py:4202

Member Function Documentation

def __repr__ (   self)

Definition at line 4234 of file z3py.py.

4235  def __repr__(self):
4236  return "Datatype(%s, %s)" % (self.name, self.constructors)
def __repr__
Definition: z3py.py:4234
def create (   self)
Create a Z3 datatype based on the constructors declared using the mehtod `declare()`.

The function `CreateDatatypes()` must be used to define mutually recursive datatypes.

>>> List = Datatype('List')
>>> List.declare('cons', ('car', IntSort()), ('cdr', List))
>>> List.declare('nil')
>>> List = List.create()
>>> List.nil
nil
>>> List.cons(10, List.nil)
cons(10, nil)

Definition at line 4237 of file z3py.py.

Referenced by Datatype.declare().

4238  def create(self):
4239  """Create a Z3 datatype based on the constructors declared using the mehtod `declare()`.
4240 
4241  The function `CreateDatatypes()` must be used to define mutually recursive datatypes.
4242 
4243  >>> List = Datatype('List')
4244  >>> List.declare('cons', ('car', IntSort()), ('cdr', List))
4245  >>> List.declare('nil')
4246  >>> List = List.create()
4247  >>> List.nil
4248  nil
4249  >>> List.cons(10, List.nil)
4250  cons(10, nil)
4251  """
4252  return CreateDatatypes([self])[0]
def CreateDatatypes
Definition: z3py.py:4269
def create
Definition: z3py.py:4237
def declare (   self,
  name,
  args 
)
Declare constructor named `name` with the given accessors `args`. 
Each accessor is a pair `(name, sort)`, where `name` is a string and `sort` a Z3 sort or a reference to the datatypes being declared. 

In the followin example `List.declare('cons', ('car', IntSort()), ('cdr', List))` 
declares the constructor named `cons` that builds a new List using an integer and a List. 
It also declares the accessors `car` and `cdr`. The accessor `car` extracts the integer of a `cons` cell, 
and `cdr` the list of a `cons` cell. After all constructors were declared, we use the method create() to create 
the actual datatype in Z3.

>>> List = Datatype('List')
>>> List.declare('cons', ('car', IntSort()), ('cdr', List))
>>> List.declare('nil')
>>> List = List.create()

Definition at line 4214 of file z3py.py.

Referenced by Datatype.create().

4215  def declare(self, name, *args):
4216  """Declare constructor named `name` with the given accessors `args`.
4217  Each accessor is a pair `(name, sort)`, where `name` is a string and `sort` a Z3 sort or a reference to the datatypes being declared.
4218 
4219  In the followin example `List.declare('cons', ('car', IntSort()), ('cdr', List))`
4220  declares the constructor named `cons` that builds a new List using an integer and a List.
4221  It also declares the accessors `car` and `cdr`. The accessor `car` extracts the integer of a `cons` cell,
4222  and `cdr` the list of a `cons` cell. After all constructors were declared, we use the method create() to create
4223  the actual datatype in Z3.
4224 
4225  >>> List = Datatype('List')
4226  >>> List.declare('cons', ('car', IntSort()), ('cdr', List))
4227  >>> List.declare('nil')
4228  >>> List = List.create()
4229  """
4230  if __debug__:
4231  _z3_assert(isinstance(name, str), "String expected")
4232  _z3_assert(name != "", "Constructor name cannot be empty")
4233  return self.declare_core(name, "is_" + name, *args)
def declare
Definition: z3py.py:4214
def declare_core
Definition: z3py.py:4207
def declare_core (   self,
  name,
  rec_name,
  args 
)

Definition at line 4207 of file z3py.py.

Referenced by Datatype.declare().

4208  def declare_core(self, name, rec_name, *args):
4209  if __debug__:
4210  _z3_assert(isinstance(name, str), "String expected")
4211  _z3_assert(isinstance(rec_name, str), "String expected")
4212  _z3_assert(all([_valid_accessor(a) for a in args]), "Valid list of accessors expected. An accessor is a pair of the form (String, Datatype|Sort)")
4213  self.constructors.append((name, rec_name, args))
def declare_core
Definition: z3py.py:4207

Field Documentation

constructors

Definition at line 4205 of file z3py.py.

Referenced by Datatype.__repr__().

ctx

Definition at line 4203 of file z3py.py.

Referenced by Probe.__eq__(), Probe.__ge__(), ApplyResult.__getitem__(), Probe.__gt__(), Probe.__le__(), Probe.__lt__(), Probe.__ne__(), Fixedpoint.add_rule(), Optimize.add_soft(), Tactic.apply(), ApplyResult.as_expr(), Fixedpoint.assert_exprs(), ApplyResult.convert_model(), Fixedpoint.get_answer(), Fixedpoint.get_assertions(), Fixedpoint.get_cover_delta(), Fixedpoint.get_rules(), Optimize.model(), Fixedpoint.param_descrs(), Optimize.param_descrs(), Tactic.param_descrs(), Fixedpoint.parse_file(), Fixedpoint.parse_string(), Fixedpoint.query(), Fixedpoint.set(), Optimize.set(), Tactic.solver(), Fixedpoint.statistics(), Optimize.statistics(), Solver.to_smt2(), and Fixedpoint.update_rule().

name

Definition at line 4204 of file z3py.py.

Referenced by Datatype.__repr__().