(self)
| 3293 | assert RealSort().kind() == 3 |
| 3294 | |
| 3295 | def test_sort_kind_bv(self): |
| 3296 | assert BitVecSort(8).kind() == 4 |
| 3297 | |
| 3298 | def test_sort_kind_array(self): |
| 3299 | assert ArraySort(IntSort(), IntSort()).kind() == 5 |
nothing calls this directly
no test coverage detected