(self)
| 586 | assert isinstance(sel._ast, SelectNode) |
| 587 | |
| 588 | def test_store(self): |
| 589 | a = Array("a", IntSort(), IntSort()) |
| 590 | i = Int("i") |
| 591 | v = Int("v") |
| 592 | s = Store(a, i, v) |
| 593 | assert isinstance(s._ast, StoreNode) |
| 594 | |
| 595 | def test_constant_array(self): |
| 596 | c = K(IntSort(), IntVal(0)) |