Z3
Public Member Functions | Data Fields
FuncEntry Class Reference

Public Member Functions

def __init__ (self, entry, ctx)
 
def __deepcopy__ (self, memo={})
 
def __del__ (self)
 
def num_args (self)
 
def arg_value (self, idx)
 
def value (self)
 
def as_list (self)
 
def __repr__ (self)
 

Data Fields

 entry
 
 ctx
 

Detailed Description

Store the value of the interpretation of a function in a particular point.

Definition at line 5669 of file z3py.py.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  entry,
  ctx 
)

Definition at line 5672 of file z3py.py.

5672  def __init__(self, entry, ctx):
5673  self.entry = entry
5674  self.ctx = ctx
5675  Z3_func_entry_inc_ref(self.ctx.ref(), self.entry)
5676 
void Z3_API Z3_func_entry_inc_ref(Z3_context c, Z3_func_entry e)
Increment the reference counter of the given Z3_func_entry object.

◆ __del__()

def __del__ (   self)

Definition at line 5680 of file z3py.py.

5680  def __del__(self):
5681  if self.ctx.ref() is not None:
5682  Z3_func_entry_dec_ref(self.ctx.ref(), self.entry)
5683 
void Z3_API Z3_func_entry_dec_ref(Z3_context c, Z3_func_entry e)
Decrement the reference counter of the given Z3_func_entry object.

Member Function Documentation

◆ __deepcopy__()

def __deepcopy__ (   self,
  memo = {} 
)

Definition at line 5677 of file z3py.py.

5677  def __deepcopy__(self, memo={}):
5678  return FuncEntry(self.entry, self.ctx)
5679 

◆ __repr__()

def __repr__ (   self)

Definition at line 5774 of file z3py.py.

5774  def __repr__(self):
5775  return repr(self.as_list())
5776 

◆ arg_value()

def arg_value (   self,
  idx 
)
Return the value of argument `idx`.

>>> f = Function('f', IntSort(), IntSort(), IntSort())
>>> s = Solver()
>>> s.add(f(0, 1) == 10, f(1, 2) == 20, f(1, 0) == 10)
>>> s.check()
sat
>>> m = s.model()
>>> f_i = m[f]
>>> f_i.num_entries()
1
>>> e = f_i.entry(0)
>>> e
[1, 2, 20]
>>> e.num_args()
2
>>> e.arg_value(0)
1
>>> e.arg_value(1)
2
>>> try:
...   e.arg_value(2)
... except IndexError:
...   print("index error")
index error

Definition at line 5702 of file z3py.py.

5702  def arg_value(self, idx):
5703  """Return the value of argument `idx`.
5704 
5705  >>> f = Function('f', IntSort(), IntSort(), IntSort())
5706  >>> s = Solver()
5707  >>> s.add(f(0, 1) == 10, f(1, 2) == 20, f(1, 0) == 10)
5708  >>> s.check()
5709  sat
5710  >>> m = s.model()
5711  >>> f_i = m[f]
5712  >>> f_i.num_entries()
5713  1
5714  >>> e = f_i.entry(0)
5715  >>> e
5716  [1, 2, 20]
5717  >>> e.num_args()
5718  2
5719  >>> e.arg_value(0)
5720  1
5721  >>> e.arg_value(1)
5722  2
5723  >>> try:
5724  ... e.arg_value(2)
5725  ... except IndexError:
5726  ... print("index error")
5727  index error
5728  """
5729  if idx >= self.num_args():
5730  raise IndexError
5731  return _to_expr_ref(Z3_func_entry_get_arg(self.ctx.ref(), self.entry, idx), self.ctx)
5732 
Z3_ast Z3_API Z3_func_entry_get_arg(Z3_context c, Z3_func_entry e, unsigned i)
Return an argument of a Z3_func_entry object.

◆ as_list()

def as_list (   self)
Return entry `self` as a Python list.
>>> f = Function('f', IntSort(), IntSort(), IntSort())
>>> s = Solver()
>>> s.add(f(0, 1) == 10, f(1, 2) == 20, f(1, 0) == 10)
>>> s.check()
sat
>>> m = s.model()
>>> f_i = m[f]
>>> f_i.num_entries()
1
>>> e = f_i.entry(0)
>>> e.as_list()
[1, 2, 20]

Definition at line 5755 of file z3py.py.

5755  def as_list(self):
5756  """Return entry `self` as a Python list.
5757  >>> f = Function('f', IntSort(), IntSort(), IntSort())
5758  >>> s = Solver()
5759  >>> s.add(f(0, 1) == 10, f(1, 2) == 20, f(1, 0) == 10)
5760  >>> s.check()
5761  sat
5762  >>> m = s.model()
5763  >>> f_i = m[f]
5764  >>> f_i.num_entries()
5765  1
5766  >>> e = f_i.entry(0)
5767  >>> e.as_list()
5768  [1, 2, 20]
5769  """
5770  args = [ self.arg_value(i) for i in range(self.num_args())]
5771  args.append(self.value())
5772  return args
5773 
expr range(expr const &lo, expr const &hi)
Definition: z3++.h:3244

◆ num_args()

def num_args (   self)
Return the number of arguments in the given entry.

>>> f = Function('f', IntSort(), IntSort(), IntSort())
>>> s = Solver()
>>> s.add(f(0, 1) == 10, f(1, 2) == 20, f(1, 0) == 10)
>>> s.check()
sat
>>> m = s.model()
>>> f_i = m[f]
>>> f_i.num_entries()
1
>>> e = f_i.entry(0)
>>> e.num_args()
2

Definition at line 5684 of file z3py.py.

Referenced by AstRef.__bool__().

5684  def num_args(self):
5685  """Return the number of arguments in the given entry.
5686 
5687  >>> f = Function('f', IntSort(), IntSort(), IntSort())
5688  >>> s = Solver()
5689  >>> s.add(f(0, 1) == 10, f(1, 2) == 20, f(1, 0) == 10)
5690  >>> s.check()
5691  sat
5692  >>> m = s.model()
5693  >>> f_i = m[f]
5694  >>> f_i.num_entries()
5695  1
5696  >>> e = f_i.entry(0)
5697  >>> e.num_args()
5698  2
5699  """
5700  return int(Z3_func_entry_get_num_args(self.ctx.ref(), self.entry))
5701 
unsigned Z3_API Z3_func_entry_get_num_args(Z3_context c, Z3_func_entry e)
Return the number of arguments in a Z3_func_entry object.

◆ value()

def value (   self)
Return the value of the function at point `self`.

>>> f = Function('f', IntSort(), IntSort(), IntSort())
>>> s = Solver()
>>> s.add(f(0, 1) == 10, f(1, 2) == 20, f(1, 0) == 10)
>>> s.check()
sat
>>> m = s.model()
>>> f_i = m[f]
>>> f_i.num_entries()
1
>>> e = f_i.entry(0)
>>> e
[1, 2, 20]
>>> e.num_args()
2
>>> e.value()
20

Definition at line 5733 of file z3py.py.

5733  def value(self):
5734  """Return the value of the function at point `self`.
5735 
5736  >>> f = Function('f', IntSort(), IntSort(), IntSort())
5737  >>> s = Solver()
5738  >>> s.add(f(0, 1) == 10, f(1, 2) == 20, f(1, 0) == 10)
5739  >>> s.check()
5740  sat
5741  >>> m = s.model()
5742  >>> f_i = m[f]
5743  >>> f_i.num_entries()
5744  1
5745  >>> e = f_i.entry(0)
5746  >>> e
5747  [1, 2, 20]
5748  >>> e.num_args()
5749  2
5750  >>> e.value()
5751  20
5752  """
5753  return _to_expr_ref(Z3_func_entry_get_value(self.ctx.ref(), self.entry), self.ctx)
5754 
Z3_ast Z3_API Z3_func_entry_get_value(Z3_context c, Z3_func_entry e)
Return the value of this point.

Field Documentation

◆ ctx

ctx

Definition at line 5674 of file z3py.py.

Referenced by Probe.__call__(), Fixedpoint.__deepcopy__(), Optimize.__deepcopy__(), ApplyResult.__deepcopy__(), Tactic.__deepcopy__(), Probe.__deepcopy__(), Fixedpoint.__del__(), Optimize.__del__(), ApplyResult.__del__(), Tactic.__del__(), Probe.__del__(), Probe.__eq__(), Probe.__ge__(), ApplyResult.__getitem__(), Probe.__gt__(), Probe.__le__(), ApplyResult.__len__(), Probe.__lt__(), Probe.__ne__(), Fixedpoint.add_cover(), Fixedpoint.add_rule(), Optimize.add_soft(), Tactic.apply(), ApplyResult.as_expr(), Fixedpoint.assert_exprs(), Optimize.assert_exprs(), Optimize.assertions(), Optimize.check(), Optimize.from_file(), Optimize.from_string(), Fixedpoint.get_answer(), Fixedpoint.get_assertions(), Fixedpoint.get_cover_delta(), Fixedpoint.get_ground_sat_answer(), Fixedpoint.get_num_levels(), Fixedpoint.get_rule_names_along_trace(), Fixedpoint.get_rules(), Fixedpoint.get_rules_along_trace(), Fixedpoint.help(), Optimize.help(), Tactic.help(), Optimize.maximize(), Optimize.minimize(), Optimize.model(), Optimize.objectives(), Fixedpoint.param_descrs(), Optimize.param_descrs(), Tactic.param_descrs(), Fixedpoint.parse_file(), Fixedpoint.parse_string(), Fixedpoint.pop(), Optimize.pop(), Fixedpoint.push(), Optimize.push(), Fixedpoint.query(), Fixedpoint.query_from_lvl(), Fixedpoint.reason_unknown(), Optimize.reason_unknown(), Fixedpoint.register_relation(), Fixedpoint.set(), Optimize.set(), Fixedpoint.set_predicate_representation(), Fixedpoint.sexpr(), Optimize.sexpr(), ApplyResult.sexpr(), Tactic.solver(), Fixedpoint.statistics(), Optimize.statistics(), Solver.to_smt2(), Fixedpoint.to_string(), Optimize.unsat_core(), and Fixedpoint.update_rule().

◆ entry

entry

Definition at line 5673 of file z3py.py.