(self)
| 921 | """From z3py guide & bubble_sort.py: array theory.""" |
| 922 | |
| 923 | def test_array_creation(self): |
| 924 | a = Array("a", IntSort(), IntSort()) |
| 925 | assert is_array(a) |
| 926 | |
| 927 | def test_select_store(self): |
| 928 | """Guide: Select and Store operations.""" |