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

Function Declarations. More...

Inheritance diagram for FuncDeclRef:

Public Member Functions

 as_ast (self)
 get_id (self)
 as_func_decl (self)
 name (self)
 arity (self)
 domain (self, i)
 range (self)
 kind (self)
 params (self)
 __call__ (self, *args)
Public Member Functions inherited from AstRef
 __init__ (self, ast, ctx=None)
 __del__ (self)
 __deepcopy__ (self, memo={})
 __str__ (self)
 __repr__ (self)
 __eq__ (self, other)
 __hash__ (self)
 __nonzero__ (self)
 __bool__ (self)
 sexpr (self)
 ctx_ref (self)
 eq (self, other)
 translate (self, target)
 __copy__ (self)
 hash (self)
 py_value (self)
Public Member Functions inherited from Z3PPObject
 use_pp (self)

Additional Inherited Members

Data Fields inherited from AstRef
 ast = ast
 ctx = _get_ctx(ctx)
Protected Member Functions inherited from Z3PPObject
 _repr_html_ (self)

Detailed Description

Function Declarations.

Function declaration. Every constant and function have an associated declaration.

The declaration assigns a name, a sort (i.e., type), and for function
the sort (i.e., type) of each of its arguments. Note that, in Z3,
a constant is a function with 0 arguments.

Definition at line 758 of file z3py.py.

Member Function Documentation

◆ __call__()

__call__ ( self,
* args )
Create a Z3 application expression using the function `self`, and the given arguments.

The arguments must be Z3 expressions. This method assumes that
the sorts of the elements in `args` match the sorts of the
domain. Limited coercion is supported.  For example, if
args[0] is a Python integer, and the function expects a Z3
integer, then the argument is automatically converted into a
Z3 integer.

>>> f = Function('f', IntSort(), RealSort(), BoolSort())
>>> x = Int('x')
>>> y = Real('y')
>>> f(x, y)
f(x, y)
>>> f(x, x)
f(x, ToReal(x))

Definition at line 859 of file z3py.py.

859 def __call__(self, *args):
860 """Create a Z3 application expression using the function `self`, and the given arguments.
861
862 The arguments must be Z3 expressions. This method assumes that
863 the sorts of the elements in `args` match the sorts of the
864 domain. Limited coercion is supported. For example, if
865 args[0] is a Python integer, and the function expects a Z3
866 integer, then the argument is automatically converted into a
867 Z3 integer.
868
869 >>> f = Function('f', IntSort(), RealSort(), BoolSort())
870 >>> x = Int('x')
871 >>> y = Real('y')
872 >>> f(x, y)
873 f(x, y)
874 >>> f(x, x)
875 f(x, ToReal(x))
876 """
877 args = _get_args(args)
878 num = len(args)
879 _args = (Ast * num)()
880 saved = []
881 for i in range(num):
882 # self.domain(i).cast(args[i]) may create a new Z3 expression,
883 # then we must save in 'saved' to prevent it from being garbage collected.
884 tmp = self.domain(i).cast(args[i])
885 saved.append(tmp)
886 _args[i] = tmp.as_ast()
887 return _to_expr_ref(Z3_mk_app(self.ctx_ref(), self.ast, len(args), _args), self.ctx)
888
889
Z3_ast Z3_API Z3_mk_app(Z3_context c, Z3_func_decl d, unsigned num_args, Z3_ast const args[])
Create a constant or function application.

◆ arity()

arity ( self)
Return the number of arguments of a function declaration.
If `self` is a constant, then `self.arity()` is 0.

>>> f = Function('f', IntSort(), RealSort(), BoolSort())
>>> f.arity()
2

Definition at line 786 of file z3py.py.

786 def arity(self):
787 """Return the number of arguments of a function declaration.
788 If `self` is a constant, then `self.arity()` is 0.
789
790 >>> f = Function('f', IntSort(), RealSort(), BoolSort())
791 >>> f.arity()
792 2
793 """
794 return int(Z3_get_arity(self.ctx_ref(), self.ast))
795
unsigned Z3_API Z3_get_arity(Z3_context c, Z3_func_decl d)
Alias for Z3_get_domain_size.

◆ as_ast()

as_ast ( self)
Return a pointer to the corresponding C Z3_ast object.

Reimplemented from AstRef.

Definition at line 766 of file z3py.py.

766 def as_ast(self):
767 return Z3_func_decl_to_ast(self.ctx_ref(), self.ast)
768
Z3_ast Z3_API Z3_func_decl_to_ast(Z3_context c, Z3_func_decl f)
Convert a Z3_func_decl into Z3_ast. This is just type casting.

◆ as_func_decl()

as_func_decl ( self)

Definition at line 772 of file z3py.py.

772 def as_func_decl(self):
773 return self.ast
774

◆ domain()

domain ( self,
i )
Return the sort of the argument `i` of a function declaration.
This method assumes that `0 <= i < self.arity()`.

>>> f = Function('f', IntSort(), RealSort(), BoolSort())
>>> f.domain(0)
Int
>>> f.domain(1)
Real

Definition at line 796 of file z3py.py.

796 def domain(self, i):
797 """Return the sort of the argument `i` of a function declaration.
798 This method assumes that `0 <= i < self.arity()`.
799
800 >>> f = Function('f', IntSort(), RealSort(), BoolSort())
801 >>> f.domain(0)
802 Int
803 >>> f.domain(1)
804 Real
805 """
806 return _to_sort_ref(Z3_get_domain(self.ctx_ref(), self.ast, i), self.ctx)
807
Z3_sort Z3_API Z3_get_domain(Z3_context c, Z3_func_decl d, unsigned i)
Return the sort of the i-th parameter of the given function declaration.

Referenced by __call__().

◆ get_id()

get_id ( self)
Return unique identifier for object. It can be used for hash-tables and maps.

Reimplemented from AstRef.

Definition at line 769 of file z3py.py.

769 def get_id(self):
770 return Z3_get_ast_id(self.ctx_ref(), self.as_ast())
771
unsigned Z3_API Z3_get_ast_id(Z3_context c, Z3_ast t)
Return a unique identifier for t. The identifier is unique up to structural equality....

◆ kind()

kind ( self)
Return the internal kind of a function declaration.
It can be used to identify Z3 built-in functions such as addition, multiplication, etc.

>>> x = Int('x')
>>> d = (x + 1).decl()
>>> d.kind() == Z3_OP_ADD
True
>>> d.kind() == Z3_OP_MUL
False

Definition at line 818 of file z3py.py.

818 def kind(self):
819 """Return the internal kind of a function declaration.
820 It can be used to identify Z3 built-in functions such as addition, multiplication, etc.
821
822 >>> x = Int('x')
823 >>> d = (x + 1).decl()
824 >>> d.kind() == Z3_OP_ADD
825 True
826 >>> d.kind() == Z3_OP_MUL
827 False
828 """
829 return Z3_get_decl_kind(self.ctx_ref(), self.ast)
830
Z3_decl_kind Z3_API Z3_get_decl_kind(Z3_context c, Z3_func_decl d)
Return declaration kind corresponding to declaration.

◆ name()

name ( self)
Return the name of the function declaration `self`.

>>> f = Function('f', IntSort(), IntSort())
>>> f.name()
'f'
>>> isinstance(f.name(), str)
True

Definition at line 775 of file z3py.py.

775 def name(self):
776 """Return the name of the function declaration `self`.
777
778 >>> f = Function('f', IntSort(), IntSort())
779 >>> f.name()
780 'f'
781 >>> isinstance(f.name(), str)
782 True
783 """
784 return _symbol2py(self.ctx, Z3_get_decl_name(self.ctx_ref(), self.ast))
785
Z3_symbol Z3_API Z3_get_decl_name(Z3_context c, Z3_func_decl d)
Return the constant declaration name as a symbol.

◆ params()

params ( self)

Definition at line 831 of file z3py.py.

831 def params(self):
832 ctx = self.ctx
833 n = Z3_get_decl_num_parameters(self.ctx_ref(), self.ast)
834 result = [None for i in range(n)]
835 for i in range(n):
836 k = Z3_get_decl_parameter_kind(self.ctx_ref(), self.ast, i)
837 if k == Z3_PARAMETER_INT:
838 result[i] = Z3_get_decl_int_parameter(self.ctx_ref(), self.ast, i)
839 elif k == Z3_PARAMETER_DOUBLE:
840 result[i] = Z3_get_decl_double_parameter(self.ctx_ref(), self.ast, i)
841 elif k == Z3_PARAMETER_RATIONAL:
842 result[i] = Z3_get_decl_rational_parameter(self.ctx_ref(), self.ast, i)
843 elif k == Z3_PARAMETER_SYMBOL:
844 result[i] = Z3_get_decl_symbol_parameter(self.ctx_ref(), self.ast, i)
845 elif k == Z3_PARAMETER_SORT:
846 result[i] = SortRef(Z3_get_decl_sort_parameter(self.ctx_ref(), self.ast, i), ctx)
847 elif k == Z3_PARAMETER_AST:
848 result[i] = ExprRef(Z3_get_decl_ast_parameter(self.ctx_ref(), self.ast, i), ctx)
849 elif k == Z3_PARAMETER_FUNC_DECL:
850 result[i] = FuncDeclRef(Z3_get_decl_func_decl_parameter(self.ctx_ref(), self.ast, i), ctx)
851 elif k == Z3_PARAMETER_INTERNAL:
852 result[i] = "internal parameter"
853 elif k == Z3_PARAMETER_ZSTRING:
854 result[i] = "internal string"
855 else:
856 assert(False)
857 return result
858
Z3_parameter_kind Z3_API Z3_get_decl_parameter_kind(Z3_context c, Z3_func_decl d, unsigned idx)
Return the parameter type associated with a declaration.
Z3_func_decl Z3_API Z3_get_decl_func_decl_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the expression value associated with an expression parameter.
unsigned Z3_API Z3_get_decl_num_parameters(Z3_context c, Z3_func_decl d)
Return the number of parameters associated with a declaration.
Z3_symbol Z3_API Z3_get_decl_symbol_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the double value associated with an double parameter.
int Z3_API Z3_get_decl_int_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the integer value associated with an integer parameter.
double Z3_API Z3_get_decl_double_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the double value associated with an double parameter.
Z3_string Z3_API Z3_get_decl_rational_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the rational value, as a string, associated with a rational parameter.
Z3_sort Z3_API Z3_get_decl_sort_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the sort value associated with a sort parameter.
Z3_ast Z3_API Z3_get_decl_ast_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the expression value associated with an expression parameter.

◆ range()

range ( self)
Return the sort of the range of a function declaration.
For constants, this is the sort of the constant.

>>> f = Function('f', IntSort(), RealSort(), BoolSort())
>>> f.range()
Bool

Definition at line 808 of file z3py.py.

808 def range(self):
809 """Return the sort of the range of a function declaration.
810 For constants, this is the sort of the constant.
811
812 >>> f = Function('f', IntSort(), RealSort(), BoolSort())
813 >>> f.range()
814 Bool
815 """
816 return _to_sort_ref(Z3_get_range(self.ctx_ref(), self.ast), self.ctx)
817
Z3_sort Z3_API Z3_get_range(Z3_context c, Z3_func_decl d)
Return the range of the given declaration.

Referenced by __call__(), and params().