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

  1.  
  2. -------- SIMTEL20 Ada Software Repository Prologue ------------
  3. --                                                           -*
  4. -- Unit name    : MATHLIB-TELESOFT and MATHLIB-DEC
  5. -- Version      : 1.0
  6. -- Author       : William Whitaker
  7. --              : NOSC
  8. --              : 
  9. --              : 
  10. -- DDN Address  : WWHITAKER at ECLB
  11. -- Copyright    : (c) 
  12. -- Date created :  28 June 85
  13. -- Release date :  28 June 85
  14. -- Last update  :  28 June 85
  15. -- Released by  : Richard Conn (RCONN at SIMTEL20) with permission
  16. -- Machine/System Compiled/Run on : Telesoft Ada (DEC VAX)
  17. --                    DEC Ada (DEC VAX)
  18. --                                                           -*
  19. ---------------------------------------------------------------
  20. --                                                           -*
  21. -- Keywords     :  Math, Math Functions
  22. ----------------:
  23. --
  24. -- Abstract     :  
  25. ----------------:  MATHLIB-TELESOFT and MATHLIB-DEC are two versions
  26. -- of the same mathlib.  This library contains five Ada packages
  27. -- which provide the following math functions:
  28. --
  29. --    SQRT (Square Root)    CBRT (Cube Root)
  30. --    LOG (Base E)        LOG10 (Base 10)
  31. --    EXP            **
  32. --
  33. --    SIN        COS        TAN
  34. --    ASIN        ACOS        ATAN    ATAN2
  35. --    SINH        COSH        TANH
  36. --
  37. -- Other functions are provided as well.
  38. --                                                           -*
  39. ------------------ Revision history ---------------------------
  40. --                                                           -*
  41. -- DATE         VERSION    AUTHOR                  HISTORY
  42. -- 19850628    1.0    William Whitaker    Initial Release to Repos
  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--------------------------------