ContainersArrays.module



--------------------------->  GNU Sather - module  <---------------------------
-- Copyright (C) 199x by International Computer Science Institute            --
-- This file is part of the GNU Sather package. It is free software; you may --
-- redistribute  and/or modify it under the terms of the  GNU General Public --
-- License (GPL)  as  published  by the  Free  Software  Foundation;  either --
-- version 2 of the license, or (at your option) any later version.          --
-- This  program  is distributed  in the  hope that it will  be  useful, but --
-- WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See Doc/GPL for more details.        --
-- The license text is also available from:  Free Software Foundation, Inc., --
-- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA                     --
-------------->  Please email comments to   <--------------

(*
  Array abstractions, implementations and array algorithm classes
  The ARRAY class corresponds to the array literal syntax | |
  ARRAY2 represents 2D arrays and ARRAY3 represents 3D arrays
  $ARR and $RO_ARR are barebones abstractions of arrays

*)

    arr.sa -has arr.sa $ARR $RO_ARR  -- Array abstraction
    array.sa -has array.sa ARRAY 
    array2.sa -has array2.sa ARRAY2 
    array3.sa -has array3.sa ARRAY3 
	
    arr_alg.sa -has arr_alg.sa ARR_ALG             -- Miscellaneous array algs
    arr_permute_alg.sa -has arr_permute_alg.sa ARR_PERMUTE_ALG 
    arr_sort_alg.sa -has arr_sort_alg.sa  ARR_SORT_ALG 
    arr_select_alg.sa -has arr_select_alg.sa  ARR_SELECT_ALG    
    arr_search_alg.sa -has arr_search_alg.sa  ARR_SEARCH_ALG    

-- Array tests
    array2_test.sa -has array2_test.sa ARRAY2_TEST
    array3_test.sa -has array3_test.sa ARRAY3_TEST

    arrays_test.sa -has arrays_test.sa ARR_ALG_TEST ARR_SORT_TEST  ARRAYS_TEST