Z3
Public Member Functions
BoolSortRef Class Reference

Booleans. More...

+ Inheritance diagram for BoolSortRef:

Public Member Functions

def cast (self, val)
 
def subsort (self, other)
 
def is_int (self)
 
def is_bool (self)
 
- Public Member Functions inherited from SortRef
def as_ast (self)
 
def get_id (self)
 
def kind (self)
 
def name (self)
 
def __eq__ (self, other)
 
def __ne__ (self, other)
 
def __hash__ (self)
 
- Public Member Functions inherited from AstRef
def __init__ (self, ast, ctx=None)
 
def __del__ (self)
 
def __deepcopy__ (self, memo={})
 
def __str__ (self)
 
def __repr__ (self)
 
def __nonzero__ (self)
 
def __bool__ (self)
 
def sexpr (self)
 
def ctx_ref (self)
 
def eq (self, other)
 
def translate (self, target)
 
def __copy__ (self)
 
def hash (self)
 
- Public Member Functions inherited from Z3PPObject
def use_pp (self)
 

Additional Inherited Members

- Data Fields inherited from AstRef
 ast
 
 ctx
 

Detailed Description

Booleans.

Boolean sort.

Definition at line 1479 of file z3py.py.

Member Function Documentation

◆ cast()

def cast (   self,
  val 
)
Try to cast `val` as a Boolean.

>>> x = BoolSort().cast(True)
>>> x
True
>>> is_expr(x)
True
>>> is_expr(True)
False
>>> x.sort()
Bool

Reimplemented from SortRef.

Definition at line 1482 of file z3py.py.

1482  def cast(self, val):
1483  """Try to cast `val` as a Boolean.
1484 
1485  >>> x = BoolSort().cast(True)
1486  >>> x
1487  True
1488  >>> is_expr(x)
1489  True
1490  >>> is_expr(True)
1491  False
1492  >>> x.sort()
1493  Bool
1494  """
1495  if isinstance(val, bool):
1496  return BoolVal(val, self.ctx)
1497  if z3_debug():
1498  if not is_expr(val):
1499  msg = "True, False or Z3 Boolean expression expected. Received %s of type %s"
1500  _z3_assert(is_expr(val), msg % (val, type(val)))
1501  if not self.eq(val.sort()):
1502  _z3_assert(self.eq(val.sort()), "Value cannot be converted into a Z3 Boolean value")
1503  return val
1504 
def z3_debug()
Definition: z3py.py:62
def is_expr(a)
Definition: z3py.py:1209
def BoolVal(val, ctx=None)
Definition: z3py.py:1672

◆ is_bool()

def is_bool (   self)

Definition at line 1511 of file z3py.py.

1511  def is_bool(self):
1512  return True
1513 
1514 
def is_bool(a)
Definition: z3py.py:1534

◆ is_int()

def is_int (   self)

Definition at line 1508 of file z3py.py.

1508  def is_int(self):
1509  return True
1510 
def is_int(a)
Definition: z3py.py:2646

Referenced by IntNumRef.as_long(), and ArithSortRef.subsort().

◆ subsort()

def subsort (   self,
  other 
)
Return `True` if `self` is a subsort of `other`.

>>> IntSort().subsort(RealSort())
True

Reimplemented from SortRef.

Definition at line 1505 of file z3py.py.

1505  def subsort(self, other):
1506  return isinstance(other, ArithSortRef)
1507