In Z3Python, I want to declare an array of bytes (meaning each member of array is of integer of 8 bits). I tried with the following code, but apparently it reports that Int(8) is illegal type.
Any idea on how to fix the problem? Thanks!
I = IntSort()
I8 = Int(8)
A = Array('A', I, I8)