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

  1. -------- SIMTEL20 Ada Software Repository Prologue ------------
  2. --                                                           -*
  3. -- Unit name    : Math Library
  4. -- Version      : 1.0
  5. -- Author       : WIS JPMO
  6. --              : Washington, D.C. 203306600
  7. --              : (703) 285-5065
  8. --              : Contact: Lt. Colonel Falgiano
  9. --              : ESD/SCW
  10. --              : Hanscom AFB, MA  01731
  11. -- DDN Address  : Court@MITRE.ARPA (Major Terry Courtwright)
  12. -- Copyright    : (c) 1985
  13. -- Date created : 1985
  14. -- Release date : 1985
  15. -- Last update  : 1985
  16. -- Machine/System Compiled/Run on :
  17. --                                                           -*
  18. ---------------------------------------------------------------
  19. --                                                           -*
  20. -- Keywords     : 
  21. ----------------:
  22. --
  23. -- Abstract     : This package is a floating mantissa definition
  24. ----------------: of a binary FLOAT.  It was first used on the 
  25. ----------------: DEC-10 and the VAX but should work for any 
  26. ----------------: since the parameters are obtained by initial-
  27. ----------------: izing on the actual hardware.  Otherwise the 
  28. ----------------: parameters could be set in the spec if known.
  29. ----------------: This is a preliminary package that defines the
  30. ----------------: properties of the particular floating point 
  31. ----------------: type for which we generate the math routines.
  32. ----------------: 
  33. ----------------: The constants are those required by the routines
  34. ----------------: described in "Software Manual for the Elementary
  35. ----------------: Functions" W. Cody and W. Waite, Pretice-Hall
  36. ----------------: 1980.  Actually most are needed only for the
  37. ----------------: test programs rather than the functions them-
  38. ----------------: selves.  Most of these could be in the form of 
  39. ----------------: attributes if all the floating types to be 
  40. ----------------: considered were those built into the compiler, 
  41. ----------------: but we also want to be able to support user 
  42. ----------------: defined types such as software floating types
  43. ----------------: of greater precision than the hardware affords,
  44. ----------------: or types defined on one machine to simulate
  45. ----------------: another. 
  46. ----------------: 
  47. ----------------: This tool was developed as a precursor for 
  48. ----------------: the WMCCS Information System (WIS).  An
  49. ----------------: executable version of the tool has been 
  50. ----------------: demonstrated.  This source code has sub-
  51. ----------------: sequently been recompiled but has not under-
  52. ----------------: gone extensive testing.
  53. ----------------:
  54. --                                                           -*
  55. ------------------ Revision history ---------------------------
  56. --                                                           -*
  57. -- DATE         VERSION AUTHOR                  HISTORY 
  58. --10/8/85       1.0     WIS JPMO                Initial Release 
  59. --                                                           -*
  60. ------------------ Distribution and Copyright -----------------
  61. --                                                           -*
  62. -- This prologue must be included in all copies of this software.
  63. -- 
  64. -- This software is copyright by the author.
  65. -- 
  66. -- This software is released to the Ada community.
  67. -- This software is released to the Public Domain (note:
  68. --   software released to the Public Domain is not subject
  69. --   to copyright protection).
  70. -- Restrictions on use or distribution:  NONE
  71. --                                                           -*
  72. ----------------- Disclaimer ----------------------------------
  73. --                                                           -*
  74. -- This software and its documentation are provided "AS IS" and
  75. -- without any expressed or implied warranties whatsoever.
  76. --
  77. -- No warranties as to performance, merchantability, or fitness
  78. -- for a particular purpose exist.
  79. --
  80. -- Because of the diversity of conditions and hardware under
  81. -- which this software may be used, no warranty of fitness for
  82. -- a particular purpose is offered.  The user is advised to 
  83. -- test the software thoroughly before relying on it.  The user
  84. -- must assume the entire risk and liability of using this 
  85. -- software.
  86. --
  87. -- In no event shall any person or organization of people be
  88. -- held responsible for any direct, indirect, consequential
  89. -- or inconsequential damages or lost profits.
  90. --                                                          -*
  91. ----------------- END-PROLOGUE -------------------------------
  92.