(self, kernel)
| 3365 | assert snd.arity() == 1 |
| 3366 | |
| 3367 | def test_tuple_constructor_call(self, kernel): |
| 3368 | Pair, mk_pair, [fst, snd] = TupleSort("Pair_t4", [IntSort(), RealSort()]) |
| 3369 | x = Int("x") |
| 3370 | y = Real("y") |
| 3371 | p = mk_pair(x, y) |
| 3372 | assert isinstance(p, ExprRef) |
| 3373 | |
| 3374 | def test_triple_sort(self, kernel): |
| 3375 | Triple, mk, accs = TupleSort("Triple_t5", [IntSort(), RealSort(), BoolSort()]) |