Z3
Public Member Functions | Data Fields
FuncInterp Class Reference
+ Inheritance diagram for FuncInterp:

Public Member Functions

def __init__ (self, f, ctx)
 
def __del__ (self)
 
def else_value (self)
 
def num_entries (self)
 
def arity (self)
 
def entry (self, idx)
 
def translate (self, other_ctx)
 
def __copy__ (self)
 
def __deepcopy__
 
def as_list (self)
 
def __repr__ (self)
 
- Public Member Functions inherited from Z3PPObject
def use_pp (self)
 

Data Fields

 f
 
 ctx
 

Detailed Description

Stores the interpretation of a function in a Z3 model.

Definition at line 6181 of file z3py.py.

Constructor & Destructor Documentation

def __init__ (   self,
  f,
  ctx 
)

Definition at line 6184 of file z3py.py.

6184  def __init__(self, f, ctx):
6185  self.f = f
6186  self.ctx = ctx
6187  if self.f is not None:
6188  Z3_func_interp_inc_ref(self.ctx.ref(), self.f)
6189 
void Z3_API Z3_func_interp_inc_ref(Z3_context c, Z3_func_interp f)
Increment the reference counter of the given Z3_func_interp object.
def __init__(self, f, ctx)
Definition: z3py.py:6184
def __del__ (   self)

Definition at line 6190 of file z3py.py.

6190  def __del__(self):
6191  if self.f is not None and self.ctx.ref() is not None:
6192  Z3_func_interp_dec_ref(self.ctx.ref(), self.f)
6193 
def __del__(self)
Definition: z3py.py:6190
void Z3_API Z3_func_interp_dec_ref(Z3_context c, Z3_func_interp f)
Decrement the reference counter of the given Z3_func_interp object.

Member Function Documentation

def __copy__ (   self)

Definition at line 6272 of file z3py.py.

6272  def __copy__(self):
6273  return self.translate(self.ctx)
6274 
def translate(self, other_ctx)
Definition: z3py.py:6267
def __copy__(self)
Definition: z3py.py:6272
def __deepcopy__ (   self,
  memo = {} 
)

Definition at line 6275 of file z3py.py.

6275  def __deepcopy__(self, memo={}):
6276  return self.translate(self.ctx)
6277 
def __deepcopy__
Definition: z3py.py:6275
def translate(self, other_ctx)
Definition: z3py.py:6267
def __repr__ (   self)

Definition at line 6295 of file z3py.py.

6295  def __repr__(self):
6296  return obj_to_string(self)
6297 
6298 
def __repr__(self)
Definition: z3py.py:6295
def arity (   self)
Return the number of arguments for each entry in the function interpretation `self`.

>>> f = Function('f', IntSort(), IntSort())
>>> s = Solver()
>>> s.add(f(0) == 1, f(1) == 1, f(2) == 0)
>>> s.check()
sat
>>> m = s.model()
>>> m[f].arity()
1

Definition at line 6233 of file z3py.py.

6233  def arity(self):
6234  """Return the number of arguments for each entry in the function interpretation `self`.
6235 
6236  >>> f = Function('f', IntSort(), IntSort())
6237  >>> s = Solver()
6238  >>> s.add(f(0) == 1, f(1) == 1, f(2) == 0)
6239  >>> s.check()
6240  sat
6241  >>> m = s.model()
6242  >>> m[f].arity()
6243  1
6244  """
6245  return int(Z3_func_interp_get_arity(self.ctx.ref(), self.f))
6246 
unsigned Z3_API Z3_func_interp_get_arity(Z3_context c, Z3_func_interp f)
Return the arity (number of arguments) of the given function interpretation.
def arity(self)
Definition: z3py.py:6233
def as_list (   self)
Return the function interpretation as a Python list.
>>> f = Function('f', IntSort(), IntSort())
>>> s = Solver()
>>> s.add(f(0) == 1, f(1) == 1, f(2) == 0)
>>> s.check()
sat
>>> m = s.model()
>>> m[f]
[2 -> 0, else -> 1]
>>> m[f].as_list()
[[2, 0], 1]

Definition at line 6278 of file z3py.py.

6278  def as_list(self):
6279  """Return the function interpretation as a Python list.
6280  >>> f = Function('f', IntSort(), IntSort())
6281  >>> s = Solver()
6282  >>> s.add(f(0) == 1, f(1) == 1, f(2) == 0)
6283  >>> s.check()
6284  sat
6285  >>> m = s.model()
6286  >>> m[f]
6287  [2 -> 0, else -> 1]
6288  >>> m[f].as_list()
6289  [[2, 0], 1]
6290  """
6291  r = [self.entry(i).as_list() for i in range(self.num_entries())]
6292  r.append(self.else_value())
6293  return r
6294 
def entry(self, idx)
Definition: z3py.py:6247
expr range(expr const &lo, expr const &hi)
Definition: z3++.h:3794
def else_value(self)
Definition: z3py.py:6194
def as_list(self)
Definition: z3py.py:6278
def num_entries(self)
Definition: z3py.py:6217
def else_value (   self)
Return the `else` value for a function interpretation.
Return None if Z3 did not specify the `else` value for
this object.

>>> f = Function('f', IntSort(), IntSort())
>>> s = Solver()
>>> s.add(f(0) == 1, f(1) == 1, f(2) == 0)
>>> s.check()
sat
>>> m = s.model()
>>> m[f]
[2 -> 0, else -> 1]
>>> m[f].else_value()
1

Definition at line 6194 of file z3py.py.

Referenced by FuncInterp.as_list().

6194  def else_value(self):
6195  """
6196  Return the `else` value for a function interpretation.
6197  Return None if Z3 did not specify the `else` value for
6198  this object.
6199 
6200  >>> f = Function('f', IntSort(), IntSort())
6201  >>> s = Solver()
6202  >>> s.add(f(0) == 1, f(1) == 1, f(2) == 0)
6203  >>> s.check()
6204  sat
6205  >>> m = s.model()
6206  >>> m[f]
6207  [2 -> 0, else -> 1]
6208  >>> m[f].else_value()
6209  1
6210  """
6211  r = Z3_func_interp_get_else(self.ctx.ref(), self.f)
6212  if r:
6213  return _to_expr_ref(r, self.ctx)
6214  else:
6215  return None
6216 
Z3_ast Z3_API Z3_func_interp_get_else(Z3_context c, Z3_func_interp f)
Return the 'else' value of the given function interpretation.
def else_value(self)
Definition: z3py.py:6194
def entry (   self,
  idx 
)
Return an entry at position `idx < self.num_entries()` in the function interpretation `self`.

>>> f = Function('f', IntSort(), IntSort())
>>> s = Solver()
>>> s.add(f(0) == 1, f(1) == 1, f(2) == 0)
>>> s.check()
sat
>>> m = s.model()
>>> m[f]
[2 -> 0, else -> 1]
>>> m[f].num_entries()
1
>>> m[f].entry(0)
[2, 0]

Definition at line 6247 of file z3py.py.

Referenced by FuncInterp.as_list().

6247  def entry(self, idx):
6248  """Return an entry at position `idx < self.num_entries()` in the function interpretation `self`.
6249 
6250  >>> f = Function('f', IntSort(), IntSort())
6251  >>> s = Solver()
6252  >>> s.add(f(0) == 1, f(1) == 1, f(2) == 0)
6253  >>> s.check()
6254  sat
6255  >>> m = s.model()
6256  >>> m[f]
6257  [2 -> 0, else -> 1]
6258  >>> m[f].num_entries()
6259  1
6260  >>> m[f].entry(0)
6261  [2, 0]
6262  """
6263  if idx >= self.num_entries():
6264  raise IndexError
6265  return FuncEntry(Z3_func_interp_get_entry(self.ctx.ref(), self.f, idx), self.ctx)
6266 
def entry(self, idx)
Definition: z3py.py:6247
Definition: z3py.py:6072
Z3_func_entry Z3_API Z3_func_interp_get_entry(Z3_context c, Z3_func_interp f, unsigned i)
Return a "point" of the given function interpretation. It represents the value of f in a particular p...
def num_entries(self)
Definition: z3py.py:6217
def num_entries (   self)
Return the number of entries/points in the function interpretation `self`.

>>> f = Function('f', IntSort(), IntSort())
>>> s = Solver()
>>> s.add(f(0) == 1, f(1) == 1, f(2) == 0)
>>> s.check()
sat
>>> m = s.model()
>>> m[f]
[2 -> 0, else -> 1]
>>> m[f].num_entries()
1

Definition at line 6217 of file z3py.py.

Referenced by FuncInterp.as_list(), and FuncInterp.entry().

6217  def num_entries(self):
6218  """Return the number of entries/points in the function interpretation `self`.
6219 
6220  >>> f = Function('f', IntSort(), IntSort())
6221  >>> s = Solver()
6222  >>> s.add(f(0) == 1, f(1) == 1, f(2) == 0)
6223  >>> s.check()
6224  sat
6225  >>> m = s.model()
6226  >>> m[f]
6227  [2 -> 0, else -> 1]
6228  >>> m[f].num_entries()
6229  1
6230  """
6231  return int(Z3_func_interp_get_num_entries(self.ctx.ref(), self.f))
6232 
unsigned Z3_API Z3_func_interp_get_num_entries(Z3_context c, Z3_func_interp f)
Return the number of entries in the given function interpretation.
def num_entries(self)
Definition: z3py.py:6217
def translate (   self,
  other_ctx 
)
Copy model 'self' to context 'other_ctx'.

Definition at line 6267 of file z3py.py.

Referenced by FuncInterp.__copy__(), and FuncInterp.__deepcopy__().

6267  def translate(self, other_ctx):
6268  """Copy model 'self' to context 'other_ctx'.
6269  """
6270  return ModelRef(Z3_model_translate(self.ctx.ref(), self.model, other_ctx.ref()), other_ctx)
6271 
Z3_model Z3_API Z3_model_translate(Z3_context c, Z3_model m, Z3_context dst)
translate model from context c to context dst.
def translate(self, other_ctx)
Definition: z3py.py:6267

Field Documentation

ctx
f