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.

Referenced by FuncEntry.as_list().

◆ 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

Referenced by FuncEntry.__repr__().

◆ 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.

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.

Referenced by AstRef.__bool__(), FuncEntry.arg_value(), and FuncEntry.as_list().

◆ 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.

Referenced by FuncEntry.as_list().

Field Documentation

◆ ctx

ctx

Definition at line 5674 of file z3py.py.

Referenced by Probe.__call__(), FuncInterp.__copy__(), ModelRef.__copy__(), Solver.__copy__(), FuncEntry.__deepcopy__(), FuncInterp.__deepcopy__(), ModelRef.__deepcopy__(), Statistics.__deepcopy__(), Solver.__deepcopy__(), Fixedpoint.__deepcopy__(), Optimize.__deepcopy__(), ApplyResult.__deepcopy__(), Tactic.__deepcopy__(), Probe.__deepcopy__(), FuncEntry.__del__(), FuncInterp.__del__(), ModelRef.__del__(), Statistics.__del__(), Solver.__del__(), Fixedpoint.__del__(), Optimize.__del__(), ApplyResult.__del__(), Tactic.__del__(), Probe.__del__(), Probe.__eq__(), Probe.__ge__(), ModelRef.__getitem__(), Statistics.__getitem__(), ApplyResult.__getitem__(), Probe.__gt__(), Probe.__le__(), ModelRef.__len__(), Statistics.__len__(), ApplyResult.__len__(), Probe.__lt__(), Probe.__ne__(), Statistics.__repr__(), Fixedpoint.add_cover(), Fixedpoint.add_rule(), Optimize.add_soft(), Tactic.apply(), FuncEntry.arg_value(), FuncInterp.arity(), ApplyResult.as_expr(), Solver.assert_and_track(), Solver.assert_exprs(), Fixedpoint.assert_exprs(), Optimize.assert_exprs(), Solver.assertions(), Optimize.assertions(), Solver.check(), Optimize.check(), Solver.consequences(), ModelRef.decls(), FuncInterp.else_value(), FuncInterp.entry(), ModelRef.eval(), Solver.from_file(), Optimize.from_file(), Solver.from_string(), Optimize.from_string(), Fixedpoint.get_answer(), Fixedpoint.get_assertions(), Fixedpoint.get_cover_delta(), Fixedpoint.get_ground_sat_answer(), ModelRef.get_interp(), Statistics.get_key_value(), Fixedpoint.get_num_levels(), Fixedpoint.get_rule_names_along_trace(), Fixedpoint.get_rules(), Fixedpoint.get_rules_along_trace(), ModelRef.get_sort(), ModelRef.get_universe(), Solver.help(), Fixedpoint.help(), Optimize.help(), Tactic.help(), Statistics.keys(), Optimize.maximize(), Optimize.minimize(), Solver.model(), Optimize.model(), Solver.non_units(), FuncEntry.num_args(), FuncInterp.num_entries(), Solver.num_scopes(), ModelRef.num_sorts(), Optimize.objectives(), Solver.param_descrs(), Fixedpoint.param_descrs(), Optimize.param_descrs(), Tactic.param_descrs(), Fixedpoint.parse_file(), Fixedpoint.parse_string(), Solver.pop(), Fixedpoint.pop(), Optimize.pop(), Solver.proof(), Solver.push(), Fixedpoint.push(), Optimize.push(), Fixedpoint.query(), Fixedpoint.query_from_lvl(), Solver.reason_unknown(), Fixedpoint.reason_unknown(), Optimize.reason_unknown(), Fixedpoint.register_relation(), Solver.reset(), Solver.set(), Fixedpoint.set(), Optimize.set(), Fixedpoint.set_predicate_representation(), ModelRef.sexpr(), Solver.sexpr(), Fixedpoint.sexpr(), Optimize.sexpr(), ApplyResult.sexpr(), Tactic.solver(), Solver.statistics(), Fixedpoint.statistics(), Optimize.statistics(), Solver.to_smt2(), Fixedpoint.to_string(), FuncInterp.translate(), ModelRef.translate(), Solver.translate(), Solver.units(), Solver.unsat_core(), Optimize.unsat_core(), Fixedpoint.update_rule(), and FuncEntry.value().

◆ entry

entry