Create a new bit-vector sort.
(int size)
| 220 | * Create a new bit-vector sort. |
| 221 | **/ |
| 222 | public BitVecSort mkBitVecSort(int size) |
| 223 | { |
| 224 | return new BitVecSort(this, Native.mkBvSort(nCtx(), size)); |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * Create a new array sort. |
no test coverage detected