Z3
 
Loading...
Searching...
No Matches
ParamDescrsRef Class Reference

Public Member Functions

 __init__ (self, descr, ctx=None)
 
 __deepcopy__ (self, memo={})
 
 __del__ (self)
 
 size (self)
 
 __len__ (self)
 
 get_name (self, i)
 
 get_kind (self, n)
 
 get_documentation (self, n)
 
 __getitem__ (self, arg)
 
 __repr__ (self)
 

Data Fields

 ctx = _get_ctx(ctx)
 
 descr = descr
 

Detailed Description

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

Definition at line 5542 of file z3py.py.

Constructor & Destructor Documentation

◆ __init__()

__init__ ( self,
descr,
ctx = None )

Definition at line 5546 of file z3py.py.

5546 def __init__(self, descr, ctx=None):
5547 _z3_assert(isinstance(descr, ParamDescrs), "parameter description object expected")
5548 self.ctx = _get_ctx(ctx)
5549 self.descr = descr
5550 Z3_param_descrs_inc_ref(self.ctx.ref(), self.descr)
5551
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.

◆ __del__()

__del__ ( self)

Definition at line 5555 of file z3py.py.

5555 def __del__(self):
5556 if self.ctx.ref() is not None and Z3_param_descrs_dec_ref is not None:
5557 Z3_param_descrs_dec_ref(self.ctx.ref(), self.descr)
5558
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

◆ __deepcopy__()

__deepcopy__ ( self,
memo = {} )

Definition at line 5552 of file z3py.py.

5552 def __deepcopy__(self, memo={}):
5553 return ParamsDescrsRef(self.descr, self.ctx)
5554

◆ __getitem__()

__getitem__ ( self,
arg )

Definition at line 5584 of file z3py.py.

5584 def __getitem__(self, arg):
5585 if _is_int(arg):
5586 return self.get_name(arg)
5587 else:
5588 return self.get_kind(arg)
5589

◆ __len__()

__len__ ( self)
Return the size of in the parameter description `self`.

Definition at line 5564 of file z3py.py.

5564 def __len__(self):
5565 """Return the size of in the parameter description `self`.
5566 """
5567 return self.size()
5568

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

◆ __repr__()

__repr__ ( self)

Definition at line 5590 of file z3py.py.

5590 def __repr__(self):
5591 return Z3_param_descrs_to_string(self.ctx.ref(), self.descr)
5592
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...

◆ get_documentation()

get_documentation ( self,
n )
Return the documentation string of the parameter named `n`.

Definition at line 5579 of file z3py.py.

5579 def get_documentation(self, n):
5580 """Return the documentation string of the parameter named `n`.
5581 """
5582 return Z3_param_descrs_get_documentation(self.ctx.ref(), self.descr, to_symbol(n, self.ctx))
5583
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.

◆ get_kind()

get_kind ( self,
n )
Return the kind of the parameter named `n`.

Definition at line 5574 of file z3py.py.

5574 def get_kind(self, n):
5575 """Return the kind of the parameter named `n`.
5576 """
5577 return Z3_param_descrs_get_kind(self.ctx.ref(), self.descr, to_symbol(n, self.ctx))
5578
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.

Referenced by __getitem__().

◆ get_name()

get_name ( self,
i )
Return the i-th parameter name in the parameter description `self`.

Definition at line 5569 of file z3py.py.

5569 def get_name(self, i):
5570 """Return the i-th parameter name in the parameter description `self`.
5571 """
5572 return _symbol2py(self.ctx, Z3_param_descrs_get_name(self.ctx.ref(), self.descr, i))
5573
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.

Referenced by __getitem__().

◆ size()

size ( self)
Return the size of in the parameter description `self`.

Definition at line 5559 of file z3py.py.

5559 def size(self):
5560 """Return the size of in the parameter description `self`.
5561 """
5562 return int(Z3_param_descrs_size(self.ctx.ref(), self.descr))
5563
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.

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

Field Documentation

◆ ctx

ctx = _get_ctx(ctx)

Definition at line 5548 of file z3py.py.

Referenced by AstMap.__contains__(), AstVector.__copy__(), FuncInterp.__copy__(), Goal.__copy__(), ModelRef.__copy__(), AstMap.__deepcopy__(), AstVector.__deepcopy__(), FuncEntry.__deepcopy__(), FuncInterp.__deepcopy__(), Goal.__deepcopy__(), ModelRef.__deepcopy__(), __deepcopy__(), Statistics.__deepcopy__(), AstMap.__del__(), AstVector.__del__(), FuncEntry.__del__(), FuncInterp.__del__(), Goal.__del__(), ModelRef.__del__(), __del__(), Solver.__del__(), Statistics.__del__(), AstMap.__getitem__(), AstVector.__getitem__(), ModelRef.__getitem__(), Statistics.__getitem__(), AstMap.__len__(), AstVector.__len__(), ModelRef.__len__(), Statistics.__len__(), AstMap.__repr__(), __repr__(), Statistics.__repr__(), AstMap.__setitem__(), AstVector.__setitem__(), FuncEntry.arg_value(), FuncInterp.arity(), Goal.as_expr(), Solver.assert_and_track(), Goal.assert_exprs(), Solver.assert_exprs(), Solver.check(), Goal.convert_model(), ModelRef.decls(), Goal.depth(), Goal.dimacs(), FuncInterp.else_value(), FuncInterp.entry(), AstMap.erase(), ModelRef.eval(), Goal.get(), get_documentation(), ModelRef.get_interp(), Statistics.get_key_value(), get_kind(), get_name(), ModelRef.get_sort(), ModelRef.get_universe(), Goal.inconsistent(), AstMap.keys(), Statistics.keys(), Solver.model(), FuncEntry.num_args(), FuncInterp.num_entries(), Solver.num_scopes(), ModelRef.num_sorts(), Solver.pop(), Goal.prec(), ModelRef.project(), ModelRef.project_with_witness(), AstVector.push(), Solver.push(), AstMap.reset(), Solver.reset(), AstVector.resize(), Solver.set(), AstVector.sexpr(), Goal.sexpr(), ModelRef.sexpr(), Goal.size(), size(), AstVector.translate(), Goal.translate(), ModelRef.translate(), and FuncEntry.value().

◆ descr

descr = descr

Definition at line 5549 of file z3py.py.

Referenced by __deepcopy__(), __del__(), __repr__(), get_documentation(), get_kind(), get_name(), and size().