Z3
 
Loading...
Searching...
No Matches
Public Member Functions | Data Fields
ModelRef Class Reference
+ Inheritance diagram for ModelRef:

Public Member Functions

 __init__ (self, m, ctx)
 
 __del__ (self)
 
 __repr__ (self)
 
 sexpr (self)
 
 eval (self, t, model_completion=False)
 
 evaluate (self, t, model_completion=False)
 
 __len__ (self)
 
 get_interp (self, decl)
 
 num_sorts (self)
 
 get_sort (self, idx)
 
 sorts (self)
 
 get_universe (self, s)
 
 __getitem__ (self, idx)
 
 decls (self)
 
 update_value (self, x, value)
 
 translate (self, target)
 
 project (self, vars, fml)
 
 project_with_witness (self, vars, fml)
 
 __copy__ (self)
 
 __deepcopy__ (self, memo={})
 
- Public Member Functions inherited from Z3PPObject
 use_pp (self)
 

Data Fields

 model
 
 ctx
 

Additional Inherited Members

- Protected Member Functions inherited from Z3PPObject
 _repr_html_ (self)
 

Detailed Description

Model/Solution of a satisfiability problem (aka system of constraints).

Definition at line 6514 of file z3py.py.

Constructor & Destructor Documentation

◆ __init__()

__init__ (   self,
  m,
  ctx 
)

Definition at line 6517 of file z3py.py.

6517 def __init__(self, m, ctx):
6518 assert ctx is not None
6519 self.model = m
6520 self.ctx = ctx
6521 Z3_model_inc_ref(self.ctx.ref(), self.model)
6522
void Z3_API Z3_model_inc_ref(Z3_context c, Z3_model m)
Increment the reference counter of the given model.

◆ __del__()

__del__ (   self)

Definition at line 6523 of file z3py.py.

6523 def __del__(self):
6524 if self.ctx.ref() is not None and Z3_model_dec_ref is not None:
6525 Z3_model_dec_ref(self.ctx.ref(), self.model)
6526
void Z3_API Z3_model_dec_ref(Z3_context c, Z3_model m)
Decrement the reference counter of the given model.

Member Function Documentation

◆ __copy__()

__copy__ (   self)

Definition at line 6853 of file z3py.py.

6853 def __copy__(self):
6854 return self.translate(self.ctx)
6855

◆ __deepcopy__()

__deepcopy__ (   self,
  memo = {} 
)

Definition at line 6856 of file z3py.py.

6856 def __deepcopy__(self, memo={}):
6857 return self.translate(self.ctx)
6858
6859

◆ __getitem__()

__getitem__ (   self,
  idx 
)
If `idx` is an integer, then the declaration at position `idx` in the model `self` is returned.
If `idx` is a declaration, then the actual interpretation is returned.

The elements can be retrieved using position or the actual declaration.

>>> f = Function('f', IntSort(), IntSort())
>>> x = Int('x')
>>> s = Solver()
>>> s.add(x > 0, x < 2, f(x) == 0)
>>> s.check()
sat
>>> m = s.model()
>>> len(m)
2
>>> m[0]
x
>>> m[1]
f
>>> m[x]
1
>>> m[f]
[else -> 0]
>>> for d in m: print("%s -> %s" % (d, m[d]))
x -> 1
f -> [else -> 0]

Definition at line 6735 of file z3py.py.

6735 def __getitem__(self, idx):
6736 """If `idx` is an integer, then the declaration at position `idx` in the model `self` is returned.
6737 If `idx` is a declaration, then the actual interpretation is returned.
6738
6739 The elements can be retrieved using position or the actual declaration.
6740
6741 >>> f = Function('f', IntSort(), IntSort())
6742 >>> x = Int('x')
6743 >>> s = Solver()
6744 >>> s.add(x > 0, x < 2, f(x) == 0)
6745 >>> s.check()
6746 sat
6747 >>> m = s.model()
6748 >>> len(m)
6749 2
6750 >>> m[0]
6751 x
6752 >>> m[1]
6753 f
6754 >>> m[x]
6755 1
6756 >>> m[f]
6757 [else -> 0]
6758 >>> for d in m: print("%s -> %s" % (d, m[d]))
6759 x -> 1
6760 f -> [else -> 0]
6761 """
6762 if _is_int(idx):
6763 if idx >= len(self):
6764 raise IndexError
6765 num_consts = Z3_model_get_num_consts(self.ctx.ref(), self.model)
6766 if (idx < num_consts):
6767 return FuncDeclRef(Z3_model_get_const_decl(self.ctx.ref(), self.model, idx), self.ctx)
6768 else:
6769 return FuncDeclRef(Z3_model_get_func_decl(self.ctx.ref(), self.model, idx - num_consts), self.ctx)
6770 if isinstance(idx, FuncDeclRef):
6771 return self.get_interp(idx)
6772 if is_const(idx):
6773 return self.get_interp(idx.decl())
6774 if isinstance(idx, SortRef):
6775 return self.get_universe(idx)
6776 if z3_debug():
6777 _z3_assert(False, "Integer, Z3 declaration, or Z3 constant expected")
6778 return None
6779
Z3_func_decl Z3_API Z3_model_get_func_decl(Z3_context c, Z3_model m, unsigned i)
Return the declaration of the i-th function in the given model.
unsigned Z3_API Z3_model_get_num_consts(Z3_context c, Z3_model m)
Return the number of constants assigned by the given model.
Z3_func_decl Z3_API Z3_model_get_const_decl(Z3_context c, Z3_model m, unsigned i)
Return the i-th constant in the given model.

◆ __len__()

__len__ (   self)
Return the number of constant and function declarations in the model `self`.

>>> f = Function('f', IntSort(), IntSort())
>>> x = Int('x')
>>> s = Solver()
>>> s.add(x > 0, f(x) != x)
>>> s.check()
sat
>>> m = s.model()
>>> len(m)
2

Definition at line 6591 of file z3py.py.

6591 def __len__(self):
6592 """Return the number of constant and function declarations in the model `self`.
6593
6594 >>> f = Function('f', IntSort(), IntSort())
6595 >>> x = Int('x')
6596 >>> s = Solver()
6597 >>> s.add(x > 0, f(x) != x)
6598 >>> s.check()
6599 sat
6600 >>> m = s.model()
6601 >>> len(m)
6602 2
6603 """
6604 num_consts = int(Z3_model_get_num_consts(self.ctx.ref(), self.model))
6605 num_funcs = int(Z3_model_get_num_funcs(self.ctx.ref(), self.model))
6606 return num_consts + num_funcs
6607
unsigned Z3_API Z3_model_get_num_funcs(Z3_context c, Z3_model m)
Return the number of function interpretations in the given model.

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

◆ __repr__()

__repr__ (   self)

Definition at line 6527 of file z3py.py.

6527 def __repr__(self):
6528 return obj_to_string(self)
6529

◆ decls()

decls (   self)
Return a list with all symbols that have an interpretation in the model `self`.
>>> f = Function('f', IntSort(), IntSort())
>>> x = Int('x')
>>> s = Solver()
>>> s.add(x > 0, x < 2, f(x) == 0)
>>> s.check()
sat
>>> m = s.model()
>>> m.decls()
[x, f]

Definition at line 6780 of file z3py.py.

6780 def decls(self):
6781 """Return a list with all symbols that have an interpretation in the model `self`.
6782 >>> f = Function('f', IntSort(), IntSort())
6783 >>> x = Int('x')
6784 >>> s = Solver()
6785 >>> s.add(x > 0, x < 2, f(x) == 0)
6786 >>> s.check()
6787 sat
6788 >>> m = s.model()
6789 >>> m.decls()
6790 [x, f]
6791 """
6792 r = []
6793 for i in range(Z3_model_get_num_consts(self.ctx.ref(), self.model)):
6794 r.append(FuncDeclRef(Z3_model_get_const_decl(self.ctx.ref(), self.model, i), self.ctx))
6795 for i in range(Z3_model_get_num_funcs(self.ctx.ref(), self.model)):
6796 r.append(FuncDeclRef(Z3_model_get_func_decl(self.ctx.ref(), self.model, i), self.ctx))
6797 return r
6798

◆ eval()

eval (   self,
  t,
  model_completion = False 
)
Evaluate the expression `t` in the model `self`.
If `model_completion` is enabled, then a default interpretation is automatically added
for symbols that do not have an interpretation in the model `self`.

>>> x = Int('x')
>>> s = Solver()
>>> s.add(x > 0, x < 2)
>>> s.check()
sat
>>> m = s.model()
>>> m.eval(x + 1)
2
>>> m.eval(x == 1)
True
>>> y = Int('y')
>>> m.eval(y + x)
1 + y
>>> m.eval(y)
y
>>> m.eval(y, model_completion=True)
0
>>> # Now, m contains an interpretation for y
>>> m.eval(y + x)
1

Definition at line 6534 of file z3py.py.

6534 def eval(self, t, model_completion=False):
6535 """Evaluate the expression `t` in the model `self`.
6536 If `model_completion` is enabled, then a default interpretation is automatically added
6537 for symbols that do not have an interpretation in the model `self`.
6538
6539 >>> x = Int('x')
6540 >>> s = Solver()
6541 >>> s.add(x > 0, x < 2)
6542 >>> s.check()
6543 sat
6544 >>> m = s.model()
6545 >>> m.eval(x + 1)
6546 2
6547 >>> m.eval(x == 1)
6548 True
6549 >>> y = Int('y')
6550 >>> m.eval(y + x)
6551 1 + y
6552 >>> m.eval(y)
6553 y
6554 >>> m.eval(y, model_completion=True)
6555 0
6556 >>> # Now, m contains an interpretation for y
6557 >>> m.eval(y + x)
6558 1
6559 """
6560 r = (Ast * 1)()
6561 if Z3_model_eval(self.ctx.ref(), self.model, t.as_ast(), model_completion, r):
6562 return _to_expr_ref(r[0], self.ctx)
6563 raise Z3Exception("failed to evaluate expression in the model")
6564
bool Z3_API Z3_model_eval(Z3_context c, Z3_model m, Z3_ast t, bool model_completion, Z3_ast *v)
Evaluate the AST node t in the given model. Return true if succeeded, and store the result in v.

Referenced by ModelRef.evaluate().

◆ evaluate()

evaluate (   self,
  t,
  model_completion = False 
)
Alias for `eval`.

>>> x = Int('x')
>>> s = Solver()
>>> s.add(x > 0, x < 2)
>>> s.check()
sat
>>> m = s.model()
>>> m.evaluate(x + 1)
2
>>> m.evaluate(x == 1)
True
>>> y = Int('y')
>>> m.evaluate(y + x)
1 + y
>>> m.evaluate(y)
y
>>> m.evaluate(y, model_completion=True)
0
>>> # Now, m contains an interpretation for y
>>> m.evaluate(y + x)
1

Definition at line 6565 of file z3py.py.

6565 def evaluate(self, t, model_completion=False):
6566 """Alias for `eval`.
6567
6568 >>> x = Int('x')
6569 >>> s = Solver()
6570 >>> s.add(x > 0, x < 2)
6571 >>> s.check()
6572 sat
6573 >>> m = s.model()
6574 >>> m.evaluate(x + 1)
6575 2
6576 >>> m.evaluate(x == 1)
6577 True
6578 >>> y = Int('y')
6579 >>> m.evaluate(y + x)
6580 1 + y
6581 >>> m.evaluate(y)
6582 y
6583 >>> m.evaluate(y, model_completion=True)
6584 0
6585 >>> # Now, m contains an interpretation for y
6586 >>> m.evaluate(y + x)
6587 1
6588 """
6589 return self.eval(t, model_completion)
6590

◆ get_interp()

get_interp (   self,
  decl 
)
Return the interpretation for a given declaration or constant.

>>> f = Function('f', IntSort(), IntSort())
>>> x = Int('x')
>>> s = Solver()
>>> s.add(x > 0, x < 2, f(x) == 0)
>>> s.check()
sat
>>> m = s.model()
>>> m[x]
1
>>> m[f]
[else -> 0]

Definition at line 6608 of file z3py.py.

6608 def get_interp(self, decl):
6609 """Return the interpretation for a given declaration or constant.
6610
6611 >>> f = Function('f', IntSort(), IntSort())
6612 >>> x = Int('x')
6613 >>> s = Solver()
6614 >>> s.add(x > 0, x < 2, f(x) == 0)
6615 >>> s.check()
6616 sat
6617 >>> m = s.model()
6618 >>> m[x]
6619 1
6620 >>> m[f]
6621 [else -> 0]
6622 """
6623 if z3_debug():
6624 _z3_assert(isinstance(decl, FuncDeclRef) or is_const(decl), "Z3 declaration expected")
6625 if is_const(decl):
6626 decl = decl.decl()
6627 try:
6628 if decl.arity() == 0:
6629 _r = Z3_model_get_const_interp(self.ctx.ref(), self.model, decl.ast)
6630 if _r.value is None:
6631 return None
6632 r = _to_expr_ref(_r, self.ctx)
6633 if is_as_array(r):
6634 fi = self.get_interp(get_as_array_func(r))
6635 if fi is None:
6636 return fi
6637 e = fi.else_value()
6638 if e is None:
6639 return fi
6640 if fi.arity() != 1:
6641 return fi
6642 srt = decl.range()
6643 dom = srt.domain()
6644 e = K(dom, e)
6645 i = 0
6646 sz = fi.num_entries()
6647 n = fi.arity()
6648 while i < sz:
6649 fe = fi.entry(i)
6650 e = Store(e, fe.arg_value(0), fe.value())
6651 i += 1
6652 return e
6653 else:
6654 return r
6655 else:
6656 return FuncInterp(Z3_model_get_func_interp(self.ctx.ref(), self.model, decl.ast), self.ctx)
6657 except Z3Exception:
6658 return None
6659
Z3_ast Z3_API Z3_model_get_const_interp(Z3_context c, Z3_model m, Z3_func_decl a)
Return the interpretation (i.e., assignment) of constant a in the model m. Return NULL,...
Z3_func_interp Z3_API Z3_model_get_func_interp(Z3_context c, Z3_model m, Z3_func_decl f)
Return the interpretation of the function f in the model m. Return NULL, if the model does not assign...

Referenced by ModelRef.__getitem__(), and ModelRef.get_interp().

◆ get_sort()

get_sort (   self,
  idx 
)
Return the uninterpreted sort at position `idx` < self.num_sorts().

>>> A = DeclareSort('A')
>>> B = DeclareSort('B')
>>> a1, a2 = Consts('a1 a2', A)
>>> b1, b2 = Consts('b1 b2', B)
>>> s = Solver()
>>> s.add(a1 != a2, b1 != b2)
>>> s.check()
sat
>>> m = s.model()
>>> m.num_sorts()
2
>>> m.get_sort(0)
A
>>> m.get_sort(1)
B

Definition at line 6675 of file z3py.py.

6675 def get_sort(self, idx):
6676 """Return the uninterpreted sort at position `idx` < self.num_sorts().
6677
6678 >>> A = DeclareSort('A')
6679 >>> B = DeclareSort('B')
6680 >>> a1, a2 = Consts('a1 a2', A)
6681 >>> b1, b2 = Consts('b1 b2', B)
6682 >>> s = Solver()
6683 >>> s.add(a1 != a2, b1 != b2)
6684 >>> s.check()
6685 sat
6686 >>> m = s.model()
6687 >>> m.num_sorts()
6688 2
6689 >>> m.get_sort(0)
6690 A
6691 >>> m.get_sort(1)
6692 B
6693 """
6694 if idx >= self.num_sorts():
6695 raise IndexError
6696 return _to_sort_ref(Z3_model_get_sort(self.ctx.ref(), self.model, idx), self.ctx)
6697
Z3_sort Z3_API Z3_model_get_sort(Z3_context c, Z3_model m, unsigned i)
Return a uninterpreted sort that m assigns an interpretation.

Referenced by ModelRef.sorts().

◆ get_universe()

get_universe (   self,
  s 
)
Return the interpretation for the uninterpreted sort `s` in the model `self`.

>>> A = DeclareSort('A')
>>> a, b = Consts('a b', A)
>>> s = Solver()
>>> s.add(a != b)
>>> s.check()
sat
>>> m = s.model()
>>> m.get_universe(A)
[A!val!1, A!val!0]

Definition at line 6715 of file z3py.py.

6715 def get_universe(self, s):
6716 """Return the interpretation for the uninterpreted sort `s` in the model `self`.
6717
6718 >>> A = DeclareSort('A')
6719 >>> a, b = Consts('a b', A)
6720 >>> s = Solver()
6721 >>> s.add(a != b)
6722 >>> s.check()
6723 sat
6724 >>> m = s.model()
6725 >>> m.get_universe(A)
6726 [A!val!1, A!val!0]
6727 """
6728 if z3_debug():
6729 _z3_assert(isinstance(s, SortRef), "Z3 sort expected")
6730 try:
6731 return AstVector(Z3_model_get_sort_universe(self.ctx.ref(), self.model, s.ast), self.ctx)
6732 except Z3Exception:
6733 return None
6734
Z3_ast_vector Z3_API Z3_model_get_sort_universe(Z3_context c, Z3_model m, Z3_sort s)
Return the finite set of distinct values that represent the interpretation for sort s.

Referenced by ModelRef.__getitem__().

◆ num_sorts()

num_sorts (   self)
Return the number of uninterpreted sorts that contain an interpretation in the model `self`.

>>> A = DeclareSort('A')
>>> a, b = Consts('a b', A)
>>> s = Solver()
>>> s.add(a != b)
>>> s.check()
sat
>>> m = s.model()
>>> m.num_sorts()
1

Definition at line 6660 of file z3py.py.

6660 def num_sorts(self):
6661 """Return the number of uninterpreted sorts that contain an interpretation in the model `self`.
6662
6663 >>> A = DeclareSort('A')
6664 >>> a, b = Consts('a b', A)
6665 >>> s = Solver()
6666 >>> s.add(a != b)
6667 >>> s.check()
6668 sat
6669 >>> m = s.model()
6670 >>> m.num_sorts()
6671 1
6672 """
6673 return int(Z3_model_get_num_sorts(self.ctx.ref(), self.model))
6674
unsigned Z3_API Z3_model_get_num_sorts(Z3_context c, Z3_model m)
Return the number of uninterpreted sorts that m assigns an interpretation to.

Referenced by ModelRef.get_sort(), and ModelRef.sorts().

◆ project()

project (   self,
  vars,
  fml 
)
Perform model-based projection on fml with respect to vars.
Assume that the model satisfies fml. Then compute a projection fml_p, such
that vars do not occur free in fml_p, fml_p is true in the model and
fml_p => exists vars . fml

Definition at line 6829 of file z3py.py.

6829 def project(self, vars, fml):
6830 """Perform model-based projection on fml with respect to vars.
6831 Assume that the model satisfies fml. Then compute a projection fml_p, such
6832 that vars do not occur free in fml_p, fml_p is true in the model and
6833 fml_p => exists vars . fml
6834 """
6835 ctx = self.ctx.ref()
6836 _vars = (Ast * len(vars))()
6837 for i in range(len(vars)):
6838 _vars[i] = vars[i].as_ast()
6839 return _to_expr_ref(Z3_qe_model_project(ctx, self.model, len(vars), _vars, fml.ast), self.ctx)
6840

◆ project_with_witness()

project_with_witness (   self,
  vars,
  fml 
)
Perform model-based projection, but also include realizer terms for the projected variables

Definition at line 6841 of file z3py.py.

6841 def project_with_witness(self, vars, fml):
6842 """Perform model-based projection, but also include realizer terms for the projected variables"""
6843 ctx = self.ctx.ref()
6844 _vars = (Ast * len(vars))()
6845 for i in range(len(vars)):
6846 _vars[i] = vars[i].as_ast()
6847 defs = AstMap()
6848 result = Z3_qe_model_project_with_witness(ctx, self.model, len(vars), _vars, fml.ast, defs.map)
6849 result = _to_expr_ref(result, self.ctx)
6850 return result, defs
6851
6852

◆ sexpr()

sexpr (   self)
Return a textual representation of the s-expression representing the model.

Definition at line 6530 of file z3py.py.

6530 def sexpr(self):
6531 """Return a textual representation of the s-expression representing the model."""
6532 return Z3_model_to_string(self.ctx.ref(), self.model)
6533
Z3_string Z3_API Z3_model_to_string(Z3_context c, Z3_model m)
Convert the given model into a string.

◆ sorts()

sorts (   self)
Return all uninterpreted sorts that have an interpretation in the model `self`.

>>> A = DeclareSort('A')
>>> B = DeclareSort('B')
>>> a1, a2 = Consts('a1 a2', A)
>>> b1, b2 = Consts('b1 b2', B)
>>> s = Solver()
>>> s.add(a1 != a2, b1 != b2)
>>> s.check()
sat
>>> m = s.model()
>>> m.sorts()
[A, B]

Definition at line 6698 of file z3py.py.

6698 def sorts(self):
6699 """Return all uninterpreted sorts that have an interpretation in the model `self`.
6700
6701 >>> A = DeclareSort('A')
6702 >>> B = DeclareSort('B')
6703 >>> a1, a2 = Consts('a1 a2', A)
6704 >>> b1, b2 = Consts('b1 b2', B)
6705 >>> s = Solver()
6706 >>> s.add(a1 != a2, b1 != b2)
6707 >>> s.check()
6708 sat
6709 >>> m = s.model()
6710 >>> m.sorts()
6711 [A, B]
6712 """
6713 return [self.get_sort(i) for i in range(self.num_sorts())]
6714

◆ translate()

translate (   self,
  target 
)
Translate `self` to the context `target`. That is, return a copy of `self` in the context `target`.

Definition at line 6821 of file z3py.py.

6821 def translate(self, target):
6822 """Translate `self` to the context `target`. That is, return a copy of `self` in the context `target`.
6823 """
6824 if z3_debug():
6825 _z3_assert(isinstance(target, Context), "argument must be a Z3 context")
6826 model = Z3_model_translate(self.ctx.ref(), self.model, target.ref())
6827 return ModelRef(model, target)
6828
Z3_model Z3_API Z3_model_translate(Z3_context c, Z3_model m, Z3_context dst)
translate model from context c to context dst.

Referenced by AstRef.__copy__(), Goal.__copy__(), AstVector.__copy__(), FuncInterp.__copy__(), ModelRef.__copy__(), Goal.__deepcopy__(), AstVector.__deepcopy__(), FuncInterp.__deepcopy__(), and ModelRef.__deepcopy__().

◆ update_value()

update_value (   self,
  x,
  value 
)
Update the interpretation of a constant

Definition at line 6799 of file z3py.py.

6799 def update_value(self, x, value):
6800 """Update the interpretation of a constant"""
6801 if is_expr(x):
6802 x = x.decl()
6803 if is_func_decl(x) and x.arity() != 0 and isinstance(value, FuncInterp):
6804 fi1 = value.f
6805 fi2 = Z3_add_func_interp(x.ctx_ref(), self.model, x.ast, value.else_value().ast);
6806 fi2 = FuncInterp(fi2, x.ctx)
6807 for i in range(value.num_entries()):
6808 e = value.entry(i)
6809 n = Z3_func_entry_get_num_args(x.ctx_ref(), e.entry)
6810 v = AstVector()
6811 for j in range(n):
6812 v.push(e.arg_value(j))
6813 val = Z3_func_entry_get_value(x.ctx_ref(), e.entry)
6814 Z3_func_interp_add_entry(x.ctx_ref(), fi2.f, v.vector, val)
6815 return
6816 if not is_func_decl(x) or x.arity() != 0:
6817 raise Z3Exception("Expecting 0-ary function or constant expression")
6818 value = _py2expr(value)
6819 Z3_add_const_interp(x.ctx_ref(), self.model, x.ast, value.ast)
6820
Z3_func_interp Z3_API Z3_add_func_interp(Z3_context c, Z3_model m, Z3_func_decl f, Z3_ast default_value)
Create a fresh func_interp object, add it to a model for a specified function. It has reference count...
unsigned Z3_API Z3_func_entry_get_num_args(Z3_context c, Z3_func_entry e)
Return the number of arguments in a Z3_func_entry object.
Z3_ast Z3_API Z3_func_entry_get_value(Z3_context c, Z3_func_entry e)
Return the value of this point.
void Z3_API Z3_add_const_interp(Z3_context c, Z3_model m, Z3_func_decl f, Z3_ast a)
Add a constant interpretation.
void Z3_API Z3_func_interp_add_entry(Z3_context c, Z3_func_interp fi, Z3_ast_vector args, Z3_ast value)
add a function entry to a function interpretation.

Field Documentation

◆ ctx

ctx

Definition at line 6520 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().

◆ model

model