Z3
Public Member Functions | Data Fields
ParamDescrsRef Class Reference

Public Member Functions

def __init__
 
def __deepcopy__
 
def __del__ (self)
 
def size (self)
 
def __len__ (self)
 
def get_name (self, i)
 
def get_kind (self, n)
 
def get_documentation (self, n)
 
def __getitem__ (self, arg)
 
def __repr__ (self)
 

Data Fields

 ctx
 
 descr
 

Detailed Description

Set of parameter descriptions for Solvers, Tactics and Simplifiers in Z3.

Definition at line 5535 of file z3py.py.

Constructor & Destructor Documentation

def __init__ (   self,
  descr,
  ctx = None 
)

Definition at line 5539 of file z3py.py.

5539  def __init__(self, descr, ctx=None):
5540  _z3_assert(isinstance(descr, ParamDescrs), "parameter description object expected")
5541  self.ctx = _get_ctx(ctx)
5542  self.descr = descr
5543  Z3_param_descrs_inc_ref(self.ctx.ref(), self.descr)
5544 
void Z3_API Z3_param_descrs_inc_ref(Z3_context c, Z3_param_descrs p)
Increment the reference counter of the given parameter description set.
def __del__ (   self)

Definition at line 5548 of file z3py.py.

5548  def __del__(self):
5549  if self.ctx.ref() is not None and Z3_param_descrs_dec_ref is not None:
5550  Z3_param_descrs_dec_ref(self.ctx.ref(), self.descr)
5551 
def __del__(self)
Definition: z3py.py:5548
void Z3_API Z3_param_descrs_dec_ref(Z3_context c, Z3_param_descrs p)
Decrement the reference counter of the given parameter description set.

Member Function Documentation

def __deepcopy__ (   self,
  memo = {} 
)

Definition at line 5545 of file z3py.py.

5545  def __deepcopy__(self, memo={}):
5546  return ParamsDescrsRef(self.descr, self.ctx)
5547 
def __getitem__ (   self,
  arg 
)

Definition at line 5577 of file z3py.py.

5577  def __getitem__(self, arg):
5578  if _is_int(arg):
5579  return self.get_name(arg)
5580  else:
5581  return self.get_kind(arg)
5582 
def get_name(self, i)
Definition: z3py.py:5562
def get_kind(self, n)
Definition: z3py.py:5567
def __getitem__(self, arg)
Definition: z3py.py:5577
def __len__ (   self)
Return the size of in the parameter description `self`.

Definition at line 5557 of file z3py.py.

Referenced by AstVector.__getitem__(), and AstVector.__setitem__().

5557  def __len__(self):
5558  """Return the size of in the parameter description `self`.
5559  """
5560  return self.size()
5561 
def __len__(self)
Definition: z3py.py:5557
def size(self)
Definition: z3py.py:5552
def __repr__ (   self)

Definition at line 5583 of file z3py.py.

5583  def __repr__(self):
5584  return Z3_param_descrs_to_string(self.ctx.ref(), self.descr)
5585 
def __repr__(self)
Definition: z3py.py:5583
Z3_string Z3_API Z3_param_descrs_to_string(Z3_context c, Z3_param_descrs p)
Convert a parameter description set into a string. This function is mainly used for printing the cont...
def get_documentation (   self,
  n 
)
Return the documentation string of the parameter named `n`.

Definition at line 5572 of file z3py.py.

5572  def get_documentation(self, n):
5573  """Return the documentation string of the parameter named `n`.
5574  """
5575  return Z3_param_descrs_get_documentation(self.ctx.ref(), self.descr, to_symbol(n, self.ctx))
5576 
Z3_string Z3_API Z3_param_descrs_get_documentation(Z3_context c, Z3_param_descrs p, Z3_symbol s)
Retrieve documentation string corresponding to parameter name s.
def get_documentation(self, n)
Definition: z3py.py:5572
def to_symbol
Definition: z3py.py:124
def get_kind (   self,
  n 
)
Return the kind of the parameter named `n`.

Definition at line 5567 of file z3py.py.

Referenced by ParamDescrsRef.__getitem__().

5567  def get_kind(self, n):
5568  """Return the kind of the parameter named `n`.
5569  """
5570  return Z3_param_descrs_get_kind(self.ctx.ref(), self.descr, to_symbol(n, self.ctx))
5571 
def get_kind(self, n)
Definition: z3py.py:5567
Z3_param_kind Z3_API Z3_param_descrs_get_kind(Z3_context c, Z3_param_descrs p, Z3_symbol n)
Return the kind associated with the given parameter name n.
def to_symbol
Definition: z3py.py:124
def get_name (   self,
  i 
)
Return the i-th parameter name in the parameter description `self`.

Definition at line 5562 of file z3py.py.

Referenced by ParamDescrsRef.__getitem__().

5562  def get_name(self, i):
5563  """Return the i-th parameter name in the parameter description `self`.
5564  """
5565  return _symbol2py(self.ctx, Z3_param_descrs_get_name(self.ctx.ref(), self.descr, i))
5566 
def get_name(self, i)
Definition: z3py.py:5562
Z3_symbol Z3_API Z3_param_descrs_get_name(Z3_context c, Z3_param_descrs p, unsigned i)
Return the name of the parameter at given index i.
def size (   self)
Return the size of in the parameter description `self`.

Definition at line 5552 of file z3py.py.

Referenced by ParamDescrsRef.__len__(), and Goal.__len__().

5552  def size(self):
5553  """Return the size of in the parameter description `self`.
5554  """
5555  return int(Z3_param_descrs_size(self.ctx.ref(), self.descr))
5556 
unsigned Z3_API Z3_param_descrs_size(Z3_context c, Z3_param_descrs p)
Return the number of parameters in the given parameter description set.
def size(self)
Definition: z3py.py:5552

Field Documentation

ctx

Definition at line 5541 of file z3py.py.

Referenced by Goal.__copy__(), AstVector.__copy__(), FuncInterp.__copy__(), ModelRef.__copy__(), ParamDescrsRef.__deepcopy__(), Goal.__deepcopy__(), AstVector.__deepcopy__(), AstMap.__deepcopy__(), FuncEntry.__deepcopy__(), FuncInterp.__deepcopy__(), ModelRef.__deepcopy__(), Fixedpoint.__deepcopy__(), Optimize.__deepcopy__(), ApplyResult.__deepcopy__(), Simplifier.__deepcopy__(), Tactic.__deepcopy__(), Probe.__deepcopy__(), Probe.__eq__(), Probe.__ge__(), AstVector.__getitem__(), AstMap.__getitem__(), ModelRef.__getitem__(), ApplyResult.__getitem__(), Probe.__gt__(), Probe.__le__(), Probe.__lt__(), Probe.__ne__(), Simplifier.add(), Fixedpoint.add_rule(), Optimize.add_soft(), Tactic.apply(), FuncEntry.arg_value(), Goal.as_expr(), ApplyResult.as_expr(), Optimize.assert_and_track(), Goal.assert_exprs(), Fixedpoint.assert_exprs(), Optimize.assert_exprs(), Optimize.assertions(), Goal.convert_model(), ModelRef.decls(), FuncInterp.else_value(), FuncInterp.entry(), ModelRef.eval(), ParserContext.from_string(), Goal.get(), Fixedpoint.get_answer(), Fixedpoint.get_assertions(), Fixedpoint.get_cover_delta(), ParamDescrsRef.get_documentation(), Fixedpoint.get_ground_sat_answer(), ModelRef.get_interp(), ParamDescrsRef.get_kind(), ParamDescrsRef.get_name(), Fixedpoint.get_rule_names_along_trace(), Fixedpoint.get_rules(), Fixedpoint.get_rules_along_trace(), ModelRef.get_sort(), ModelRef.get_universe(), AstMap.keys(), Optimize.model(), Optimize.objectives(), Fixedpoint.param_descrs(), Optimize.param_descrs(), Simplifier.param_descrs(), Tactic.param_descrs(), Fixedpoint.parse_file(), Fixedpoint.parse_string(), Fixedpoint.query(), Fixedpoint.set(), Optimize.set(), Optimize.set_on_model(), Tactic.solver(), Fixedpoint.statistics(), Optimize.statistics(), Solver.to_smt2(), Optimize.unsat_core(), Fixedpoint.update_rule(), Simplifier.using_params(), and FuncEntry.value().

descr