nexttoward.decTest 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. ------------------------------------------------------------------------
  2. -- nexttoward.decTest -- decimal next toward rhs [754r nextafter] --
  3. -- Copyright (c) IBM Corporation, 1981, 2008. 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. extended: 1
  22. precision: 9
  23. rounding: half_up
  24. maxExponent: 384
  25. minexponent: -383
  26. -- Sanity check with a scattering of numerics
  27. nextt001 nexttoward 10 10 -> 10
  28. nextt002 nexttoward -10 -10 -> -10
  29. nextt003 nexttoward 1 10 -> 1.00000001
  30. nextt004 nexttoward 1 -10 -> 0.999999999
  31. nextt005 nexttoward -1 10 -> -0.999999999
  32. nextt006 nexttoward -1 -10 -> -1.00000001
  33. nextt007 nexttoward 0 10 -> 1E-391 Underflow Subnormal Inexact Rounded
  34. nextt008 nexttoward 0 -10 -> -1E-391 Underflow Subnormal Inexact Rounded
  35. nextt009 nexttoward 9.99999999E+384 +Infinity -> Infinity Overflow Inexact Rounded
  36. nextt010 nexttoward -9.99999999E+384 -Infinity -> -Infinity Overflow Inexact Rounded
  37. ------- lhs=rhs
  38. -- finites
  39. nextt101 nexttoward 7 7 -> 7
  40. nextt102 nexttoward -7 -7 -> -7
  41. nextt103 nexttoward 75 75 -> 75
  42. nextt104 nexttoward -75 -75 -> -75
  43. nextt105 nexttoward 7.50 7.5 -> 7.50
  44. nextt106 nexttoward -7.50 -7.50 -> -7.50
  45. nextt107 nexttoward 7.500 7.5000 -> 7.500
  46. nextt108 nexttoward -7.500 -7.5 -> -7.500
  47. -- zeros
  48. nextt111 nexttoward 0 0 -> 0
  49. nextt112 nexttoward -0 -0 -> -0
  50. nextt113 nexttoward 0E+4 0 -> 0E+4
  51. nextt114 nexttoward -0E+4 -0 -> -0E+4
  52. nextt115 nexttoward 0.0000 0.00000 -> 0.0000
  53. nextt116 nexttoward -0.0000 -0.00 -> -0.0000
  54. nextt117 nexttoward 0E-141 0 -> 0E-141
  55. nextt118 nexttoward -0E-141 -000 -> -0E-141
  56. -- full coefficients, alternating bits
  57. nextt121 nexttoward 268268268 268268268 -> 268268268
  58. nextt122 nexttoward -268268268 -268268268 -> -268268268
  59. nextt123 nexttoward 134134134 134134134 -> 134134134
  60. nextt124 nexttoward -134134134 -134134134 -> -134134134
  61. -- Nmax, Nmin, Ntiny
  62. nextt131 nexttoward 9.99999999E+384 9.99999999E+384 -> 9.99999999E+384
  63. nextt132 nexttoward 1E-383 1E-383 -> 1E-383
  64. nextt133 nexttoward 1.00000000E-383 1.00000000E-383 -> 1.00000000E-383
  65. nextt134 nexttoward 1E-391 1E-391 -> 1E-391
  66. nextt135 nexttoward -1E-391 -1E-391 -> -1E-391
  67. nextt136 nexttoward -1.00000000E-383 -1.00000000E-383 -> -1.00000000E-383
  68. nextt137 nexttoward -1E-383 -1E-383 -> -1E-383
  69. nextt138 nexttoward -9.99999999E+384 -9.99999999E+384 -> -9.99999999E+384
  70. ------- lhs<rhs
  71. nextt201 nexttoward 0.999999995 Infinity -> 0.999999996
  72. nextt202 nexttoward 0.999999996 Infinity -> 0.999999997
  73. nextt203 nexttoward 0.999999997 Infinity -> 0.999999998
  74. nextt204 nexttoward 0.999999998 Infinity -> 0.999999999
  75. nextt205 nexttoward 0.999999999 Infinity -> 1.00000000
  76. nextt206 nexttoward 1.00000000 Infinity -> 1.00000001
  77. nextt207 nexttoward 1.0 Infinity -> 1.00000001
  78. nextt208 nexttoward 1 Infinity -> 1.00000001
  79. nextt209 nexttoward 1.00000001 Infinity -> 1.00000002
  80. nextt210 nexttoward 1.00000002 Infinity -> 1.00000003
  81. nextt211 nexttoward 1.00000003 Infinity -> 1.00000004
  82. nextt212 nexttoward 1.00000004 Infinity -> 1.00000005
  83. nextt213 nexttoward 1.00000005 Infinity -> 1.00000006
  84. nextt214 nexttoward 1.00000006 Infinity -> 1.00000007
  85. nextt215 nexttoward 1.00000007 Infinity -> 1.00000008
  86. nextt216 nexttoward 1.00000008 Infinity -> 1.00000009
  87. nextt217 nexttoward 1.00000009 Infinity -> 1.00000010
  88. nextt218 nexttoward 1.00000010 Infinity -> 1.00000011
  89. nextt219 nexttoward 1.00000011 Infinity -> 1.00000012
  90. nextt221 nexttoward -0.999999995 Infinity -> -0.999999994
  91. nextt222 nexttoward -0.999999996 Infinity -> -0.999999995
  92. nextt223 nexttoward -0.999999997 Infinity -> -0.999999996
  93. nextt224 nexttoward -0.999999998 Infinity -> -0.999999997
  94. nextt225 nexttoward -0.999999999 Infinity -> -0.999999998
  95. nextt226 nexttoward -1.00000000 Infinity -> -0.999999999
  96. nextt227 nexttoward -1.0 Infinity -> -0.999999999
  97. nextt228 nexttoward -1 Infinity -> -0.999999999
  98. nextt229 nexttoward -1.00000001 Infinity -> -1.00000000
  99. nextt230 nexttoward -1.00000002 Infinity -> -1.00000001
  100. nextt231 nexttoward -1.00000003 Infinity -> -1.00000002
  101. nextt232 nexttoward -1.00000004 Infinity -> -1.00000003
  102. nextt233 nexttoward -1.00000005 Infinity -> -1.00000004
  103. nextt234 nexttoward -1.00000006 Infinity -> -1.00000005
  104. nextt235 nexttoward -1.00000007 Infinity -> -1.00000006
  105. nextt236 nexttoward -1.00000008 Infinity -> -1.00000007
  106. nextt237 nexttoward -1.00000009 Infinity -> -1.00000008
  107. nextt238 nexttoward -1.00000010 Infinity -> -1.00000009
  108. nextt239 nexttoward -1.00000011 Infinity -> -1.00000010
  109. nextt240 nexttoward -1.00000012 Infinity -> -1.00000011
  110. -- input operand is >precision
  111. nextt241 nexttoward 1.00000010998 Infinity -> 1.00000011
  112. nextt242 nexttoward 1.00000010999 Infinity -> 1.00000011
  113. nextt243 nexttoward 1.00000011000 Infinity -> 1.00000012
  114. nextt244 nexttoward 1.00000011001 Infinity -> 1.00000012
  115. nextt245 nexttoward 1.00000011002 Infinity -> 1.00000012
  116. nextt246 nexttoward 1.00000011002 Infinity -> 1.00000012
  117. nextt247 nexttoward 1.00000011052 Infinity -> 1.00000012
  118. nextt248 nexttoward 1.00000011552 Infinity -> 1.00000012
  119. nextt249 nexttoward -1.00000010998 Infinity -> -1.00000010
  120. nextt250 nexttoward -1.00000010999 Infinity -> -1.00000010
  121. nextt251 nexttoward -1.00000011000 Infinity -> -1.00000010
  122. nextt252 nexttoward -1.00000011001 Infinity -> -1.00000011
  123. nextt253 nexttoward -1.00000011002 Infinity -> -1.00000011
  124. nextt254 nexttoward -1.00000011002 Infinity -> -1.00000011
  125. nextt255 nexttoward -1.00000011052 Infinity -> -1.00000011
  126. nextt256 nexttoward -1.00000011552 Infinity -> -1.00000011
  127. -- ultra-tiny inputs
  128. nextt260 nexttoward 1E-99999 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  129. nextt261 nexttoward 1E-999999999 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  130. nextt262 nexttoward 1E-391 Infinity -> 2E-391 Underflow Subnormal Inexact Rounded
  131. nextt263 nexttoward -1E-99999 Infinity -> -0E-391 Underflow Subnormal Inexact Rounded Clamped
  132. nextt264 nexttoward -1E-999999999 Infinity -> -0E-391 Underflow Subnormal Inexact Rounded Clamped
  133. nextt265 nexttoward -1E-391 Infinity -> -0E-391 Underflow Subnormal Inexact Rounded Clamped
  134. -- Zeros
  135. nextt300 nexttoward 0 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  136. nextt301 nexttoward 0.00 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  137. nextt302 nexttoward 0E-300 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  138. nextt303 nexttoward 0E+300 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  139. nextt304 nexttoward 0E+30000 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  140. nextt305 nexttoward -0 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  141. nextt306 nexttoward -0.00 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  142. nextt307 nexttoward -0E-300 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  143. nextt308 nexttoward -0E+300 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  144. nextt309 nexttoward -0E+30000 Infinity -> 1E-391 Underflow Subnormal Inexact Rounded
  145. -- specials
  146. nextt350 nexttoward Inf Infinity -> Infinity
  147. nextt351 nexttoward -Inf Infinity -> -9.99999999E+384
  148. nextt352 nexttoward NaN Infinity -> NaN
  149. nextt353 nexttoward sNaN Infinity -> NaN Invalid_operation
  150. nextt354 nexttoward NaN77 Infinity -> NaN77
  151. nextt355 nexttoward sNaN88 Infinity -> NaN88 Invalid_operation
  152. nextt356 nexttoward -NaN Infinity -> -NaN
  153. nextt357 nexttoward -sNaN Infinity -> -NaN Invalid_operation
  154. nextt358 nexttoward -NaN77 Infinity -> -NaN77
  155. nextt359 nexttoward -sNaN88 Infinity -> -NaN88 Invalid_operation
  156. -- Nmax, Nmin, Ntiny, subnormals
  157. maxExponent: 999
  158. minexponent: -999
  159. nextt370 nexttoward 9.99999999E+999 Infinity -> Infinity Overflow Inexact Rounded
  160. nextt371 nexttoward 9.99999998E+999 Infinity -> 9.99999999E+999
  161. nextt372 nexttoward 1E-999 Infinity -> 1.00000001E-999
  162. nextt373 nexttoward 1.00000000E-999 Infinity -> 1.00000001E-999
  163. nextt374 nexttoward 0.999999999E-999 Infinity -> 1.00000000E-999
  164. nextt375 nexttoward 0.99999999E-999 Infinity -> 1.00000000E-999
  165. nextt376 nexttoward 9E-1007 Infinity -> 1.0E-1006 Underflow Subnormal Inexact Rounded
  166. nextt377 nexttoward 9.9E-1006 Infinity -> 1.00E-1005 Underflow Subnormal Inexact Rounded
  167. nextt378 nexttoward 9.9999E-1003 Infinity -> 1.00000E-1002 Underflow Subnormal Inexact Rounded
  168. nextt379 nexttoward 9.9999998E-1000 Infinity -> 9.9999999E-1000 Underflow Subnormal Inexact Rounded
  169. nextt380 nexttoward 9.9999997E-1000 Infinity -> 9.9999998E-1000 Underflow Subnormal Inexact Rounded
  170. nextt381 nexttoward 0E-1007 Infinity -> 1E-1007 Underflow Subnormal Inexact Rounded
  171. nextt382 nexttoward 1E-1007 Infinity -> 2E-1007 Underflow Subnormal Inexact Rounded
  172. nextt383 nexttoward 2E-1007 Infinity -> 3E-1007 Underflow Subnormal Inexact Rounded
  173. nextt385 nexttoward -0E-1007 Infinity -> 1E-1007 Underflow Subnormal Inexact Rounded
  174. nextt386 nexttoward -1E-1007 Infinity -> -0E-1007 Underflow Subnormal Inexact Rounded Clamped
  175. nextt387 nexttoward -2E-1007 Infinity -> -1E-1007 Underflow Subnormal Inexact Rounded
  176. nextt388 nexttoward -10E-1007 Infinity -> -9E-1007 Underflow Subnormal Inexact Rounded
  177. nextt389 nexttoward -100E-1007 Infinity -> -9.9E-1006 Underflow Subnormal Inexact Rounded
  178. nextt390 nexttoward -100000E-1007 Infinity -> -9.9999E-1003 Underflow Subnormal Inexact Rounded
  179. nextt391 nexttoward -1.0000E-999 Infinity -> -9.9999999E-1000 Underflow Subnormal Inexact Rounded
  180. nextt392 nexttoward -1.00000000E-999 Infinity -> -9.9999999E-1000 Underflow Subnormal Inexact Rounded
  181. nextt393 nexttoward -1E-999 Infinity -> -9.9999999E-1000 Underflow Subnormal Inexact Rounded
  182. nextt394 nexttoward -9.99999998E+999 Infinity -> -9.99999997E+999
  183. nextt395 nexttoward -9.99999999E+999 Infinity -> -9.99999998E+999
  184. ------- lhs>rhs
  185. maxExponent: 384
  186. minexponent: -383
  187. nextt401 nexttoward 0.999999995 -Infinity -> 0.999999994
  188. nextt402 nexttoward 0.999999996 -Infinity -> 0.999999995
  189. nextt403 nexttoward 0.999999997 -Infinity -> 0.999999996
  190. nextt404 nexttoward 0.999999998 -Infinity -> 0.999999997
  191. nextt405 nexttoward 0.999999999 -Infinity -> 0.999999998
  192. nextt406 nexttoward 1.00000000 -Infinity -> 0.999999999
  193. nextt407 nexttoward 1.0 -Infinity -> 0.999999999
  194. nextt408 nexttoward 1 -Infinity -> 0.999999999
  195. nextt409 nexttoward 1.00000001 -Infinity -> 1.00000000
  196. nextt410 nexttoward 1.00000002 -Infinity -> 1.00000001
  197. nextt411 nexttoward 1.00000003 -Infinity -> 1.00000002
  198. nextt412 nexttoward 1.00000004 -Infinity -> 1.00000003
  199. nextt413 nexttoward 1.00000005 -Infinity -> 1.00000004
  200. nextt414 nexttoward 1.00000006 -Infinity -> 1.00000005
  201. nextt415 nexttoward 1.00000007 -Infinity -> 1.00000006
  202. nextt416 nexttoward 1.00000008 -Infinity -> 1.00000007
  203. nextt417 nexttoward 1.00000009 -Infinity -> 1.00000008
  204. nextt418 nexttoward 1.00000010 -Infinity -> 1.00000009
  205. nextt419 nexttoward 1.00000011 -Infinity -> 1.00000010
  206. nextt420 nexttoward 1.00000012 -Infinity -> 1.00000011
  207. nextt421 nexttoward -0.999999995 -Infinity -> -0.999999996
  208. nextt422 nexttoward -0.999999996 -Infinity -> -0.999999997
  209. nextt423 nexttoward -0.999999997 -Infinity -> -0.999999998
  210. nextt424 nexttoward -0.999999998 -Infinity -> -0.999999999
  211. nextt425 nexttoward -0.999999999 -Infinity -> -1.00000000
  212. nextt426 nexttoward -1.00000000 -Infinity -> -1.00000001
  213. nextt427 nexttoward -1.0 -Infinity -> -1.00000001
  214. nextt428 nexttoward -1 -Infinity -> -1.00000001
  215. nextt429 nexttoward -1.00000001 -Infinity -> -1.00000002
  216. nextt430 nexttoward -1.00000002 -Infinity -> -1.00000003
  217. nextt431 nexttoward -1.00000003 -Infinity -> -1.00000004
  218. nextt432 nexttoward -1.00000004 -Infinity -> -1.00000005
  219. nextt433 nexttoward -1.00000005 -Infinity -> -1.00000006
  220. nextt434 nexttoward -1.00000006 -Infinity -> -1.00000007
  221. nextt435 nexttoward -1.00000007 -Infinity -> -1.00000008
  222. nextt436 nexttoward -1.00000008 -Infinity -> -1.00000009
  223. nextt437 nexttoward -1.00000009 -Infinity -> -1.00000010
  224. nextt438 nexttoward -1.00000010 -Infinity -> -1.00000011
  225. nextt439 nexttoward -1.00000011 -Infinity -> -1.00000012
  226. -- input operand is >precision
  227. nextt441 nexttoward 1.00000010998 -Infinity -> 1.00000010
  228. nextt442 nexttoward 1.00000010999 -Infinity -> 1.00000010
  229. nextt443 nexttoward 1.00000011000 -Infinity -> 1.00000010
  230. nextt444 nexttoward 1.00000011001 -Infinity -> 1.00000011
  231. nextt445 nexttoward 1.00000011002 -Infinity -> 1.00000011
  232. nextt446 nexttoward 1.00000011002 -Infinity -> 1.00000011
  233. nextt447 nexttoward 1.00000011052 -Infinity -> 1.00000011
  234. nextt448 nexttoward 1.00000011552 -Infinity -> 1.00000011
  235. nextt449 nexttoward -1.00000010998 -Infinity -> -1.00000011
  236. nextt450 nexttoward -1.00000010999 -Infinity -> -1.00000011
  237. nextt451 nexttoward -1.00000011000 -Infinity -> -1.00000012
  238. nextt452 nexttoward -1.00000011001 -Infinity -> -1.00000012
  239. nextt453 nexttoward -1.00000011002 -Infinity -> -1.00000012
  240. nextt454 nexttoward -1.00000011002 -Infinity -> -1.00000012
  241. nextt455 nexttoward -1.00000011052 -Infinity -> -1.00000012
  242. nextt456 nexttoward -1.00000011552 -Infinity -> -1.00000012
  243. -- ultra-tiny inputs
  244. nextt460 nexttoward 1E-99999 -Infinity -> 0E-391 Underflow Subnormal Inexact Rounded Clamped
  245. nextt461 nexttoward 1E-999999999 -Infinity -> 0E-391 Underflow Subnormal Inexact Rounded Clamped
  246. nextt462 nexttoward 1E-391 -Infinity -> 0E-391 Underflow Subnormal Inexact Rounded Clamped
  247. nextt463 nexttoward -1E-99999 -Infinity -> -1E-391 Underflow Subnormal Inexact Rounded
  248. nextt464 nexttoward -1E-999999999 -Infinity -> -1E-391 Underflow Subnormal Inexact Rounded
  249. nextt465 nexttoward -1E-391 -Infinity -> -2E-391 Underflow Subnormal Inexact Rounded
  250. -- Zeros
  251. nextt500 nexttoward -0 -Infinity -> -1E-391 Underflow Subnormal Inexact Rounded
  252. nextt501 nexttoward 0 -Infinity -> -1E-391 Underflow Subnormal Inexact Rounded
  253. nextt502 nexttoward 0.00 -Infinity -> -1E-391 Underflow Subnormal Inexact Rounded
  254. nextt503 nexttoward -0.00 -Infinity -> -1E-391 Underflow Subnormal Inexact Rounded
  255. nextt504 nexttoward 0E-300 -Infinity -> -1E-391 Underflow Subnormal Inexact Rounded
  256. nextt505 nexttoward 0E+300 -Infinity -> -1E-391 Underflow Subnormal Inexact Rounded
  257. nextt506 nexttoward 0E+30000 -Infinity -> -1E-391 Underflow Subnormal Inexact Rounded
  258. nextt507 nexttoward -0E+30000 -Infinity -> -1E-391 Underflow Subnormal Inexact Rounded
  259. nextt508 nexttoward 0.00 -0.0000 -> -0.00
  260. -- specials
  261. nextt550 nexttoward Inf -Infinity -> 9.99999999E+384
  262. nextt551 nexttoward -Inf -Infinity -> -Infinity
  263. nextt552 nexttoward NaN -Infinity -> NaN
  264. nextt553 nexttoward sNaN -Infinity -> NaN Invalid_operation
  265. nextt554 nexttoward NaN77 -Infinity -> NaN77
  266. nextt555 nexttoward sNaN88 -Infinity -> NaN88 Invalid_operation
  267. nextt556 nexttoward -NaN -Infinity -> -NaN
  268. nextt557 nexttoward -sNaN -Infinity -> -NaN Invalid_operation
  269. nextt558 nexttoward -NaN77 -Infinity -> -NaN77
  270. nextt559 nexttoward -sNaN88 -Infinity -> -NaN88 Invalid_operation
  271. -- Nmax, Nmin, Ntiny, subnormals
  272. maxExponent: 999
  273. minexponent: -999
  274. nextt570 nexttoward 9.99999999E+999 -Infinity -> 9.99999998E+999
  275. nextt571 nexttoward 9.99999998E+999 -Infinity -> 9.99999997E+999
  276. nextt572 nexttoward 1E-999 -Infinity -> 9.9999999E-1000 Underflow Subnormal Inexact Rounded
  277. nextt573 nexttoward 1.00000000E-999 -Infinity -> 9.9999999E-1000 Underflow Subnormal Inexact Rounded
  278. nextt574 nexttoward 9E-1007 -Infinity -> 8E-1007 Underflow Subnormal Inexact Rounded
  279. nextt575 nexttoward 9.9E-1006 -Infinity -> 9.8E-1006 Underflow Subnormal Inexact Rounded
  280. nextt576 nexttoward 9.9999E-1003 -Infinity -> 9.9998E-1003 Underflow Subnormal Inexact Rounded
  281. nextt577 nexttoward 9.9999999E-1000 -Infinity -> 9.9999998E-1000 Underflow Subnormal Inexact Rounded
  282. nextt578 nexttoward 9.9999998E-1000 -Infinity -> 9.9999997E-1000 Underflow Subnormal Inexact Rounded
  283. nextt579 nexttoward 9.9999997E-1000 -Infinity -> 9.9999996E-1000 Underflow Subnormal Inexact Rounded
  284. nextt580 nexttoward 0E-1007 -Infinity -> -1E-1007 Underflow Subnormal Inexact Rounded
  285. nextt581 nexttoward 1E-1007 -Infinity -> 0E-1007 Underflow Subnormal Inexact Rounded Clamped
  286. nextt582 nexttoward 2E-1007 -Infinity -> 1E-1007 Underflow Subnormal Inexact Rounded
  287. nextt583 nexttoward -0E-1007 -Infinity -> -1E-1007 Underflow Subnormal Inexact Rounded
  288. nextt584 nexttoward -1E-1007 -Infinity -> -2E-1007 Underflow Subnormal Inexact Rounded
  289. nextt585 nexttoward -2E-1007 -Infinity -> -3E-1007 Underflow Subnormal Inexact Rounded
  290. nextt586 nexttoward -10E-1007 -Infinity -> -1.1E-1006 Underflow Subnormal Inexact Rounded
  291. nextt587 nexttoward -100E-1007 -Infinity -> -1.01E-1005 Underflow Subnormal Inexact Rounded
  292. nextt588 nexttoward -100000E-1007 -Infinity -> -1.00001E-1002 Underflow Subnormal Inexact Rounded
  293. nextt589 nexttoward -1.0000E-999 -Infinity -> -1.00000001E-999
  294. nextt590 nexttoward -1.00000000E-999 -Infinity -> -1.00000001E-999
  295. nextt591 nexttoward -1E-999 -Infinity -> -1.00000001E-999
  296. nextt592 nexttoward -9.99999998E+999 -Infinity -> -9.99999999E+999
  297. nextt593 nexttoward -9.99999999E+999 -Infinity -> -Infinity Overflow Inexact Rounded
  298. ------- Specials
  299. maxExponent: 384
  300. minexponent: -383
  301. nextt780 nexttoward -Inf -Inf -> -Infinity
  302. nextt781 nexttoward -Inf -1000 -> -9.99999999E+384
  303. nextt782 nexttoward -Inf -1 -> -9.99999999E+384
  304. nextt783 nexttoward -Inf -0 -> -9.99999999E+384
  305. nextt784 nexttoward -Inf 0 -> -9.99999999E+384
  306. nextt785 nexttoward -Inf 1 -> -9.99999999E+384
  307. nextt786 nexttoward -Inf 1000 -> -9.99999999E+384
  308. nextt787 nexttoward -1000 -Inf -> -1000.00001
  309. nextt788 nexttoward -Inf -Inf -> -Infinity
  310. nextt789 nexttoward -1 -Inf -> -1.00000001
  311. nextt790 nexttoward -0 -Inf -> -1E-391 Underflow Subnormal Inexact Rounded
  312. nextt791 nexttoward 0 -Inf -> -1E-391 Underflow Subnormal Inexact Rounded
  313. nextt792 nexttoward 1 -Inf -> 0.999999999
  314. nextt793 nexttoward 1000 -Inf -> 999.999999
  315. nextt794 nexttoward Inf -Inf -> 9.99999999E+384
  316. nextt800 nexttoward Inf -Inf -> 9.99999999E+384
  317. nextt801 nexttoward Inf -1000 -> 9.99999999E+384
  318. nextt802 nexttoward Inf -1 -> 9.99999999E+384
  319. nextt803 nexttoward Inf -0 -> 9.99999999E+384
  320. nextt804 nexttoward Inf 0 -> 9.99999999E+384
  321. nextt805 nexttoward Inf 1 -> 9.99999999E+384
  322. nextt806 nexttoward Inf 1000 -> 9.99999999E+384
  323. nextt807 nexttoward Inf Inf -> Infinity
  324. nextt808 nexttoward -1000 Inf -> -999.999999
  325. nextt809 nexttoward -Inf Inf -> -9.99999999E+384
  326. nextt810 nexttoward -1 Inf -> -0.999999999
  327. nextt811 nexttoward -0 Inf -> 1E-391 Underflow Subnormal Inexact Rounded
  328. nextt812 nexttoward 0 Inf -> 1E-391 Underflow Subnormal Inexact Rounded
  329. nextt813 nexttoward 1 Inf -> 1.00000001
  330. nextt814 nexttoward 1000 Inf -> 1000.00001
  331. nextt815 nexttoward Inf Inf -> Infinity
  332. nextt821 nexttoward NaN -Inf -> NaN
  333. nextt822 nexttoward NaN -1000 -> NaN
  334. nextt823 nexttoward NaN -1 -> NaN
  335. nextt824 nexttoward NaN -0 -> NaN
  336. nextt825 nexttoward NaN 0 -> NaN
  337. nextt826 nexttoward NaN 1 -> NaN
  338. nextt827 nexttoward NaN 1000 -> NaN
  339. nextt828 nexttoward NaN Inf -> NaN
  340. nextt829 nexttoward NaN NaN -> NaN
  341. nextt830 nexttoward -Inf NaN -> NaN
  342. nextt831 nexttoward -1000 NaN -> NaN
  343. nextt832 nexttoward -1 NaN -> NaN
  344. nextt833 nexttoward -0 NaN -> NaN
  345. nextt834 nexttoward 0 NaN -> NaN
  346. nextt835 nexttoward 1 NaN -> NaN
  347. nextt836 nexttoward 1000 NaN -> NaN
  348. nextt837 nexttoward Inf NaN -> NaN
  349. nextt841 nexttoward sNaN -Inf -> NaN Invalid_operation
  350. nextt842 nexttoward sNaN -1000 -> NaN Invalid_operation
  351. nextt843 nexttoward sNaN -1 -> NaN Invalid_operation
  352. nextt844 nexttoward sNaN -0 -> NaN Invalid_operation
  353. nextt845 nexttoward sNaN 0 -> NaN Invalid_operation
  354. nextt846 nexttoward sNaN 1 -> NaN Invalid_operation
  355. nextt847 nexttoward sNaN 1000 -> NaN Invalid_operation
  356. nextt848 nexttoward sNaN NaN -> NaN Invalid_operation
  357. nextt849 nexttoward sNaN sNaN -> NaN Invalid_operation
  358. nextt850 nexttoward NaN sNaN -> NaN Invalid_operation
  359. nextt851 nexttoward -Inf sNaN -> NaN Invalid_operation
  360. nextt852 nexttoward -1000 sNaN -> NaN Invalid_operation
  361. nextt853 nexttoward -1 sNaN -> NaN Invalid_operation
  362. nextt854 nexttoward -0 sNaN -> NaN Invalid_operation
  363. nextt855 nexttoward 0 sNaN -> NaN Invalid_operation
  364. nextt856 nexttoward 1 sNaN -> NaN Invalid_operation
  365. nextt857 nexttoward 1000 sNaN -> NaN Invalid_operation
  366. nextt858 nexttoward Inf sNaN -> NaN Invalid_operation
  367. nextt859 nexttoward NaN sNaN -> NaN Invalid_operation
  368. -- propagating NaNs
  369. nextt861 nexttoward NaN1 -Inf -> NaN1
  370. nextt862 nexttoward +NaN2 -1000 -> NaN2
  371. nextt863 nexttoward NaN3 1000 -> NaN3
  372. nextt864 nexttoward NaN4 Inf -> NaN4
  373. nextt865 nexttoward NaN5 +NaN6 -> NaN5
  374. nextt866 nexttoward -Inf NaN7 -> NaN7
  375. nextt867 nexttoward -1000 NaN8 -> NaN8
  376. nextt868 nexttoward 1000 NaN9 -> NaN9
  377. nextt869 nexttoward Inf +NaN10 -> NaN10
  378. nextt871 nexttoward sNaN11 -Inf -> NaN11 Invalid_operation
  379. nextt872 nexttoward sNaN12 -1000 -> NaN12 Invalid_operation
  380. nextt873 nexttoward sNaN13 1000 -> NaN13 Invalid_operation
  381. nextt874 nexttoward sNaN14 NaN17 -> NaN14 Invalid_operation
  382. nextt875 nexttoward sNaN15 sNaN18 -> NaN15 Invalid_operation
  383. nextt876 nexttoward NaN16 sNaN19 -> NaN19 Invalid_operation
  384. nextt877 nexttoward -Inf +sNaN20 -> NaN20 Invalid_operation
  385. nextt878 nexttoward -1000 sNaN21 -> NaN21 Invalid_operation
  386. nextt879 nexttoward 1000 sNaN22 -> NaN22 Invalid_operation
  387. nextt880 nexttoward Inf sNaN23 -> NaN23 Invalid_operation
  388. nextt881 nexttoward +NaN25 +sNaN24 -> NaN24 Invalid_operation
  389. nextt882 nexttoward -NaN26 NaN28 -> -NaN26
  390. nextt883 nexttoward -sNaN27 sNaN29 -> -NaN27 Invalid_operation
  391. nextt884 nexttoward 1000 -NaN30 -> -NaN30
  392. nextt885 nexttoward 1000 -sNaN31 -> -NaN31 Invalid_operation
  393. -- Null tests
  394. nextt900 nexttoward 1 # -> NaN Invalid_operation
  395. nextt901 nexttoward # 1 -> NaN Invalid_operation