(self)
| 4255 | assert not is_re(Int("x")) |
| 4256 | |
| 4257 | def test_is_const_array(self): |
| 4258 | assert is_const_array(K(IntSort(), IntVal(0))) |
| 4259 | assert not is_const_array(Int("x")) |
| 4260 | |
| 4261 | def test_is_K(self): |
| 4262 | assert is_K(K(IntSort(), IntVal(0))) |
nothing calls this directly
no test coverage detected