Indexed Arrays As Array Elements
An array of indexed arrays is a common data structure
region R = [1..n];
var Data,Result:[R] array [1..64,1..64] of float;
...
Result := indexed_matrix_fcn(Data);
The elements of the array are evaluated concurrently, though the computation on each element is sequential
Array/i-array gives an easy parallel implementation for solving independent instances problems