Z3
 
Loading...
Searching...
No Matches
Public Member Functions | Data Fields
Fixedpoint Class Reference

Fixedpoint. More...

+ Inheritance diagram for Fixedpoint:

Public Member Functions

 __init__ (self, fixedpoint=None, ctx=None)
 
 __deepcopy__ (self, memo={})
 
 __del__ (self)
 
 set (self, *args, **keys)
 
 help (self)
 
 param_descrs (self)
 
 assert_exprs (self, *args)
 
 add (self, *args)
 
 __iadd__ (self, fml)
 
 append (self, *args)
 
 insert (self, *args)
 
 add_rule (self, head, body=None, name=None)
 
 rule (self, head, body=None, name=None)
 
 fact (self, head, name=None)
 
 query (self, *query)
 
 query_from_lvl (self, lvl, *query)
 
 update_rule (self, head, body, name)
 
 get_answer (self)
 
 get_ground_sat_answer (self)
 
 get_rules_along_trace (self)
 
 get_rule_names_along_trace (self)
 
 get_num_levels (self, predicate)
 
 get_cover_delta (self, level, predicate)
 
 add_cover (self, level, predicate, property)
 
 register_relation (self, *relations)
 
 set_predicate_representation (self, f, *representations)
 
 parse_string (self, s)
 
 parse_file (self, f)
 
 get_rules (self)
 
 get_assertions (self)
 
 __repr__ (self)
 
 sexpr (self)
 
 to_string (self, queries)
 
 statistics (self)
 
 reason_unknown (self)
 
 declare_var (self, *vars)
 
 abstract (self, fml, is_forall=True)
 
- Public Member Functions inherited from Z3PPObject
 use_pp (self)
 

Data Fields

 ctx
 
 fixedpoint
 
 vars
 

Additional Inherited Members

- Protected Member Functions inherited from Z3PPObject
 _repr_html_ (self)
 

Detailed Description

Fixedpoint.

Fixedpoint API provides methods for solving with recursive predicates

Definition at line 7696 of file z3py.py.

Constructor & Destructor Documentation

◆ __init__()

__init__ (   self,
  fixedpoint = None,
  ctx = None 
)

Definition at line 7699 of file z3py.py.

7699 def __init__(self, fixedpoint=None, ctx=None):
7700 assert fixedpoint is None or ctx is not None
7701 self.ctx = _get_ctx(ctx)
7702 self.fixedpoint = None
7703 if fixedpoint is None:
7704 self.fixedpoint = Z3_mk_fixedpoint(self.ctx.ref())
7705 else:
7706 self.fixedpoint = fixedpoint
7707 Z3_fixedpoint_inc_ref(self.ctx.ref(), self.fixedpoint)
7708 self.vars = []
7709
void Z3_API Z3_fixedpoint_inc_ref(Z3_context c, Z3_fixedpoint d)
Increment the reference counter of the given fixedpoint context.
Z3_fixedpoint Z3_API Z3_mk_fixedpoint(Z3_context c)
Create a new fixedpoint context.

◆ __del__()

__del__ (   self)

Definition at line 7713 of file z3py.py.

7713 def __del__(self):
7714 if self.fixedpoint is not None and self.ctx.ref() is not None and Z3_fixedpoint_dec_ref is not None:
7715 Z3_fixedpoint_dec_ref(self.ctx.ref(), self.fixedpoint)
7716
void Z3_API Z3_fixedpoint_dec_ref(Z3_context c, Z3_fixedpoint d)
Decrement the reference counter of the given fixedpoint context.

Member Function Documentation

◆ __deepcopy__()

__deepcopy__ (   self,
  memo = {} 
)

Definition at line 7710 of file z3py.py.

7710 def __deepcopy__(self, memo={}):
7711 return FixedPoint(self.fixedpoint, self.ctx)
7712

◆ __iadd__()

__iadd__ (   self,
  fml 
)

Definition at line 7749 of file z3py.py.

7749 def __iadd__(self, fml):
7750 self.add(fml)
7751 return self
7752

◆ __repr__()

__repr__ (   self)
Return a formatted string with all added rules and constraints.

Definition at line 7910 of file z3py.py.

7910 def __repr__(self):
7911 """Return a formatted string with all added rules and constraints."""
7912 return self.sexpr()
7913

◆ abstract()

abstract (   self,
  fml,
  is_forall = True 
)

Definition at line 7947 of file z3py.py.

7947 def abstract(self, fml, is_forall=True):
7948 if self.vars == []:
7949 return fml
7950 if is_forall:
7951 return ForAll(self.vars, fml)
7952 else:
7953 return Exists(self.vars, fml)
7954
7955

◆ add()

add (   self,
args 
)
Assert constraints as background axioms for the fixedpoint solver. Alias for assert_expr.

Definition at line 7745 of file z3py.py.

7745 def add(self, *args):
7746 """Assert constraints as background axioms for the fixedpoint solver. Alias for assert_expr."""
7747 self.assert_exprs(*args)
7748

Referenced by Solver.__iadd__().

◆ add_cover()

add_cover (   self,
  level,
  predicate,
  property 
)
Add property to predicate for the level'th unfolding.
-1 is treated as infinity (infinity)

Definition at line 7872 of file z3py.py.

7872 def add_cover(self, level, predicate, property):
7873 """Add property to predicate for the level'th unfolding.
7874 -1 is treated as infinity (infinity)
7875 """
7876 Z3_fixedpoint_add_cover(self.ctx.ref(), self.fixedpoint, level, predicate.ast, property.ast)
7877
void Z3_API Z3_fixedpoint_add_cover(Z3_context c, Z3_fixedpoint d, int level, Z3_func_decl pred, Z3_ast property)
Add property about the predicate pred. Add a property of predicate pred at level. It gets pushed forw...

◆ add_rule()

add_rule (   self,
  head,
  body = None,
  name = None 
)
Assert rules defining recursive predicates to the fixedpoint solver.
>>> a = Bool('a')
>>> b = Bool('b')
>>> s = Fixedpoint()
>>> s.register_relation(a.decl())
>>> s.register_relation(b.decl())
>>> s.fact(a)
>>> s.rule(b, a)
>>> s.query(b)
sat

Definition at line 7761 of file z3py.py.

7761 def add_rule(self, head, body=None, name=None):
7762 """Assert rules defining recursive predicates to the fixedpoint solver.
7763 >>> a = Bool('a')
7764 >>> b = Bool('b')
7765 >>> s = Fixedpoint()
7766 >>> s.register_relation(a.decl())
7767 >>> s.register_relation(b.decl())
7768 >>> s.fact(a)
7769 >>> s.rule(b, a)
7770 >>> s.query(b)
7771 sat
7772 """
7773 if name is None:
7774 name = ""
7775 name = to_symbol(name, self.ctx)
7776 if body is None:
7777 head = self.abstract(head)
7778 Z3_fixedpoint_add_rule(self.ctx.ref(), self.fixedpoint, head.as_ast(), name)
7779 else:
7780 body = _get_args(body)
7781 f = self.abstract(Implies(And(body, self.ctx), head))
7782 Z3_fixedpoint_add_rule(self.ctx.ref(), self.fixedpoint, f.as_ast(), name)
7783
void Z3_API Z3_fixedpoint_add_rule(Z3_context c, Z3_fixedpoint d, Z3_ast rule, Z3_symbol name)
Add a universal Horn clause as a named rule. The horn_rule should be of the form:

◆ append()

append (   self,
args 
)
Assert constraints as background axioms for the fixedpoint solver. Alias for assert_expr.

Definition at line 7753 of file z3py.py.

7753 def append(self, *args):
7754 """Assert constraints as background axioms for the fixedpoint solver. Alias for assert_expr."""
7755 self.assert_exprs(*args)
7756

◆ assert_exprs()

assert_exprs (   self,
args 
)
Assert constraints as background axioms for the fixedpoint solver.

Definition at line 7731 of file z3py.py.

7731 def assert_exprs(self, *args):
7732 """Assert constraints as background axioms for the fixedpoint solver."""
7733 args = _get_args(args)
7734 s = BoolSort(self.ctx)
7735 for arg in args:
7736 if isinstance(arg, Goal) or isinstance(arg, AstVector):
7737 for f in arg:
7738 f = self.abstract(f)
7739 Z3_fixedpoint_assert(self.ctx.ref(), self.fixedpoint, f.as_ast())
7740 else:
7741 arg = s.cast(arg)
7742 arg = self.abstract(arg)
7743 Z3_fixedpoint_assert(self.ctx.ref(), self.fixedpoint, arg.as_ast())
7744
void Z3_API Z3_fixedpoint_assert(Z3_context c, Z3_fixedpoint d, Z3_ast axiom)
Assert a constraint to the fixedpoint context.

Referenced by Goal.add(), Solver.add(), Goal.append(), Solver.append(), Goal.insert(), and Solver.insert().

◆ declare_var()

declare_var (   self,
vars 
)
Add variable or several variables.
The added variable or variables will be bound in the rules
and queries

Definition at line 7938 of file z3py.py.

7938 def declare_var(self, *vars):
7939 """Add variable or several variables.
7940 The added variable or variables will be bound in the rules
7941 and queries
7942 """
7943 vars = _get_args(vars)
7944 for v in vars:
7945 self.vars += [v]
7946

◆ fact()

fact (   self,
  head,
  name = None 
)
Assert facts defining recursive predicates to the fixedpoint solver. Alias for add_rule.

Definition at line 7788 of file z3py.py.

7788 def fact(self, head, name=None):
7789 """Assert facts defining recursive predicates to the fixedpoint solver. Alias for add_rule."""
7790 self.add_rule(head, None, name)
7791

◆ get_answer()

get_answer (   self)
Retrieve answer from last query call.

Definition at line 7839 of file z3py.py.

7839 def get_answer(self):
7840 """Retrieve answer from last query call."""
7841 r = Z3_fixedpoint_get_answer(self.ctx.ref(), self.fixedpoint)
7842 return _to_expr_ref(r, self.ctx)
7843
Z3_ast Z3_API Z3_fixedpoint_get_answer(Z3_context c, Z3_fixedpoint d)
Retrieve a formula that encodes satisfying answers to the query.

◆ get_assertions()

get_assertions (   self)
retrieve assertions that have been added to fixedpoint context

Definition at line 7906 of file z3py.py.

7906 def get_assertions(self):
7907 """retrieve assertions that have been added to fixedpoint context"""
7908 return AstVector(Z3_fixedpoint_get_assertions(self.ctx.ref(), self.fixedpoint), self.ctx)
7909
Z3_ast_vector Z3_API Z3_fixedpoint_get_assertions(Z3_context c, Z3_fixedpoint f)
Retrieve set of background assertions from fixedpoint context.

◆ get_cover_delta()

get_cover_delta (   self,
  level,
  predicate 
)
Retrieve properties known about predicate for the level'th unfolding.
-1 is treated as the limit (infinity)

Definition at line 7865 of file z3py.py.

7865 def get_cover_delta(self, level, predicate):
7866 """Retrieve properties known about predicate for the level'th unfolding.
7867 -1 is treated as the limit (infinity)
7868 """
7869 r = Z3_fixedpoint_get_cover_delta(self.ctx.ref(), self.fixedpoint, level, predicate.ast)
7870 return _to_expr_ref(r, self.ctx)
7871
Z3_ast Z3_API Z3_fixedpoint_get_cover_delta(Z3_context c, Z3_fixedpoint d, int level, Z3_func_decl pred)

◆ get_ground_sat_answer()

get_ground_sat_answer (   self)
Retrieve a ground cex from last query call.

Definition at line 7844 of file z3py.py.

7844 def get_ground_sat_answer(self):
7845 """Retrieve a ground cex from last query call."""
7846 r = Z3_fixedpoint_get_ground_sat_answer(self.ctx.ref(), self.fixedpoint)
7847 return _to_expr_ref(r, self.ctx)
7848

◆ get_num_levels()

get_num_levels (   self,
  predicate 
)
Retrieve number of levels used for predicate in PDR engine

Definition at line 7861 of file z3py.py.

7861 def get_num_levels(self, predicate):
7862 """Retrieve number of levels used for predicate in PDR engine"""
7863 return Z3_fixedpoint_get_num_levels(self.ctx.ref(), self.fixedpoint, predicate.ast)
7864
unsigned Z3_API Z3_fixedpoint_get_num_levels(Z3_context c, Z3_fixedpoint d, Z3_func_decl pred)
Query the PDR engine for the maximal levels properties are known about predicate.

◆ get_rule_names_along_trace()

get_rule_names_along_trace (   self)
retrieve rule names along the counterexample trace

Definition at line 7853 of file z3py.py.

7853 def get_rule_names_along_trace(self):
7854 """retrieve rule names along the counterexample trace"""
7855 # this is a hack as I don't know how to return a list of symbols from C++;
7856 # obtain names as a single string separated by semicolons
7857 names = _symbol2py(self.ctx, Z3_fixedpoint_get_rule_names_along_trace(self.ctx.ref(), self.fixedpoint))
7858 # split into individual names
7859 return names.split(";")
7860

◆ get_rules()

get_rules (   self)
retrieve rules that have been added to fixedpoint context

Definition at line 7902 of file z3py.py.

7902 def get_rules(self):
7903 """retrieve rules that have been added to fixedpoint context"""
7904 return AstVector(Z3_fixedpoint_get_rules(self.ctx.ref(), self.fixedpoint), self.ctx)
7905
Z3_ast_vector Z3_API Z3_fixedpoint_get_rules(Z3_context c, Z3_fixedpoint f)
Retrieve set of rules from fixedpoint context.

◆ get_rules_along_trace()

get_rules_along_trace (   self)
retrieve rules along the counterexample trace

Definition at line 7849 of file z3py.py.

7849 def get_rules_along_trace(self):
7850 """retrieve rules along the counterexample trace"""
7851 return AstVector(Z3_fixedpoint_get_rules_along_trace(self.ctx.ref(), self.fixedpoint), self.ctx)
7852

◆ help()

help (   self)
Display a string describing all available options.

Definition at line 7723 of file z3py.py.

7723 def help(self):
7724 """Display a string describing all available options."""
7725 print(Z3_fixedpoint_get_help(self.ctx.ref(), self.fixedpoint))
7726
Z3_string Z3_API Z3_fixedpoint_get_help(Z3_context c, Z3_fixedpoint f)
Return a string describing all fixedpoint available parameters.

◆ insert()

insert (   self,
args 
)
Assert constraints as background axioms for the fixedpoint solver. Alias for assert_expr.

Definition at line 7757 of file z3py.py.

7757 def insert(self, *args):
7758 """Assert constraints as background axioms for the fixedpoint solver. Alias for assert_expr."""
7759 self.assert_exprs(*args)
7760

◆ param_descrs()

param_descrs (   self)
Return the parameter description set.

Definition at line 7727 of file z3py.py.

7727 def param_descrs(self):
7728 """Return the parameter description set."""
7729 return ParamDescrsRef(Z3_fixedpoint_get_param_descrs(self.ctx.ref(), self.fixedpoint), self.ctx)
7730
Z3_param_descrs Z3_API Z3_fixedpoint_get_param_descrs(Z3_context c, Z3_fixedpoint f)
Return the parameter description set for the given fixedpoint object.

◆ parse_file()

parse_file (   self,
  f 
)
Parse rules and queries from a file

Definition at line 7898 of file z3py.py.

7898 def parse_file(self, f):
7899 """Parse rules and queries from a file"""
7900 return AstVector(Z3_fixedpoint_from_file(self.ctx.ref(), self.fixedpoint, f), self.ctx)
7901
Z3_ast_vector Z3_API Z3_fixedpoint_from_file(Z3_context c, Z3_fixedpoint f, Z3_string s)
Parse an SMT-LIB2 file with fixedpoint rules. Add the rules to the current fixedpoint context....

◆ parse_string()

parse_string (   self,
  s 
)
Parse rules and queries from a string

Definition at line 7894 of file z3py.py.

7894 def parse_string(self, s):
7895 """Parse rules and queries from a string"""
7896 return AstVector(Z3_fixedpoint_from_string(self.ctx.ref(), self.fixedpoint, s), self.ctx)
7897
Z3_ast_vector Z3_API Z3_fixedpoint_from_string(Z3_context c, Z3_fixedpoint f, Z3_string s)
Parse an SMT-LIB2 string with fixedpoint rules. Add the rules to the current fixedpoint context....

◆ query()

query (   self,
query 
)
Query the fixedpoint engine whether formula is derivable.
   You can also pass an tuple or list of recursive predicates.

Definition at line 7792 of file z3py.py.

7792 def query(self, *query):
7793 """Query the fixedpoint engine whether formula is derivable.
7794 You can also pass an tuple or list of recursive predicates.
7795 """
7796 query = _get_args(query)
7797 sz = len(query)
7798 if sz >= 1 and isinstance(query[0], FuncDeclRef):
7799 _decls = (FuncDecl * sz)()
7800 i = 0
7801 for q in query:
7802 _decls[i] = q.ast
7803 i = i + 1
7804 r = Z3_fixedpoint_query_relations(self.ctx.ref(), self.fixedpoint, sz, _decls)
7805 else:
7806 if sz == 1:
7807 query = query[0]
7808 else:
7809 query = And(query, self.ctx)
7810 query = self.abstract(query, False)
7811 r = Z3_fixedpoint_query(self.ctx.ref(), self.fixedpoint, query.as_ast())
7812 return CheckSatResult(r)
7813
Z3_lbool Z3_API Z3_fixedpoint_query(Z3_context c, Z3_fixedpoint d, Z3_ast query)
Pose a query against the asserted rules.
Z3_lbool Z3_API Z3_fixedpoint_query_relations(Z3_context c, Z3_fixedpoint d, unsigned num_relations, Z3_func_decl const relations[])
Pose multiple queries against the asserted rules.

◆ query_from_lvl()

query_from_lvl (   self,
  lvl,
query 
)
Query the fixedpoint engine whether formula is derivable starting at the given query level.

Definition at line 7814 of file z3py.py.

7814 def query_from_lvl(self, lvl, *query):
7815 """Query the fixedpoint engine whether formula is derivable starting at the given query level.
7816 """
7817 query = _get_args(query)
7818 sz = len(query)
7819 if sz >= 1 and isinstance(query[0], FuncDecl):
7820 _z3_assert(False, "unsupported")
7821 else:
7822 if sz == 1:
7823 query = query[0]
7824 else:
7825 query = And(query)
7826 query = self.abstract(query, False)
7827 r = Z3_fixedpoint_query_from_lvl(self.ctx.ref(), self.fixedpoint, query.as_ast(), lvl)
7828 return CheckSatResult(r)
7829

◆ reason_unknown()

reason_unknown (   self)
Return a string describing why the last `query()` returned `unknown`.

Definition at line 7933 of file z3py.py.

7933 def reason_unknown(self):
7934 """Return a string describing why the last `query()` returned `unknown`.
7935 """
7936 return Z3_fixedpoint_get_reason_unknown(self.ctx.ref(), self.fixedpoint)
7937
Z3_string Z3_API Z3_fixedpoint_get_reason_unknown(Z3_context c, Z3_fixedpoint d)
Retrieve a string that describes the last status returned by Z3_fixedpoint_query.

◆ register_relation()

register_relation (   self,
relations 
)
Register relation as recursive

Definition at line 7878 of file z3py.py.

7878 def register_relation(self, *relations):
7879 """Register relation as recursive"""
7880 relations = _get_args(relations)
7881 for f in relations:
7882 Z3_fixedpoint_register_relation(self.ctx.ref(), self.fixedpoint, f.ast)
7883
void Z3_API Z3_fixedpoint_register_relation(Z3_context c, Z3_fixedpoint d, Z3_func_decl f)
Register relation as Fixedpoint defined. Fixedpoint defined relations have least-fixedpoint semantics...

◆ rule()

rule (   self,
  head,
  body = None,
  name = None 
)
Assert rules defining recursive predicates to the fixedpoint solver. Alias for add_rule.

Definition at line 7784 of file z3py.py.

7784 def rule(self, head, body=None, name=None):
7785 """Assert rules defining recursive predicates to the fixedpoint solver. Alias for add_rule."""
7786 self.add_rule(head, body, name)
7787

◆ set()

set (   self,
args,
**  keys 
)
Set a configuration option. The method `help()` return a string containing all available options.

Definition at line 7717 of file z3py.py.

7717 def set(self, *args, **keys):
7718 """Set a configuration option. The method `help()` return a string containing all available options.
7719 """
7720 p = args2params(args, keys, self.ctx)
7721 Z3_fixedpoint_set_params(self.ctx.ref(), self.fixedpoint, p.params)
7722
void Z3_API Z3_fixedpoint_set_params(Z3_context c, Z3_fixedpoint f, Z3_params p)
Set parameters on fixedpoint context.

◆ set_predicate_representation()

set_predicate_representation (   self,
  f,
representations 
)
Control how relation is represented

Definition at line 7884 of file z3py.py.

7884 def set_predicate_representation(self, f, *representations):
7885 """Control how relation is represented"""
7886 representations = _get_args(representations)
7887 representations = [to_symbol(s) for s in representations]
7888 sz = len(representations)
7889 args = (Symbol * sz)()
7890 for i in range(sz):
7891 args[i] = representations[i]
7892 Z3_fixedpoint_set_predicate_representation(self.ctx.ref(), self.fixedpoint, f.ast, sz, args)
7893
void Z3_API Z3_fixedpoint_set_predicate_representation(Z3_context c, Z3_fixedpoint d, Z3_func_decl f, unsigned num_relations, Z3_symbol const relation_kinds[])
Configure the predicate representation.

◆ sexpr()

sexpr (   self)
Return a formatted string (in Lisp-like format) with all added constraints.
We say the string is in s-expression format.

Definition at line 7914 of file z3py.py.

7914 def sexpr(self):
7915 """Return a formatted string (in Lisp-like format) with all added constraints.
7916 We say the string is in s-expression format.
7917 """
7918 return Z3_fixedpoint_to_string(self.ctx.ref(), self.fixedpoint, 0, (Ast * 0)())
7919
Z3_string Z3_API Z3_fixedpoint_to_string(Z3_context c, Z3_fixedpoint f, unsigned num_queries, Z3_ast queries[])
Print the current rules and background axioms as a string.

◆ statistics()

statistics (   self)
Return statistics for the last `query()`.

Definition at line 7928 of file z3py.py.

7928 def statistics(self):
7929 """Return statistics for the last `query()`.
7930 """
7931 return Statistics(Z3_fixedpoint_get_statistics(self.ctx.ref(), self.fixedpoint), self.ctx)
7932
Z3_stats Z3_API Z3_fixedpoint_get_statistics(Z3_context c, Z3_fixedpoint d)
Retrieve statistics information from the last call to Z3_fixedpoint_query.

◆ to_string()

to_string (   self,
  queries 
)
Return a formatted string (in Lisp-like format) with all added constraints.
   We say the string is in s-expression format.
   Include also queries.

Definition at line 7920 of file z3py.py.

7920 def to_string(self, queries):
7921 """Return a formatted string (in Lisp-like format) with all added constraints.
7922 We say the string is in s-expression format.
7923 Include also queries.
7924 """
7925 args, len = _to_ast_array(queries)
7926 return Z3_fixedpoint_to_string(self.ctx.ref(), self.fixedpoint, len, args)
7927

◆ update_rule()

update_rule (   self,
  head,
  body,
  name 
)
update rule

Definition at line 7830 of file z3py.py.

7830 def update_rule(self, head, body, name):
7831 """update rule"""
7832 if name is None:
7833 name = ""
7834 name = to_symbol(name, self.ctx)
7835 body = _get_args(body)
7836 f = self.abstract(Implies(And(body, self.ctx), head))
7837 Z3_fixedpoint_update_rule(self.ctx.ref(), self.fixedpoint, f.as_ast(), name)
7838
void Z3_API Z3_fixedpoint_update_rule(Z3_context c, Z3_fixedpoint d, Z3_ast a, Z3_symbol name)
Update a named rule. A rule with the same name must have been previously created.

Field Documentation

◆ ctx

ctx

Definition at line 7701 of file z3py.py.

Referenced by ArithRef.__add__(), BitVecRef.__add__(), BitVecRef.__and__(), FuncDeclRef.__call__(), AstMap.__contains__(), AstRef.__copy__(), Goal.__copy__(), AstVector.__copy__(), FuncInterp.__copy__(), ModelRef.__copy__(), AstRef.__deepcopy__(), Datatype.__deepcopy__(), ParamsRef.__deepcopy__(), ParamDescrsRef.__deepcopy__(), Goal.__deepcopy__(), AstVector.__deepcopy__(), AstMap.__deepcopy__(), FuncEntry.__deepcopy__(), FuncInterp.__deepcopy__(), ModelRef.__deepcopy__(), Statistics.__deepcopy__(), Context.__del__(), AstRef.__del__(), ScopedConstructor.__del__(), ScopedConstructorList.__del__(), ParamsRef.__del__(), ParamDescrsRef.__del__(), Goal.__del__(), AstVector.__del__(), AstMap.__del__(), FuncEntry.__del__(), FuncInterp.__del__(), ModelRef.__del__(), Statistics.__del__(), Solver.__del__(), ArithRef.__div__(), BitVecRef.__div__(), ExprRef.__eq__(), ArithRef.__ge__(), BitVecRef.__ge__(), AstVector.__getitem__(), ModelRef.__getitem__(), Statistics.__getitem__(), AstMap.__getitem__(), ArithRef.__gt__(), BitVecRef.__gt__(), BitVecRef.__invert__(), ArithRef.__le__(), BitVecRef.__le__(), AstVector.__len__(), AstMap.__len__(), ModelRef.__len__(), Statistics.__len__(), BitVecRef.__lshift__(), ArithRef.__lt__(), BitVecRef.__lt__(), ArithRef.__mod__(), BitVecRef.__mod__(), BoolRef.__mul__(), ArithRef.__mul__(), BitVecRef.__mul__(), ExprRef.__ne__(), ArithRef.__neg__(), BitVecRef.__neg__(), BitVecRef.__or__(), ArithRef.__pow__(), ArithRef.__radd__(), BitVecRef.__radd__(), BitVecRef.__rand__(), ArithRef.__rdiv__(), BitVecRef.__rdiv__(), ParamsRef.__repr__(), ParamDescrsRef.__repr__(), AstMap.__repr__(), Statistics.__repr__(), BitVecRef.__rlshift__(), ArithRef.__rmod__(), BitVecRef.__rmod__(), ArithRef.__rmul__(), BitVecRef.__rmul__(), BitVecRef.__ror__(), ArithRef.__rpow__(), BitVecRef.__rrshift__(), BitVecRef.__rshift__(), ArithRef.__rsub__(), BitVecRef.__rsub__(), BitVecRef.__rxor__(), AstVector.__setitem__(), AstMap.__setitem__(), ArithRef.__sub__(), BitVecRef.__sub__(), BitVecRef.__xor__(), DatatypeSortRef.accessor(), ExprRef.arg(), FuncEntry.arg_value(), FuncInterp.arity(), Goal.as_expr(), Solver.assert_and_track(), Goal.assert_exprs(), Solver.assert_exprs(), QuantifierRef.body(), Solver.check(), Goal.convert_model(), AstRef.ctx_ref(), ExprRef.decl(), ModelRef.decls(), ArrayRef.default(), RatNumRef.denominator(), Goal.depth(), Goal.dimacs(), FuncDeclRef.domain(), ArraySortRef.domain_n(), FuncInterp.else_value(), FuncInterp.entry(), AstMap.erase(), ModelRef.eval(), Goal.get(), ParamDescrsRef.get_documentation(), ModelRef.get_interp(), Statistics.get_key_value(), ParamDescrsRef.get_kind(), ParamDescrsRef.get_name(), ModelRef.get_sort(), ModelRef.get_universe(), Goal.inconsistent(), AstMap.keys(), Statistics.keys(), Solver.model(), SortRef.name(), QuantifierRef.no_pattern(), FuncEntry.num_args(), FuncInterp.num_entries(), Solver.num_scopes(), ModelRef.num_sorts(), FuncDeclRef.params(), QuantifierRef.pattern(), AlgebraicNumRef.poly(), Solver.pop(), Goal.prec(), ModelRef.project(), ModelRef.project_with_witness(), Solver.push(), AstVector.push(), QuantifierRef.qid(), FuncDeclRef.range(), ArraySortRef.range(), DatatypeSortRef.recognizer(), Context.ref(), AstMap.reset(), Solver.reset(), AstVector.resize(), Solver.set(), ParamsRef.set(), Goal.sexpr(), AstVector.sexpr(), ModelRef.sexpr(), ParamDescrsRef.size(), Goal.size(), QuantifierRef.skolem_id(), AstVector.translate(), AstRef.translate(), Goal.translate(), ModelRef.translate(), ExprRef.update(), ParamsRef.validate(), FuncEntry.value(), QuantifierRef.var_name(), and QuantifierRef.var_sort().

◆ fixedpoint

fixedpoint

Definition at line 7702 of file z3py.py.

◆ vars

vars

Definition at line 7708 of file z3py.py.