pub unsafe extern "C" fn Z3_mk_array_sort(
c: Z3_context,
domain: Z3_sort,
range: Z3_sort,
) -> Option<Z3_sort>Expand description
Create an array type.
We usually represent the array type as: [domain -> range].
Arrays are usually used to model the heap/memory in software verification.