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 7652 of file z3py.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 7655 of file z3py.py.

7655 def __init__(self, fixedpoint=None, ctx=None):
7656 assert fixedpoint is None or ctx is not None
7657 self.ctx = _get_ctx(ctx)
7658 self.fixedpoint = None
7659 if fixedpoint is None:
7660 self.fixedpoint = Z3_mk_fixedpoint(self.ctx.ref())
7661 else:
7662 self.fixedpoint = fixedpoint
7663 Z3_fixedpoint_inc_ref(self.ctx.ref(), self.fixedpoint)
7664 self.vars = []
7665
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 7669 of file z3py.py.

7669 def __del__(self):
7670 if self.fixedpoint is not None and self.ctx.ref() is not None and Z3_fixedpoint_dec_ref is not None:
7671 Z3_fixedpoint_dec_ref(self.ctx.ref(), self.fixedpoint)
7672
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 7666 of file z3py.py.

7666 def __deepcopy__(self, memo={}):
7667 return FixedPoint(self.fixedpoint, self.ctx)
7668

◆ __iadd__()

__iadd__ (   self,
  fml 
)

Definition at line 7705 of file z3py.py.

7705 def __iadd__(self, fml):
7706 self.add(fml)
7707 return self
7708

◆ __repr__()

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

Definition at line 7866 of file z3py.py.

7866 def __repr__(self):
7867 """Return a formatted string with all added rules and constraints."""
7868 return self.sexpr()
7869

◆ abstract()

abstract (   self,
  fml,
  is_forall = True 
)

Definition at line 7903 of file z3py.py.

7903 def abstract(self, fml, is_forall=True):
7904 if self.vars == []:
7905 return fml
7906 if is_forall:
7907 return ForAll(self.vars, fml)
7908 else:
7909 return Exists(self.vars, fml)
7910
7911

◆ add()

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

Definition at line 7701 of file z3py.py.

7701 def add(self, *args):
7702 """Assert constraints as background axioms for the fixedpoint solver. Alias for assert_expr."""
7703 self.assert_exprs(*args)
7704

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 7828 of file z3py.py.

7828 def add_cover(self, level, predicate, property):
7829 """Add property to predicate for the level'th unfolding.
7830 -1 is treated as infinity (infinity)
7831 """
7832 Z3_fixedpoint_add_cover(self.ctx.ref(), self.fixedpoint, level, predicate.ast, property.ast)
7833
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 7717 of file z3py.py.

7717 def add_rule(self, head, body=None, name=None):
7718 """Assert rules defining recursive predicates to the fixedpoint solver.
7719 >>> a = Bool('a')
7720 >>> b = Bool('b')
7721 >>> s = Fixedpoint()
7722 >>> s.register_relation(a.decl())
7723 >>> s.register_relation(b.decl())
7724 >>> s.fact(a)
7725 >>> s.rule(b, a)
7726 >>> s.query(b)
7727 sat
7728 """
7729 if name is None:
7730 name = ""
7731 name = to_symbol(name, self.ctx)
7732 if body is None:
7733 head = self.abstract(head)
7734 Z3_fixedpoint_add_rule(self.ctx.ref(), self.fixedpoint, head.as_ast(), name)
7735 else:
7736 body = _get_args(body)
7737 f = self.abstract(Implies(And(body, self.ctx), head))
7738 Z3_fixedpoint_add_rule(self.ctx.ref(), self.fixedpoint, f.as_ast(), name)
7739
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 7709 of file z3py.py.

7709 def append(self, *args):
7710 """Assert constraints as background axioms for the fixedpoint solver. Alias for assert_expr."""
7711 self.assert_exprs(*args)
7712

◆ assert_exprs()

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

Definition at line 7687 of file z3py.py.

7687 def assert_exprs(self, *args):
7688 """Assert constraints as background axioms for the fixedpoint solver."""
7689 args = _get_args(args)
7690 s = BoolSort(self.ctx)
7691 for arg in args:
7692 if isinstance(arg, Goal) or isinstance(arg, AstVector):
7693 for f in arg:
7694 f = self.abstract(f)
7695 Z3_fixedpoint_assert(self.ctx.ref(), self.fixedpoint, f.as_ast())
7696 else:
7697 arg = s.cast(arg)
7698 arg = self.abstract(arg)
7699 Z3_fixedpoint_assert(self.ctx.ref(), self.fixedpoint, arg.as_ast())
7700
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 7894 of file z3py.py.

7894 def declare_var(self, *vars):
7895 """Add variable or several variables.
7896 The added variable or variables will be bound in the rules
7897 and queries
7898 """
7899 vars = _get_args(vars)
7900 for v in vars:
7901 self.vars += [v]
7902

◆ fact()

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

Definition at line 7744 of file z3py.py.

7744 def fact(self, head, name=None):
7745 """Assert facts defining recursive predicates to the fixedpoint solver. Alias for add_rule."""
7746 self.add_rule(head, None, name)
7747

◆ get_answer()

get_answer (   self)
Retrieve answer from last query call.

Definition at line 7795 of file z3py.py.

7795 def get_answer(self):
7796 """Retrieve answer from last query call."""
7797 r = Z3_fixedpoint_get_answer(self.ctx.ref(), self.fixedpoint)
7798 return _to_expr_ref(r, self.ctx)
7799
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 7862 of file z3py.py.

7862 def get_assertions(self):
7863 """retrieve assertions that have been added to fixedpoint context"""
7864 return AstVector(Z3_fixedpoint_get_assertions(self.ctx.ref(), self.fixedpoint), self.ctx)
7865
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 7821 of file z3py.py.

7821 def get_cover_delta(self, level, predicate):
7822 """Retrieve properties known about predicate for the level'th unfolding.
7823 -1 is treated as the limit (infinity)
7824 """
7825 r = Z3_fixedpoint_get_cover_delta(self.ctx.ref(), self.fixedpoint, level, predicate.ast)
7826 return _to_expr_ref(r, self.ctx)
7827
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 7800 of file z3py.py.

7800 def get_ground_sat_answer(self):
7801 """Retrieve a ground cex from last query call."""
7802 r = Z3_fixedpoint_get_ground_sat_answer(self.ctx.ref(), self.fixedpoint)
7803 return _to_expr_ref(r, self.ctx)
7804

◆ get_num_levels()

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

Definition at line 7817 of file z3py.py.

7817 def get_num_levels(self, predicate):
7818 """Retrieve number of levels used for predicate in PDR engine"""
7819 return Z3_fixedpoint_get_num_levels(self.ctx.ref(), self.fixedpoint, predicate.ast)
7820
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 7809 of file z3py.py.

7809 def get_rule_names_along_trace(self):
7810 """retrieve rule names along the counterexample trace"""
7811 # this is a hack as I don't know how to return a list of symbols from C++;
7812 # obtain names as a single string separated by semicolons
7813 names = _symbol2py(self.ctx, Z3_fixedpoint_get_rule_names_along_trace(self.ctx.ref(), self.fixedpoint))
7814 # split into individual names
7815 return names.split(";")
7816

◆ get_rules()

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

Definition at line 7858 of file z3py.py.

7858 def get_rules(self):
7859 """retrieve rules that have been added to fixedpoint context"""
7860 return AstVector(Z3_fixedpoint_get_rules(self.ctx.ref(), self.fixedpoint), self.ctx)
7861
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 7805 of file z3py.py.

7805 def get_rules_along_trace(self):
7806 """retrieve rules along the counterexample trace"""
7807 return AstVector(Z3_fixedpoint_get_rules_along_trace(self.ctx.ref(), self.fixedpoint), self.ctx)
7808

◆ help()

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

Definition at line 7679 of file z3py.py.

7679 def help(self):
7680 """Display a string describing all available options."""
7681 print(Z3_fixedpoint_get_help(self.ctx.ref(), self.fixedpoint))
7682
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 7713 of file z3py.py.

7713 def insert(self, *args):
7714 """Assert constraints as background axioms for the fixedpoint solver. Alias for assert_expr."""
7715 self.assert_exprs(*args)
7716

◆ param_descrs()

param_descrs (   self)
Return the parameter description set.

Definition at line 7683 of file z3py.py.

7683 def param_descrs(self):
7684 """Return the parameter description set."""
7685 return ParamDescrsRef(Z3_fixedpoint_get_param_descrs(self.ctx.ref(), self.fixedpoint), self.ctx)
7686
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 7854 of file z3py.py.

7854 def parse_file(self, f):
7855 """Parse rules and queries from a file"""
7856 return AstVector(Z3_fixedpoint_from_file(self.ctx.ref(), self.fixedpoint, f), self.ctx)
7857
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 7850 of file z3py.py.

7850 def parse_string(self, s):
7851 """Parse rules and queries from a string"""
7852 return AstVector(Z3_fixedpoint_from_string(self.ctx.ref(), self.fixedpoint, s), self.ctx)
7853
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 7748 of file z3py.py.

7748 def query(self, *query):
7749 """Query the fixedpoint engine whether formula is derivable.
7750 You can also pass an tuple or list of recursive predicates.
7751 """
7752 query = _get_args(query)
7753 sz = len(query)
7754 if sz >= 1 and isinstance(query[0], FuncDeclRef):
7755 _decls = (FuncDecl * sz)()
7756 i = 0
7757 for q in query:
7758 _decls[i] = q.ast
7759 i = i + 1
7760 r = Z3_fixedpoint_query_relations(self.ctx.ref(), self.fixedpoint, sz, _decls)
7761 else:
7762 if sz == 1:
7763 query = query[0]
7764 else:
7765 query = And(query, self.ctx)
7766 query = self.abstract(query, False)
7767 r = Z3_fixedpoint_query(self.ctx.ref(), self.fixedpoint, query.as_ast())
7768 return CheckSatResult(r)
7769
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 7770 of file z3py.py.

7770 def query_from_lvl(self, lvl, *query):
7771 """Query the fixedpoint engine whether formula is derivable starting at the given query level.
7772 """
7773 query = _get_args(query)
7774 sz = len(query)
7775 if sz >= 1 and isinstance(query[0], FuncDecl):
7776 _z3_assert(False, "unsupported")
7777 else:
7778 if sz == 1:
7779 query = query[0]
7780 else:
7781 query = And(query)
7782 query = self.abstract(query, False)
7783 r = Z3_fixedpoint_query_from_lvl(self.ctx.ref(), self.fixedpoint, query.as_ast(), lvl)
7784 return CheckSatResult(r)
7785

◆ reason_unknown()

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

Definition at line 7889 of file z3py.py.

7889 def reason_unknown(self):
7890 """Return a string describing why the last `query()` returned `unknown`.
7891 """
7892 return Z3_fixedpoint_get_reason_unknown(self.ctx.ref(), self.fixedpoint)
7893
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 7834 of file z3py.py.

7834 def register_relation(self, *relations):
7835 """Register relation as recursive"""
7836 relations = _get_args(relations)
7837 for f in relations:
7838 Z3_fixedpoint_register_relation(self.ctx.ref(), self.fixedpoint, f.ast)
7839
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 7740 of file z3py.py.

7740 def rule(self, head, body=None, name=None):
7741 """Assert rules defining recursive predicates to the fixedpoint solver. Alias for add_rule."""
7742 self.add_rule(head, body, name)
7743

◆ set()

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

Definition at line 7673 of file z3py.py.

7673 def set(self, *args, **keys):
7674 """Set a configuration option. The method `help()` return a string containing all available options.
7675 """
7676 p = args2params(args, keys, self.ctx)
7677 Z3_fixedpoint_set_params(self.ctx.ref(), self.fixedpoint, p.params)
7678
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 7840 of file z3py.py.

7840 def set_predicate_representation(self, f, *representations):
7841 """Control how relation is represented"""
7842 representations = _get_args(representations)
7843 representations = [to_symbol(s) for s in representations]
7844 sz = len(representations)
7845 args = (Symbol * sz)()
7846 for i in range(sz):
7847 args[i] = representations[i]
7848 Z3_fixedpoint_set_predicate_representation(self.ctx.ref(), self.fixedpoint, f.ast, sz, args)
7849
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 7870 of file z3py.py.

7870 def sexpr(self):
7871 """Return a formatted string (in Lisp-like format) with all added constraints.
7872 We say the string is in s-expression format.
7873 """
7874 return Z3_fixedpoint_to_string(self.ctx.ref(), self.fixedpoint, 0, (Ast * 0)())
7875
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 7884 of file z3py.py.

7884 def statistics(self):
7885 """Return statistics for the last `query()`.
7886 """
7887 return Statistics(Z3_fixedpoint_get_statistics(self.ctx.ref(), self.fixedpoint), self.ctx)
7888
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 7876 of file z3py.py.

7876 def to_string(self, queries):
7877 """Return a formatted string (in Lisp-like format) with all added constraints.
7878 We say the string is in s-expression format.
7879 Include also queries.
7880 """
7881 args, len = _to_ast_array(queries)
7882 return Z3_fixedpoint_to_string(self.ctx.ref(), self.fixedpoint, len, args)
7883

◆ update_rule()

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

Definition at line 7786 of file z3py.py.

7786 def update_rule(self, head, body, name):
7787 """update rule"""
7788 if name is None:
7789 name = ""
7790 name = to_symbol(name, self.ctx)
7791 body = _get_args(body)
7792 f = self.abstract(Implies(And(body, self.ctx), head))
7793 Z3_fixedpoint_update_rule(self.ctx.ref(), self.fixedpoint, f.as_ast(), name)
7794
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 7657 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(), ParamsRef.validate(), FuncEntry.value(), QuantifierRef.var_name(), and QuantifierRef.var_sort().

◆ fixedpoint

fixedpoint

Definition at line 7658 of file z3py.py.

◆ vars

vars

Definition at line 7664 of file z3py.py.