Exemplo n.º 1
0
 def walk_equals(self, formula, args, **kwargs):
     tp = self._get_type(formula.arg(0))
     res = None
     if tp.is_bv_type():
         res = yicespy.yices_bveq_atom(args[0], args[1])
     else:
         assert tp.is_int_type() or tp.is_real_type()
         res = yicespy.yices_arith_eq_atom(args[0], args[1])
     self._check_term_result(res)
     return res
Exemplo n.º 2
0
 def walk_equals(self, formula, args, **kwargs):
     tp = self._get_type(formula.arg(0))
     res = None
     if tp.is_bv_type():
         res = yicespy.yices_bveq_atom(args[0], args[1])
     else:
         assert tp.is_int_type() or tp.is_real_type()
         res = yicespy.yices_arith_eq_atom(args[0], args[1])
     self._check_term_result(res)
     return res