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

Public Member Functions

 sort (self)
 
 __add__ (self, other)
 
 __radd__ (self, other)
 
 __rmul__ (self, other)
 
 __mul__ (self, other)
 
 __and__ (self, other)
 
 __or__ (self, other)
 
 __xor__ (self, other)
 
 __invert__ (self)
 
- 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

All Boolean expressions are instances of this class.

Definition at line 1575 of file z3py.py.

Member Function Documentation

◆ __add__()

__add__ ( self,
other )

Definition at line 1581 of file z3py.py.

1581 def __add__(self, other):
1582 if isinstance(other, BoolRef):
1583 other = If(other, 1, 0)
1584 return If(self, 1, 0) + other
1585

◆ __and__()

__and__ ( self,
other )

Definition at line 1603 of file z3py.py.

1603 def __and__(self, other):
1604 return And(self, other)
1605

◆ __invert__()

__invert__ ( self)

Definition at line 1612 of file z3py.py.

1612 def __invert__(self):
1613 return Not(self)
1614
1615
1616

◆ __mul__()

__mul__ ( self,
other )
Create the Z3 expression `self * other`.

Definition at line 1592 of file z3py.py.

1592 def __mul__(self, other):
1593 """Create the Z3 expression `self * other`.
1594 """
1595 if isinstance(other, int) and other == 1:
1596 return If(self, 1, 0)
1597 if isinstance(other, int) and other == 0:
1598 return IntVal(0, self.ctx)
1599 if isinstance(other, BoolRef):
1600 other = If(other, 1, 0)
1601 return If(self, other, 0)
1602

◆ __or__()

__or__ ( self,
other )

Definition at line 1606 of file z3py.py.

1606 def __or__(self, other):
1607 return Or(self, other)
1608

◆ __radd__()

__radd__ ( self,
other )

Definition at line 1586 of file z3py.py.

1586 def __radd__(self, other):
1587 return self + other
1588

◆ __rmul__()

__rmul__ ( self,
other )

Definition at line 1589 of file z3py.py.

1589 def __rmul__(self, other):
1590 return self * other
1591

◆ __xor__()

__xor__ ( self,
other )

Definition at line 1609 of file z3py.py.

1609 def __xor__(self, other):
1610 return Xor(self, other)
1611

◆ 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.

Reimplemented in QuantifierRef.

Definition at line 1578 of file z3py.py.

1578 def sort(self):
1579 return BoolSortRef(Z3_get_sort(self.ctx_ref(), self.as_ast()), self.ctx)
1580
Z3_sort Z3_API Z3_get_sort(Z3_context c, Z3_ast a)
Return the sort of an AST node.