interface Arrays {

  typedef float Row[20];

  typedef float Matrix[100][20];

  Row Move_row(in Matrix A, out Matrix B, in long row_index);

};

