home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / math / gset.pro < prev    next >
Encoding:
Text File  |  1988-05-03  |  3.2 KB  |  74 lines

  1.  
  2. -------- SIMTEL20 Ada Software Repository Prologue ------------
  3. --                                                           -*
  4. -- Unit name    : SET_PACKAGE
  5. -- Version      : 1.0
  6. -- Author       : Mike Linnig
  7. --              : Texas Instruments Ada Technology Branch
  8. --              : PO Box 801, MS 8007
  9. --              : McKinney, TX  75069
  10. -- DDN Address  : linnig%ti-eg at csnet-relay
  11. -- Copyright    : (c) 
  12. -- Date created :  27 June 85
  13. -- Release date :  27 June 85
  14. -- Last update  :  27 June 85
  15. -- Machine/System Compiled/Run on : DG MV 10000 with ROLM ADE
  16. --                    DEC VAX 11/780 with DEC Ada
  17. --                                                           -*
  18. ---------------------------------------------------------------
  19. --                                                           -*
  20. -- Keywords     :  SET, SET MANIPULATION
  21. ----------------:
  22. --
  23. -- Abstract     :  Set_Package contains a series of generic
  24. ----------------:  routines which can be instantiated to create
  25. -- routines which provide a series of set manipulation functions
  26. -- for sets of enumeration or numeric objects.  The functions in
  27. -- Set_Package include:
  28. --    set intersection
  29. --    set union
  30. --    set membership
  31. --    set element count
  32. -- and others
  33. --
  34. -- The code in this package was extracted from Chapter 15, Section 3
  35. -- (15.3) of Grady Booch's Software Engineering with Ada book.
  36. -- See 15.3 for further documentation on the functions.
  37. --
  38. --                                                           -*
  39. ------------------ Revision history ---------------------------
  40. --                                                           -*
  41. -- DATE         VERSION    AUTHOR                  HISTORY
  42. -- 19850627    1.0    Mike Linnig        Initial Release
  43. --                                                           -*
  44. ------------------ Distribution and Copyright -----------------
  45. --                                                           -*
  46. -- This prologue must be included in all copies of this software.
  47. --
  48. -- This software is released to the Ada community.
  49. -- This software is released to the Public Domain (note:
  50. --   software released to the Public Domain is not subject
  51. --   to copyright protection).
  52. -- Restrictions on use or distribution:  NONE
  53. --                                                           -*
  54. ------------------ Disclaimer ---------------------------------
  55. --                                                           -*
  56. -- This software and its documentation are provided "AS IS" and
  57. -- without any expressed or implied warranties whatsoever.
  58. -- No warranties as to performance, merchantability, or fitness
  59. -- for a particular purpose exist.
  60. --
  61. -- Because of the diversity of conditions and hardware under
  62. -- which this software may be used, no warranty of fitness for
  63. -- a particular purpose is offered.  The user is advised to
  64. -- test the software thoroughly before relying on it.  The user
  65. -- must assume the entire risk and liability of using this
  66. -- software.
  67. --
  68. -- In no event shall any person or organization of people be
  69. -- held responsible for any direct, indirect, consequential
  70. -- or inconsequential damages or lost profits.
  71. --                                                           -*
  72. -------------------END-PROLOGUE--------------------------------
  73.  
  74.