Z3
Public Member Functions | Data Fields
ArithSortRef Class Reference

Arithmetic. More...

+ Inheritance diagram for ArithSortRef:

Public Member Functions

def is_real (self)
 
def is_int (self)
 
def subsort (self, other)
 
def cast (self, val)
 
- Public Member Functions inherited from SortRef
def as_ast (self)
 
def get_id (self)
 
def kind (self)
 
def subsort (self, other)
 
def cast (self, val)
 
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 __eq__ (self, other)
 
def __hash__ (self)
 
def __nonzero__ (self)
 
def __bool__ (self)
 
def sexpr (self)
 
def as_ast (self)
 
def get_id (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)
 

Data Fields

 ctx
 
- Data Fields inherited from AstRef
 ast
 
 ctx
 

Detailed Description

Arithmetic.

Real and Integer sorts.

Definition at line 2073 of file z3py.py.

Member Function Documentation

◆ cast()

def cast (   self,
  val 
)
Try to cast `val` as an Integer or Real.

>>> IntSort().cast(10)
10
>>> is_int(IntSort().cast(10))
True
>>> is_int(10)
False
>>> RealSort().cast(10)
10
>>> is_real(RealSort().cast(10))
True

Definition at line 2108 of file z3py.py.

2108  def cast(self, val):
2109  """Try to cast `val` as an Integer or Real.
2110 
2111  >>> IntSort().cast(10)
2112  10
2113  >>> is_int(IntSort().cast(10))
2114  True
2115  >>> is_int(10)
2116  False
2117  >>> RealSort().cast(10)
2118  10
2119  >>> is_real(RealSort().cast(10))
2120  True
2121  """
2122  if is_expr(val):
2123  if __debug__:
2124  _z3_assert(self.ctx == val.ctx, "Context mismatch")
2125  val_s = val.sort()
2126  if self.eq(val_s):
2127  return val
2128  if val_s.is_int() and self.is_real():
2129  return ToReal(val)
2130  if val_s.is_bool() and self.is_int():
2131  return If(val, 1, 0)
2132  if val_s.is_bool() and self.is_real():
2133  return ToReal(If(val, 1, 0))
2134  if __debug__:
2135  _z3_assert(False, "Z3 Integer/Real expression expected" )
2136  else:
2137  if self.is_int():
2138  return IntVal(val, self.ctx)
2139  if self.is_real():
2140  return RealVal(val, self.ctx)
2141  if __debug__:
2142  _z3_assert(False, "int, long, float, string (numeral), or Z3 Integer/Real expression expected. Got %s" % self)
2143 
def IntVal(val, ctx=None)
Definition: z3py.py:2920
def If(a, b, c, ctx=None)
Definition: z3py.py:1227
def RealVal(val, ctx=None)
Definition: z3py.py:2931
def ToReal(a)
Definition: z3py.py:3076
def is_expr(a)
Definition: z3py.py:1094

◆ is_int()

def is_int (   self)
Return `True` if `self` is of the sort Integer.

>>> x = Int('x')
>>> x.is_int()
True
>>> (x + 1).is_int()
True
>>> x = Real('x')
>>> x.is_int()
False

Definition at line 2090 of file z3py.py.

Referenced by ArithSortRef.cast().

2090  def is_int(self):
2091  """Return `True` if `self` is of the sort Integer.
2092 
2093  >>> x = Int('x')
2094  >>> x.is_int()
2095  True
2096  >>> (x + 1).is_int()
2097  True
2098  >>> x = Real('x')
2099  >>> x.is_int()
2100  False
2101  """
2102  return self.kind() == Z3_INT_SORT
2103 
def is_int(a)
Definition: z3py.py:2463

◆ is_real()

def is_real (   self)
Return `True` if `self` is of the sort Real.

>>> x = Real('x')
>>> x.is_real()
True
>>> (x + 1).is_real()
True
>>> x = Int('x')
>>> x.is_real()
False

Definition at line 2076 of file z3py.py.

Referenced by ArithSortRef.cast().

2076  def is_real(self):
2077  """Return `True` if `self` is of the sort Real.
2078 
2079  >>> x = Real('x')
2080  >>> x.is_real()
2081  True
2082  >>> (x + 1).is_real()
2083  True
2084  >>> x = Int('x')
2085  >>> x.is_real()
2086  False
2087  """
2088  return self.kind() == Z3_REAL_SORT
2089 
def is_real(a)
Definition: z3py.py:2481

◆ subsort()

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

Definition at line 2104 of file z3py.py.

2104  def subsort(self, other):
2105  """Return `True` if `self` is a subsort of `other`."""
2106  return self.is_int() and is_arith_sort(other) and other.is_real()
2107 
def is_arith_sort(s)
Definition: z3py.py:2144

Field Documentation

◆ ctx

ctx

Definition at line 2124 of file z3py.py.

Referenced by Probe.__call__(), Fixedpoint.__deepcopy__(), Optimize.__deepcopy__(), ApplyResult.__deepcopy__(), Tactic.__deepcopy__(), Probe.__deepcopy__(), Fixedpoint.__del__(), Optimize.__del__(), ApplyResult.__del__(), Tactic.__del__(), Probe.__del__(), Probe.__eq__(), Probe.__ge__(), ApplyResult.__getitem__(), Probe.__gt__(), Probe.__le__(), ApplyResult.__len__(), Probe.__lt__(), Probe.__ne__(), Fixedpoint.add_cover(), Fixedpoint.add_rule(), Optimize.add_soft(), Tactic.apply(), ApplyResult.as_expr(), Fixedpoint.assert_exprs(), Optimize.assert_exprs(), Optimize.assertions(), Optimize.check(), Optimize.from_file(), Optimize.from_string(), Fixedpoint.get_answer(), Fixedpoint.get_assertions(), Fixedpoint.get_cover_delta(), Fixedpoint.get_ground_sat_answer(), Fixedpoint.get_num_levels(), Fixedpoint.get_rule_names_along_trace(), Fixedpoint.get_rules(), Fixedpoint.get_rules_along_trace(), Fixedpoint.help(), Optimize.help(), Tactic.help(), Optimize.maximize(), Optimize.minimize(), Optimize.model(), Optimize.objectives(), Fixedpoint.param_descrs(), Optimize.param_descrs(), Tactic.param_descrs(), Fixedpoint.parse_file(), Fixedpoint.parse_string(), Fixedpoint.pop(), Optimize.pop(), Fixedpoint.push(), Optimize.push(), Fixedpoint.query(), Fixedpoint.query_from_lvl(), Fixedpoint.reason_unknown(), Optimize.reason_unknown(), Fixedpoint.register_relation(), Fixedpoint.set(), Optimize.set(), Fixedpoint.set_predicate_representation(), Fixedpoint.sexpr(), Optimize.sexpr(), ApplyResult.sexpr(), Tactic.solver(), Fixedpoint.statistics(), Optimize.statistics(), Solver.to_smt2(), Fixedpoint.to_string(), Optimize.unsat_core(), and Fixedpoint.update_rule().