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

  1.  
  2. -------- SIMTEL20 Ada Software Repository Prologue ------------
  3. --
  4. -- Unit name    : MATHFUN
  5. -- Version      : 1.0
  6. -- Author:    David Kwong
  7. --              Jet Propulsion Laboratory/CalTech
  8. --              MS 301-125J
  9. --              4800 Oak Grove Drive
  10. --              Pasadena, CA 91109
  11. --              (818) 354-8285
  12. -- DDN Address  : N/A
  13. -- Copyright    : 1986 (c) David Kwong
  14. -- Date created :  12/23/86
  15. -- Release date :  12/23/86
  16. -- Last update  :  12/23/86
  17. -- Machine/System Compiled/Run on : VAX 11/780, VMS 4.4, DEC Ada
  18. --
  19. ---------------------------------------------------------------
  20. --
  21. -- Keywords     :  Math Functions, Arrays
  22. --
  23. -- Abstract     :  
  24. -- MATHFUN - Selected math functions for integer and floating point
  25. -- math.  Functions for one- and two-dimensional arrays are included.
  26. --
  27. -- MATHFUN.SRC -- This file contains math functions and array
  28. -- functions programs with test programs.  The programs must be compiled
  29. -- in this order:
  30. --
  31. -- 1) MATHGENI -- generic package of integer math functions
  32. -- 2) MATHGENF -- generic package of floating point math functions
  33. -- 3) MATHFUNG -- generic package of three component types
  34. -- 4) ARRAYFG1 -- generic package of one dimensional array functions (vectors)
  35. -- 5) ARRAYFG2 -- generic package of two dimensional array functions (matrices)
  36. -- 6) ARRAYFG -- generic package of three array component types
  37. -- 7) MATHTEST -- test procedure for both array and math functions
  38. --
  39. -- Then link MATHTEST and run it.  An example output is MATHFUN.DAT.
  40. --
  41. ------------------ Revision history ---------------------------
  42. --
  43. -- DATE         VERSION    AUTHOR                  HISTORY
  44. -- 12/23/86    1.0    David Kwong        Initial Release
  45. ------------------ Distribution and Copyright -----------------
  46. --
  47. -- This prologue must be included in all copies of this software.
  48. --
  49. -- This software is copyright by the author.
  50. --
  51. -- This software is released to the Ada community.
  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.