logb.decTest 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. ------------------------------------------------------------------------
  2. -- logb.decTest -- return integral adjusted exponent as per 754r --
  3. -- Copyright (c) IBM Corporation, 2005, 2009. All rights reserved. --
  4. ------------------------------------------------------------------------
  5. -- Please see the document "General Decimal Arithmetic Testcases" --
  6. -- at http://www2.hursley.ibm.com/decimal for the description of --
  7. -- these testcases. --
  8. -- --
  9. -- These testcases are experimental ('beta' versions), and they --
  10. -- may contain errors. They are offered on an as-is basis. In --
  11. -- particular, achieving the same results as the tests here is not --
  12. -- a guarantee that an implementation complies with any Standard --
  13. -- or specification. The tests are not exhaustive. --
  14. -- --
  15. -- Please send comments, suggestions, and corrections to the author: --
  16. -- Mike Cowlishaw, IBM Fellow --
  17. -- IBM UK, PO Box 31, Birmingham Road, Warwick CV34 5JL, UK --
  18. -- mfc@uk.ibm.com --
  19. ------------------------------------------------------------------------
  20. version: 2.59
  21. -- This emphasises the testing of notable cases, as they will often
  22. -- have unusual paths (especially the 10**n results).
  23. extended: 1
  24. rounding: half_even
  25. maxExponent: 999
  26. minexponent: -999
  27. -- basics & examples
  28. precision: 9
  29. logbx001 logb 0 -> -Infinity Division_by_zero
  30. logbx002 logb 1E-999 -> -999
  31. logbx003 logb 9E-999 -> -999
  32. logbx004 logb 0.001 -> -3
  33. logbx005 logb 0.03 -> -2
  34. logbx006 logb 1 -> 0
  35. logbx007 logb 2 -> 0
  36. logbx008 logb 2.5 -> 0
  37. logbx009 logb 2.50 -> 0
  38. logbx010 logb 10 -> 1
  39. logbx011 logb 70 -> 1
  40. logbx012 logb 100 -> 2
  41. logbx013 logb 250 -> 2
  42. logbx014 logb +Infinity -> Infinity
  43. -- negatives are treated as positives
  44. logbx021 logb -0 -> -Infinity Division_by_zero
  45. logbx022 logb -1E-999 -> -999
  46. logbx023 logb -9E-999 -> -999
  47. logbx024 logb -0.001 -> -3
  48. logbx025 logb -1 -> 0
  49. logbx026 logb -2 -> 0
  50. logbx027 logb -10 -> 1
  51. logbx028 logb -70 -> 1
  52. logbx029 logb -100 -> 2
  53. logbx030 logb -100000000 -> 8
  54. logbx031 logb -Infinity -> Infinity
  55. -- zeros
  56. logbx111 logb 0 -> -Infinity Division_by_zero
  57. logbx112 logb -0 -> -Infinity Division_by_zero
  58. logbx113 logb 0E+4 -> -Infinity Division_by_zero
  59. logbx114 logb -0E+4 -> -Infinity Division_by_zero
  60. logbx115 logb 0.0000 -> -Infinity Division_by_zero
  61. logbx116 logb -0.0000 -> -Infinity Division_by_zero
  62. logbx117 logb 0E-141 -> -Infinity Division_by_zero
  63. logbx118 logb -0E-141 -> -Infinity Division_by_zero
  64. -- full coefficients, alternating bits
  65. logbx121 logb 268268268 -> 8
  66. logbx122 logb -268268268 -> 8
  67. logbx123 logb 134134134 -> 8
  68. logbx124 logb -134134134 -> 8
  69. -- Nmax, Nmin, Ntiny
  70. logbx131 logb 9.99999999E+999 -> 999
  71. logbx132 logb 1E-999 -> -999
  72. logbx133 logb 1.00000000E-999 -> -999
  73. logbx134 logb 1E-1007 -> -1007
  74. logbx135 logb -1E-1007 -> -1007
  75. logbx136 logb -1.00000000E-999 -> -999
  76. logbx137 logb -1E-999 -> -999
  77. logbx138 logb -9.99999999E+999 -> 999
  78. -- ones
  79. logbx0061 logb 1 -> 0
  80. logbx0062 logb 1.0 -> 0
  81. logbx0063 logb 1.000000000000000 -> 0
  82. logbx0064 logb 1.000000000000000000 -> 0
  83. -- notable cases -- exact powers of 10
  84. logbx1100 logb 1 -> 0
  85. logbx1101 logb 10 -> 1
  86. logbx1102 logb 100 -> 2
  87. logbx1103 logb 1000 -> 3
  88. logbx1104 logb 10000 -> 4
  89. logbx1105 logb 100000 -> 5
  90. logbx1106 logb 1000000 -> 6
  91. logbx1107 logb 10000000 -> 7
  92. logbx1108 logb 100000000 -> 8
  93. logbx1109 logb 1000000000 -> 9
  94. logbx1110 logb 10000000000 -> 10
  95. logbx1111 logb 100000000000 -> 11
  96. logbx1112 logb 1000000000000 -> 12
  97. logbx1113 logb 0.00000000001 -> -11
  98. logbx1114 logb 0.0000000001 -> -10
  99. logbx1115 logb 0.000000001 -> -9
  100. logbx1116 logb 0.00000001 -> -8
  101. logbx1117 logb 0.0000001 -> -7
  102. logbx1118 logb 0.000001 -> -6
  103. logbx1119 logb 0.00001 -> -5
  104. logbx1120 logb 0.0001 -> -4
  105. logbx1121 logb 0.001 -> -3
  106. logbx1122 logb 0.01 -> -2
  107. logbx1123 logb 0.1 -> -1
  108. logbx1124 logb 1E-99 -> -99
  109. logbx1125 logb 1E-100 -> -100
  110. logbx1126 logb 1E-383 -> -383
  111. logbx1127 logb 1E-999 -> -999
  112. -- suggestions from Ilan Nehama
  113. logbx1400 logb 10E-3 -> -2
  114. logbx1401 logb 10E-2 -> -1
  115. logbx1402 logb 100E-2 -> 0
  116. logbx1403 logb 1000E-2 -> 1
  117. logbx1404 logb 10000E-2 -> 2
  118. logbx1405 logb 10E-1 -> 0
  119. logbx1406 logb 100E-1 -> 1
  120. logbx1407 logb 1000E-1 -> 2
  121. logbx1408 logb 10000E-1 -> 3
  122. logbx1409 logb 10E0 -> 1
  123. logbx1410 logb 100E0 -> 2
  124. logbx1411 logb 1000E0 -> 3
  125. logbx1412 logb 10000E0 -> 4
  126. logbx1413 logb 10E1 -> 2
  127. logbx1414 logb 100E1 -> 3
  128. logbx1415 logb 1000E1 -> 4
  129. logbx1416 logb 10000E1 -> 5
  130. logbx1417 logb 10E2 -> 3
  131. logbx1418 logb 100E2 -> 4
  132. logbx1419 logb 1000E2 -> 5
  133. logbx1420 logb 10000E2 -> 6
  134. -- inexacts
  135. precision: 2
  136. logbx1500 logb 10000E2 -> 6
  137. logbx1501 logb 1E+99 -> 99
  138. logbx1502 logb 1E-99 -> -99
  139. logbx1503 logb 1E+100 -> 1.0E+2 Rounded
  140. logbx1504 logb 1E+999 -> 1.0E+3 Inexact Rounded
  141. logbx1505 logb 1E-100 -> -1.0E+2 Rounded
  142. logbx1506 logb 1E-999 -> -1.0E+3 Inexact Rounded
  143. logbx1507 logb 1E-1111 -> -1.1E+3 Inexact Rounded
  144. logbx1508 logb 1E-3333 -> -3.3E+3 Inexact Rounded
  145. logbx1509 logb 1E-6666 -> -6.7E+3 Inexact Rounded
  146. logbx1510 logb 1E+999999999 -> 1.0E+9 Inexact Rounded
  147. logbx1511 logb 1E-999999999 -> -1.0E+9 Inexact Rounded
  148. precision: 1
  149. logbx1517 logb 1E-1111 -> -1E+3 Inexact Rounded
  150. logbx1518 logb 1E-3333 -> -3E+3 Inexact Rounded
  151. logbx1519 logb 1E-6666 -> -7E+3 Inexact Rounded
  152. precision: 8
  153. logbx1520 logb 1E+999999999 -> 1.0000000E+9 Inexact Rounded
  154. logbx1521 logb 1E-999999999 -> -1.0000000E+9 Inexact Rounded
  155. precision: 9
  156. logbx1523 logb 1E+999999999 -> 999999999
  157. logbx1524 logb 1E-999999999 -> -999999999
  158. -- special values
  159. precision: 9
  160. logbx820 logb Infinity -> Infinity
  161. logbx821 logb -Infinity -> Infinity
  162. logbx822 logb 0 -> -Infinity Division_by_zero
  163. logbx823 logb NaN -> NaN
  164. logbx824 logb sNaN -> NaN Invalid_operation
  165. -- propagating NaNs
  166. logbx825 logb sNaN123 -> NaN123 Invalid_operation
  167. logbx826 logb -sNaN321 -> -NaN321 Invalid_operation
  168. logbx827 logb NaN456 -> NaN456
  169. logbx828 logb -NaN654 -> -NaN654
  170. logbx829 logb NaN1 -> NaN1
  171. -- Null test
  172. logbx900 logb # -> NaN Invalid_operation