Z3
 
Loading...
Searching...
No Matches
SeqRef Class Reference
+ Inheritance diagram for SeqRef:

Public Member Functions

 sort (self)
 
 __add__ (self, other)
 
 __radd__ (self, other)
 
 __getitem__ (self, i)
 
 at (self, i)
 
 is_string (self)
 
 is_string_value (self)
 
 as_string (self)
 
 __le__ (self, other)
 
 __lt__ (self, other)
 
 __ge__ (self, other)
 
 __gt__ (self, other)
 
- Public Member Functions inherited from ExprRef
 as_ast (self)
 
 get_id (self)
 
 sort_kind (self)
 
 __eq__ (self, other)
 
 __hash__ (self)
 
 __ne__ (self, other)
 
 params (self)
 
 decl (self)
 
 kind (self)
 
 num_args (self)
 
 arg (self, idx)
 
 children (self)
 
 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

Sequence expression.

Definition at line 10954 of file z3py.py.

Member Function Documentation

◆ __add__()

__add__ ( self,
other )

Definition at line 10960 of file z3py.py.

10960 def __add__(self, other):
10961 return Concat(self, other)
10962

◆ __ge__()

__ge__ ( self,
other )

Definition at line 10996 of file z3py.py.

10996 def __ge__(self, other):
10997 return _to_expr_ref(Z3_mk_str_le(self.ctx_ref(), other.as_ast(), self.as_ast()), self.ctx)
10998
Z3_ast Z3_API Z3_mk_str_le(Z3_context c, Z3_ast prefix, Z3_ast s)
Check if s1 is equal or lexicographically strictly less than s2.

◆ __getitem__()

__getitem__ ( self,
i )

Definition at line 10966 of file z3py.py.

10966 def __getitem__(self, i):
10967 if _is_int(i):
10968 i = IntVal(i, self.ctx)
10969 return _to_expr_ref(Z3_mk_seq_nth(self.ctx_ref(), self.as_ast(), i.as_ast()), self.ctx)
10970
Z3_ast Z3_API Z3_mk_seq_nth(Z3_context c, Z3_ast s, Z3_ast index)
Retrieve from s the element positioned at position index. The function is under-specified if the inde...

◆ __gt__()

__gt__ ( self,
other )

Definition at line 10999 of file z3py.py.

10999 def __gt__(self, other):
11000 return _to_expr_ref(Z3_mk_str_lt(self.ctx_ref(), other.as_ast(), self.as_ast()), self.ctx)
11001
11002
Z3_ast Z3_API Z3_mk_str_lt(Z3_context c, Z3_ast prefix, Z3_ast s)
Check if s1 is lexicographically strictly less than s2.

◆ __le__()

__le__ ( self,
other )

Definition at line 10990 of file z3py.py.

10990 def __le__(self, other):
10991 return _to_expr_ref(Z3_mk_str_le(self.ctx_ref(), self.as_ast(), other.as_ast()), self.ctx)
10992

◆ __lt__()

__lt__ ( self,
other )

Definition at line 10993 of file z3py.py.

10993 def __lt__(self, other):
10994 return _to_expr_ref(Z3_mk_str_lt(self.ctx_ref(), self.as_ast(), other.as_ast()), self.ctx)
10995

◆ __radd__()

__radd__ ( self,
other )

Definition at line 10963 of file z3py.py.

10963 def __radd__(self, other):
10964 return Concat(other, self)
10965

◆ as_string()

as_string ( self)
Return a string representation of sequence expression.

Definition at line 10982 of file z3py.py.

10982 def as_string(self):
10983 """Return a string representation of sequence expression."""
10984 if self.is_string_value():
10985 string_length = ctypes.c_uint()
10986 chars = Z3_get_lstring(self.ctx_ref(), self.as_ast(), byref(string_length))
10987 return string_at(chars, size=string_length.value).decode("latin-1")
10988 return Z3_ast_to_string(self.ctx_ref(), self.as_ast())
10989
Z3_string Z3_API Z3_ast_to_string(Z3_context c, Z3_ast a)
Convert the given AST node into a string.
Z3_char_ptr Z3_API Z3_get_lstring(Z3_context c, Z3_ast s, unsigned *length)
Retrieve the string constant stored in s. The string can contain escape sequences....

◆ at()

at ( self,
i )

Definition at line 10971 of file z3py.py.

10971 def at(self, i):
10972 if _is_int(i):
10973 i = IntVal(i, self.ctx)
10974 return SeqRef(Z3_mk_seq_at(self.ctx_ref(), self.as_ast(), i.as_ast()), self.ctx)
10975
Z3_ast Z3_API Z3_mk_seq_at(Z3_context c, Z3_ast s, Z3_ast index)
Retrieve from s the unit sequence positioned at position index. The sequence is empty if the index is...

◆ is_string()

is_string ( self)

Definition at line 10976 of file z3py.py.

10976 def is_string(self):
10977 return Z3_is_string_sort(self.ctx_ref(), Z3_get_sort(self.ctx_ref(), self.as_ast()))
10978
bool Z3_API Z3_is_string_sort(Z3_context c, Z3_sort s)
Check if s is a string sort.
Z3_sort Z3_API Z3_get_sort(Z3_context c, Z3_ast a)
Return the sort of an AST node.

◆ is_string_value()

is_string_value ( self)

Definition at line 10979 of file z3py.py.

10979 def is_string_value(self):
10980 return Z3_is_string(self.ctx_ref(), self.as_ast())
10981
bool Z3_API Z3_is_string(Z3_context c, Z3_ast s)
Determine if s is a string constant.

◆ sort()

sort ( self)
Return the sort of expression `self`.

>>> x = Int('x')
>>> (x + 1).sort()
Int
>>> y = Real('y')
>>> (x + y).sort()
Real

Reimplemented from ExprRef.

Definition at line 10957 of file z3py.py.

10957 def sort(self):
10958 return SeqSortRef(Z3_get_sort(self.ctx_ref(), self.as_ast()), self.ctx)
10959