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

Quantifiers. More...

Inheritance diagram for QuantifierRef:

Public Member Functions

 as_ast (self)
 get_id (self)
 sort (self)
 is_forall (self)
 is_exists (self)
 is_lambda (self)
 __getitem__ (self, arg)
 weight (self)
 skolem_id (self)
 qid (self)
 num_patterns (self)
 pattern (self, idx)
 num_no_patterns (self)
 no_pattern (self, idx)
 body (self)
 num_vars (self)
 var_name (self, idx)
 var_sort (self, idx)
 children (self)
Public Member Functions inherited from BoolRef
 __add__ (self, other)
 __radd__ (self, other)
 __rmul__ (self, other)
 __mul__ (self, other)
 __and__ (self, other)
 __or__ (self, other)
 __xor__ (self, other)
 __invert__ (self)
 py_value (self)
Public Member Functions inherited from ExprRef
 sort_kind (self)
 __eq__ (self, other)
 __hash__ (self)
 __ne__ (self, other)
 params (self)
 decl (self)
 kind (self)
 num_args (self)
 arg (self, idx)
 update (self, *args)
 from_string (self, s)
 serialize (self)
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)
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

Quantifiers.

Universally and Existentially quantified formulas.

Definition at line 2121 of file z3py.py.

Member Function Documentation

◆ __getitem__()

__getitem__ ( self,
arg )
Return the Z3 expression `self[arg]`.

Definition at line 2178 of file z3py.py.

2178 def __getitem__(self, arg):
2179 """Return the Z3 expression `self[arg]`.
2180 """
2181 if z3_debug():
2182 _z3_assert(self.is_lambda(), "quantifier should be a lambda expression")
2183 return _array_select(self, arg)
2184

◆ as_ast()

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

Reimplemented from ExprRef.

Definition at line 2124 of file z3py.py.

2124 def as_ast(self):
2125 return self.ast
2126

◆ body()

body ( self)
Return the expression being quantified.

>>> f = Function('f', IntSort(), IntSort())
>>> x = Int('x')
>>> q = ForAll(x, f(x) == 0)
>>> q.body()
f(Var(0)) == 0

Definition at line 2249 of file z3py.py.

2249 def body(self):
2250 """Return the expression being quantified.
2251
2252 >>> f = Function('f', IntSort(), IntSort())
2253 >>> x = Int('x')
2254 >>> q = ForAll(x, f(x) == 0)
2255 >>> q.body()
2256 f(Var(0)) == 0
2257 """
2258 return _to_expr_ref(Z3_get_quantifier_body(self.ctx_ref(), self.ast), self.ctx)
2259
Z3_ast Z3_API Z3_get_quantifier_body(Z3_context c, Z3_ast a)
Return body of quantifier.

Referenced by children().

◆ children()

children ( self)
Return a list containing a single element self.body()

>>> f = Function('f', IntSort(), IntSort())
>>> x = Int('x')
>>> q = ForAll(x, f(x) == 0)
>>> q.children()
[f(Var(0)) == 0]

Reimplemented from ExprRef.

Definition at line 2304 of file z3py.py.

2304 def children(self):
2305 """Return a list containing a single element self.body()
2306
2307 >>> f = Function('f', IntSort(), IntSort())
2308 >>> x = Int('x')
2309 >>> q = ForAll(x, f(x) == 0)
2310 >>> q.children()
2311 [f(Var(0)) == 0]
2312 """
2313 return [self.body()]
2314
2315

◆ get_id()

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

Reimplemented from ExprRef.

Definition at line 2127 of file z3py.py.

2127 def get_id(self):
2128 return Z3_get_ast_id(self.ctx_ref(), self.as_ast())
2129
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....

◆ is_exists()

is_exists ( self)
Return `True` if `self` is an existential quantifier.

>>> f = Function('f', IntSort(), IntSort())
>>> x = Int('x')
>>> q = ForAll(x, f(x) == 0)
>>> q.is_exists()
False
>>> q = Exists(x, f(x) != 0)
>>> q.is_exists()
True

Definition at line 2150 of file z3py.py.

2150 def is_exists(self):
2151 """Return `True` if `self` is an existential quantifier.
2152
2153 >>> f = Function('f', IntSort(), IntSort())
2154 >>> x = Int('x')
2155 >>> q = ForAll(x, f(x) == 0)
2156 >>> q.is_exists()
2157 False
2158 >>> q = Exists(x, f(x) != 0)
2159 >>> q.is_exists()
2160 True
2161 """
2162 return Z3_is_quantifier_exists(self.ctx_ref(), self.ast)
2163
bool Z3_API Z3_is_quantifier_exists(Z3_context c, Z3_ast a)
Determine if ast is an existential quantifier.

◆ is_forall()

is_forall ( self)
Return `True` if `self` is a universal quantifier.

>>> f = Function('f', IntSort(), IntSort())
>>> x = Int('x')
>>> q = ForAll(x, f(x) == 0)
>>> q.is_forall()
True
>>> q = Exists(x, f(x) != 0)
>>> q.is_forall()
False

Definition at line 2136 of file z3py.py.

2136 def is_forall(self):
2137 """Return `True` if `self` is a universal quantifier.
2138
2139 >>> f = Function('f', IntSort(), IntSort())
2140 >>> x = Int('x')
2141 >>> q = ForAll(x, f(x) == 0)
2142 >>> q.is_forall()
2143 True
2144 >>> q = Exists(x, f(x) != 0)
2145 >>> q.is_forall()
2146 False
2147 """
2148 return Z3_is_quantifier_forall(self.ctx_ref(), self.ast)
2149
bool Z3_API Z3_is_quantifier_forall(Z3_context c, Z3_ast a)
Determine if an ast is a universal quantifier.

◆ is_lambda()

is_lambda ( self)
Return `True` if `self` is a lambda expression.

>>> f = Function('f', IntSort(), IntSort())
>>> x = Int('x')
>>> q = Lambda(x, f(x))
>>> q.is_lambda()
True
>>> q = Exists(x, f(x) != 0)
>>> q.is_lambda()
False

Definition at line 2164 of file z3py.py.

2164 def is_lambda(self):
2165 """Return `True` if `self` is a lambda expression.
2166
2167 >>> f = Function('f', IntSort(), IntSort())
2168 >>> x = Int('x')
2169 >>> q = Lambda(x, f(x))
2170 >>> q.is_lambda()
2171 True
2172 >>> q = Exists(x, f(x) != 0)
2173 >>> q.is_lambda()
2174 False
2175 """
2176 return Z3_is_lambda(self.ctx_ref(), self.ast)
2177
bool Z3_API Z3_is_lambda(Z3_context c, Z3_ast a)
Determine if ast is a lambda expression.

Referenced by __getitem__(), and sort().

◆ no_pattern()

no_pattern ( self,
idx )
Return a no-pattern.

Definition at line 2243 of file z3py.py.

2243 def no_pattern(self, idx):
2244 """Return a no-pattern."""
2245 if z3_debug():
2246 _z3_assert(idx < self.num_no_patterns(), "Invalid no-pattern idx")
2247 return _to_expr_ref(Z3_get_quantifier_no_pattern_ast(self.ctx_ref(), self.ast, idx), self.ctx)
2248
Z3_ast Z3_API Z3_get_quantifier_no_pattern_ast(Z3_context c, Z3_ast a, unsigned i)
Return i'th no_pattern.

◆ num_no_patterns()

num_no_patterns ( self)
Return the number of no-patterns.

Definition at line 2239 of file z3py.py.

2239 def num_no_patterns(self):
2240 """Return the number of no-patterns."""
2241 return Z3_get_quantifier_num_no_patterns(self.ctx_ref(), self.ast)
2242
unsigned Z3_API Z3_get_quantifier_num_no_patterns(Z3_context c, Z3_ast a)
Return number of no_patterns used in quantifier.

Referenced by no_pattern().

◆ num_patterns()

num_patterns ( self)
Return the number of patterns (i.e., quantifier instantiation hints) in `self`.

>>> f = Function('f', IntSort(), IntSort())
>>> g = Function('g', IntSort(), IntSort())
>>> x = Int('x')
>>> q = ForAll(x, f(x) != g(x), patterns = [ f(x), g(x) ])
>>> q.num_patterns()
2

Definition at line 2209 of file z3py.py.

2209 def num_patterns(self):
2210 """Return the number of patterns (i.e., quantifier instantiation hints) in `self`.
2211
2212 >>> f = Function('f', IntSort(), IntSort())
2213 >>> g = Function('g', IntSort(), IntSort())
2214 >>> x = Int('x')
2215 >>> q = ForAll(x, f(x) != g(x), patterns = [ f(x), g(x) ])
2216 >>> q.num_patterns()
2217 2
2218 """
2219 return int(Z3_get_quantifier_num_patterns(self.ctx_ref(), self.ast))
2220
unsigned Z3_API Z3_get_quantifier_num_patterns(Z3_context c, Z3_ast a)
Return number of patterns used in quantifier.

Referenced by pattern().

◆ num_vars()

num_vars ( self)
Return the number of variables bounded by this quantifier.

>>> f = Function('f', IntSort(), IntSort(), IntSort())
>>> x = Int('x')
>>> y = Int('y')
>>> q = ForAll([x, y], f(x, y) >= x)
>>> q.num_vars()
2

Definition at line 2260 of file z3py.py.

2260 def num_vars(self):
2261 """Return the number of variables bounded by this quantifier.
2262
2263 >>> f = Function('f', IntSort(), IntSort(), IntSort())
2264 >>> x = Int('x')
2265 >>> y = Int('y')
2266 >>> q = ForAll([x, y], f(x, y) >= x)
2267 >>> q.num_vars()
2268 2
2269 """
2270 return int(Z3_get_quantifier_num_bound(self.ctx_ref(), self.ast))
2271
unsigned Z3_API Z3_get_quantifier_num_bound(Z3_context c, Z3_ast a)
Return number of bound variables of quantifier.

Referenced by var_name(), and var_sort().

◆ pattern()

pattern ( self,
idx )
Return a pattern (i.e., quantifier instantiation hints) in `self`.

>>> f = Function('f', IntSort(), IntSort())
>>> g = Function('g', IntSort(), IntSort())
>>> x = Int('x')
>>> q = ForAll(x, f(x) != g(x), patterns = [ f(x), g(x) ])
>>> q.num_patterns()
2
>>> q.pattern(0)
f(Var(0))
>>> q.pattern(1)
g(Var(0))

Definition at line 2221 of file z3py.py.

2221 def pattern(self, idx):
2222 """Return a pattern (i.e., quantifier instantiation hints) in `self`.
2223
2224 >>> f = Function('f', IntSort(), IntSort())
2225 >>> g = Function('g', IntSort(), IntSort())
2226 >>> x = Int('x')
2227 >>> q = ForAll(x, f(x) != g(x), patterns = [ f(x), g(x) ])
2228 >>> q.num_patterns()
2229 2
2230 >>> q.pattern(0)
2231 f(Var(0))
2232 >>> q.pattern(1)
2233 g(Var(0))
2234 """
2235 if z3_debug():
2236 _z3_assert(idx < self.num_patterns(), "Invalid pattern idx")
2237 return PatternRef(Z3_get_quantifier_pattern_ast(self.ctx_ref(), self.ast, idx), self.ctx)
2238
Z3_pattern Z3_API Z3_get_quantifier_pattern_ast(Z3_context c, Z3_ast a, unsigned i)
Return i'th pattern.

◆ qid()

qid ( self)
Return the quantifier id of `self`.

Definition at line 2204 of file z3py.py.

2204 def qid(self):
2205 """Return the quantifier id of `self`.
2206 """
2207 return _symbol2py(self.ctx, Z3_get_quantifier_id(self.ctx_ref(), self.ast))
2208
Z3_symbol Z3_API Z3_get_quantifier_id(Z3_context c, Z3_ast a)
Obtain id of quantifier.

◆ skolem_id()

skolem_id ( self)
Return the skolem id of `self`.

Definition at line 2199 of file z3py.py.

2199 def skolem_id(self):
2200 """Return the skolem id of `self`.
2201 """
2202 return _symbol2py(self.ctx, Z3_get_quantifier_skolem_id(self.ctx_ref(), self.ast))
2203
Z3_symbol Z3_API Z3_get_quantifier_skolem_id(Z3_context c, Z3_ast a)
Obtain skolem id of quantifier.

◆ sort()

sort ( self)
Return the Boolean sort or sort of Lambda.

Reimplemented from BoolRef.

Definition at line 2130 of file z3py.py.

2130 def sort(self):
2131 """Return the Boolean sort or sort of Lambda."""
2132 if self.is_lambda():
2133 return _sort(self.ctx, self.as_ast())
2134 return BoolSort(self.ctx)
2135

◆ var_name()

var_name ( self,
idx )
Return a string representing a name used when displaying the quantifier.

>>> f = Function('f', IntSort(), IntSort(), IntSort())
>>> x = Int('x')
>>> y = Int('y')
>>> q = ForAll([x, y], f(x, y) >= x)
>>> q.var_name(0)
'x'
>>> q.var_name(1)
'y'

Definition at line 2272 of file z3py.py.

2272 def var_name(self, idx):
2273 """Return a string representing a name used when displaying the quantifier.
2274
2275 >>> f = Function('f', IntSort(), IntSort(), IntSort())
2276 >>> x = Int('x')
2277 >>> y = Int('y')
2278 >>> q = ForAll([x, y], f(x, y) >= x)
2279 >>> q.var_name(0)
2280 'x'
2281 >>> q.var_name(1)
2282 'y'
2283 """
2284 if z3_debug():
2285 _z3_assert(idx < self.num_vars(), "Invalid variable idx")
2286 return _symbol2py(self.ctx, Z3_get_quantifier_bound_name(self.ctx_ref(), self.ast, idx))
2287
Z3_symbol Z3_API Z3_get_quantifier_bound_name(Z3_context c, Z3_ast a, unsigned i)
Return symbol of the i'th bound variable.

◆ var_sort()

var_sort ( self,
idx )
Return the sort of a bound variable.

>>> f = Function('f', IntSort(), RealSort(), IntSort())
>>> x = Int('x')
>>> y = Real('y')
>>> q = ForAll([x, y], f(x, y) >= x)
>>> q.var_sort(0)
Int
>>> q.var_sort(1)
Real

Definition at line 2288 of file z3py.py.

2288 def var_sort(self, idx):
2289 """Return the sort of a bound variable.
2290
2291 >>> f = Function('f', IntSort(), RealSort(), IntSort())
2292 >>> x = Int('x')
2293 >>> y = Real('y')
2294 >>> q = ForAll([x, y], f(x, y) >= x)
2295 >>> q.var_sort(0)
2296 Int
2297 >>> q.var_sort(1)
2298 Real
2299 """
2300 if z3_debug():
2301 _z3_assert(idx < self.num_vars(), "Invalid variable idx")
2302 return _to_sort_ref(Z3_get_quantifier_bound_sort(self.ctx_ref(), self.ast, idx), self.ctx)
2303
Z3_sort Z3_API Z3_get_quantifier_bound_sort(Z3_context c, Z3_ast a, unsigned i)
Return sort of the i'th bound variable.

◆ weight()

weight ( self)
Return the weight annotation of `self`.

>>> f = Function('f', IntSort(), IntSort())
>>> x = Int('x')
>>> q = ForAll(x, f(x) == 0)
>>> q.weight()
1
>>> q = ForAll(x, f(x) == 0, weight=10)
>>> q.weight()
10

Definition at line 2185 of file z3py.py.

2185 def weight(self):
2186 """Return the weight annotation of `self`.
2187
2188 >>> f = Function('f', IntSort(), IntSort())
2189 >>> x = Int('x')
2190 >>> q = ForAll(x, f(x) == 0)
2191 >>> q.weight()
2192 1
2193 >>> q = ForAll(x, f(x) == 0, weight=10)
2194 >>> q.weight()
2195 10
2196 """
2197 return int(Z3_get_quantifier_weight(self.ctx_ref(), self.ast))
2198
unsigned Z3_API Z3_get_quantifier_weight(Z3_context c, Z3_ast a)
Obtain weight of quantifier.