ddCompareTotalMag.decTest 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. ------------------------------------------------------------------------
  2. -- ddCompareTotalMag.decTest -- decDouble comparison; abs. total order--
  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. -- Note that we cannot assume add/subtract tests cover paths adequately,
  22. -- here, because the code might be quite different (comparison cannot
  23. -- overflow or underflow, so actual subtractions are not necessary).
  24. -- Similarly, comparetotal will have some radically different paths
  25. -- than compare.
  26. -- All operands and results are decDoubles.
  27. precision: 16
  28. maxExponent: 384
  29. minExponent: -383
  30. extended: 1
  31. clamp: 1
  32. rounding: half_even
  33. -- sanity checks
  34. ddctm001 comparetotmag -2 -2 -> 0
  35. ddctm002 comparetotmag -2 -1 -> 1
  36. ddctm003 comparetotmag -2 0 -> 1
  37. ddctm004 comparetotmag -2 1 -> 1
  38. ddctm005 comparetotmag -2 2 -> 0
  39. ddctm006 comparetotmag -1 -2 -> -1
  40. ddctm007 comparetotmag -1 -1 -> 0
  41. ddctm008 comparetotmag -1 0 -> 1
  42. ddctm009 comparetotmag -1 1 -> 0
  43. ddctm010 comparetotmag -1 2 -> -1
  44. ddctm011 comparetotmag 0 -2 -> -1
  45. ddctm012 comparetotmag 0 -1 -> -1
  46. ddctm013 comparetotmag 0 0 -> 0
  47. ddctm014 comparetotmag 0 1 -> -1
  48. ddctm015 comparetotmag 0 2 -> -1
  49. ddctm016 comparetotmag 1 -2 -> -1
  50. ddctm017 comparetotmag 1 -1 -> 0
  51. ddctm018 comparetotmag 1 0 -> 1
  52. ddctm019 comparetotmag 1 1 -> 0
  53. ddctm020 comparetotmag 1 2 -> -1
  54. ddctm021 comparetotmag 2 -2 -> 0
  55. ddctm022 comparetotmag 2 -1 -> 1
  56. ddctm023 comparetotmag 2 0 -> 1
  57. ddctm025 comparetotmag 2 1 -> 1
  58. ddctm026 comparetotmag 2 2 -> 0
  59. ddctm031 comparetotmag -20 -20 -> 0
  60. ddctm032 comparetotmag -20 -10 -> 1
  61. ddctm033 comparetotmag -20 00 -> 1
  62. ddctm034 comparetotmag -20 10 -> 1
  63. ddctm035 comparetotmag -20 20 -> 0
  64. ddctm036 comparetotmag -10 -20 -> -1
  65. ddctm037 comparetotmag -10 -10 -> 0
  66. ddctm038 comparetotmag -10 00 -> 1
  67. ddctm039 comparetotmag -10 10 -> 0
  68. ddctm040 comparetotmag -10 20 -> -1
  69. ddctm041 comparetotmag 00 -20 -> -1
  70. ddctm042 comparetotmag 00 -10 -> -1
  71. ddctm043 comparetotmag 00 00 -> 0
  72. ddctm044 comparetotmag 00 10 -> -1
  73. ddctm045 comparetotmag 00 20 -> -1
  74. ddctm046 comparetotmag 10 -20 -> -1
  75. ddctm047 comparetotmag 10 -10 -> 0
  76. ddctm048 comparetotmag 10 00 -> 1
  77. ddctm049 comparetotmag 10 10 -> 0
  78. ddctm050 comparetotmag 10 20 -> -1
  79. ddctm051 comparetotmag 20 -20 -> 0
  80. ddctm052 comparetotmag 20 -10 -> 1
  81. ddctm053 comparetotmag 20 00 -> 1
  82. ddctm055 comparetotmag 20 10 -> 1
  83. ddctm056 comparetotmag 20 20 -> 0
  84. ddctm061 comparetotmag -2.0 -2.0 -> 0
  85. ddctm062 comparetotmag -2.0 -1.0 -> 1
  86. ddctm063 comparetotmag -2.0 0.0 -> 1
  87. ddctm064 comparetotmag -2.0 1.0 -> 1
  88. ddctm065 comparetotmag -2.0 2.0 -> 0
  89. ddctm066 comparetotmag -1.0 -2.0 -> -1
  90. ddctm067 comparetotmag -1.0 -1.0 -> 0
  91. ddctm068 comparetotmag -1.0 0.0 -> 1
  92. ddctm069 comparetotmag -1.0 1.0 -> 0
  93. ddctm070 comparetotmag -1.0 2.0 -> -1
  94. ddctm071 comparetotmag 0.0 -2.0 -> -1
  95. ddctm072 comparetotmag 0.0 -1.0 -> -1
  96. ddctm073 comparetotmag 0.0 0.0 -> 0
  97. ddctm074 comparetotmag 0.0 1.0 -> -1
  98. ddctm075 comparetotmag 0.0 2.0 -> -1
  99. ddctm076 comparetotmag 1.0 -2.0 -> -1
  100. ddctm077 comparetotmag 1.0 -1.0 -> 0
  101. ddctm078 comparetotmag 1.0 0.0 -> 1
  102. ddctm079 comparetotmag 1.0 1.0 -> 0
  103. ddctm080 comparetotmag 1.0 2.0 -> -1
  104. ddctm081 comparetotmag 2.0 -2.0 -> 0
  105. ddctm082 comparetotmag 2.0 -1.0 -> 1
  106. ddctm083 comparetotmag 2.0 0.0 -> 1
  107. ddctm085 comparetotmag 2.0 1.0 -> 1
  108. ddctm086 comparetotmag 2.0 2.0 -> 0
  109. -- now some cases which might overflow if subtract were used
  110. ddctm090 comparetotmag 9.99999999E+384 9.99999999E+384 -> 0
  111. ddctm091 comparetotmag -9.99999999E+384 9.99999999E+384 -> 0
  112. ddctm092 comparetotmag 9.99999999E+384 -9.99999999E+384 -> 0
  113. ddctm093 comparetotmag -9.99999999E+384 -9.99999999E+384 -> 0
  114. -- some differing length/exponent cases
  115. -- in this first group, compare would compare all equal
  116. ddctm100 comparetotmag 7.0 7.0 -> 0
  117. ddctm101 comparetotmag 7.0 7 -> -1
  118. ddctm102 comparetotmag 7 7.0 -> 1
  119. ddctm103 comparetotmag 7E+0 7.0 -> 1
  120. ddctm104 comparetotmag 70E-1 7.0 -> 0
  121. ddctm105 comparetotmag 0.7E+1 7 -> 0
  122. ddctm106 comparetotmag 70E-1 7 -> -1
  123. ddctm107 comparetotmag 7.0 7E+0 -> -1
  124. ddctm108 comparetotmag 7.0 70E-1 -> 0
  125. ddctm109 comparetotmag 7 0.7E+1 -> 0
  126. ddctm110 comparetotmag 7 70E-1 -> 1
  127. ddctm120 comparetotmag 8.0 7.0 -> 1
  128. ddctm121 comparetotmag 8.0 7 -> 1
  129. ddctm122 comparetotmag 8 7.0 -> 1
  130. ddctm123 comparetotmag 8E+0 7.0 -> 1
  131. ddctm124 comparetotmag 80E-1 7.0 -> 1
  132. ddctm125 comparetotmag 0.8E+1 7 -> 1
  133. ddctm126 comparetotmag 80E-1 7 -> 1
  134. ddctm127 comparetotmag 8.0 7E+0 -> 1
  135. ddctm128 comparetotmag 8.0 70E-1 -> 1
  136. ddctm129 comparetotmag 8 0.7E+1 -> 1
  137. ddctm130 comparetotmag 8 70E-1 -> 1
  138. ddctm140 comparetotmag 8.0 9.0 -> -1
  139. ddctm141 comparetotmag 8.0 9 -> -1
  140. ddctm142 comparetotmag 8 9.0 -> -1
  141. ddctm143 comparetotmag 8E+0 9.0 -> -1
  142. ddctm144 comparetotmag 80E-1 9.0 -> -1
  143. ddctm145 comparetotmag 0.8E+1 9 -> -1
  144. ddctm146 comparetotmag 80E-1 9 -> -1
  145. ddctm147 comparetotmag 8.0 9E+0 -> -1
  146. ddctm148 comparetotmag 8.0 90E-1 -> -1
  147. ddctm149 comparetotmag 8 0.9E+1 -> -1
  148. ddctm150 comparetotmag 8 90E-1 -> -1
  149. -- and again, with sign changes -+ ..
  150. ddctm200 comparetotmag -7.0 7.0 -> 0
  151. ddctm201 comparetotmag -7.0 7 -> -1
  152. ddctm202 comparetotmag -7 7.0 -> 1
  153. ddctm203 comparetotmag -7E+0 7.0 -> 1
  154. ddctm204 comparetotmag -70E-1 7.0 -> 0
  155. ddctm205 comparetotmag -0.7E+1 7 -> 0
  156. ddctm206 comparetotmag -70E-1 7 -> -1
  157. ddctm207 comparetotmag -7.0 7E+0 -> -1
  158. ddctm208 comparetotmag -7.0 70E-1 -> 0
  159. ddctm209 comparetotmag -7 0.7E+1 -> 0
  160. ddctm210 comparetotmag -7 70E-1 -> 1
  161. ddctm220 comparetotmag -8.0 7.0 -> 1
  162. ddctm221 comparetotmag -8.0 7 -> 1
  163. ddctm222 comparetotmag -8 7.0 -> 1
  164. ddctm223 comparetotmag -8E+0 7.0 -> 1
  165. ddctm224 comparetotmag -80E-1 7.0 -> 1
  166. ddctm225 comparetotmag -0.8E+1 7 -> 1
  167. ddctm226 comparetotmag -80E-1 7 -> 1
  168. ddctm227 comparetotmag -8.0 7E+0 -> 1
  169. ddctm228 comparetotmag -8.0 70E-1 -> 1
  170. ddctm229 comparetotmag -8 0.7E+1 -> 1
  171. ddctm230 comparetotmag -8 70E-1 -> 1
  172. ddctm240 comparetotmag -8.0 9.0 -> -1
  173. ddctm241 comparetotmag -8.0 9 -> -1
  174. ddctm242 comparetotmag -8 9.0 -> -1
  175. ddctm243 comparetotmag -8E+0 9.0 -> -1
  176. ddctm244 comparetotmag -80E-1 9.0 -> -1
  177. ddctm245 comparetotmag -0.8E+1 9 -> -1
  178. ddctm246 comparetotmag -80E-1 9 -> -1
  179. ddctm247 comparetotmag -8.0 9E+0 -> -1
  180. ddctm248 comparetotmag -8.0 90E-1 -> -1
  181. ddctm249 comparetotmag -8 0.9E+1 -> -1
  182. ddctm250 comparetotmag -8 90E-1 -> -1
  183. -- and again, with sign changes +- ..
  184. ddctm300 comparetotmag 7.0 -7.0 -> 0
  185. ddctm301 comparetotmag 7.0 -7 -> -1
  186. ddctm302 comparetotmag 7 -7.0 -> 1
  187. ddctm303 comparetotmag 7E+0 -7.0 -> 1
  188. ddctm304 comparetotmag 70E-1 -7.0 -> 0
  189. ddctm305 comparetotmag .7E+1 -7 -> 0
  190. ddctm306 comparetotmag 70E-1 -7 -> -1
  191. ddctm307 comparetotmag 7.0 -7E+0 -> -1
  192. ddctm308 comparetotmag 7.0 -70E-1 -> 0
  193. ddctm309 comparetotmag 7 -.7E+1 -> 0
  194. ddctm310 comparetotmag 7 -70E-1 -> 1
  195. ddctm320 comparetotmag 8.0 -7.0 -> 1
  196. ddctm321 comparetotmag 8.0 -7 -> 1
  197. ddctm322 comparetotmag 8 -7.0 -> 1
  198. ddctm323 comparetotmag 8E+0 -7.0 -> 1
  199. ddctm324 comparetotmag 80E-1 -7.0 -> 1
  200. ddctm325 comparetotmag .8E+1 -7 -> 1
  201. ddctm326 comparetotmag 80E-1 -7 -> 1
  202. ddctm327 comparetotmag 8.0 -7E+0 -> 1
  203. ddctm328 comparetotmag 8.0 -70E-1 -> 1
  204. ddctm329 comparetotmag 8 -.7E+1 -> 1
  205. ddctm330 comparetotmag 8 -70E-1 -> 1
  206. ddctm340 comparetotmag 8.0 -9.0 -> -1
  207. ddctm341 comparetotmag 8.0 -9 -> -1
  208. ddctm342 comparetotmag 8 -9.0 -> -1
  209. ddctm343 comparetotmag 8E+0 -9.0 -> -1
  210. ddctm344 comparetotmag 80E-1 -9.0 -> -1
  211. ddctm345 comparetotmag .8E+1 -9 -> -1
  212. ddctm346 comparetotmag 80E-1 -9 -> -1
  213. ddctm347 comparetotmag 8.0 -9E+0 -> -1
  214. ddctm348 comparetotmag 8.0 -90E-1 -> -1
  215. ddctm349 comparetotmag 8 -.9E+1 -> -1
  216. ddctm350 comparetotmag 8 -90E-1 -> -1
  217. -- and again, with sign changes -- ..
  218. ddctm400 comparetotmag -7.0 -7.0 -> 0
  219. ddctm401 comparetotmag -7.0 -7 -> -1
  220. ddctm402 comparetotmag -7 -7.0 -> 1
  221. ddctm403 comparetotmag -7E+0 -7.0 -> 1
  222. ddctm404 comparetotmag -70E-1 -7.0 -> 0
  223. ddctm405 comparetotmag -.7E+1 -7 -> 0
  224. ddctm406 comparetotmag -70E-1 -7 -> -1
  225. ddctm407 comparetotmag -7.0 -7E+0 -> -1
  226. ddctm408 comparetotmag -7.0 -70E-1 -> 0
  227. ddctm409 comparetotmag -7 -.7E+1 -> 0
  228. ddctm410 comparetotmag -7 -70E-1 -> 1
  229. ddctm420 comparetotmag -8.0 -7.0 -> 1
  230. ddctm421 comparetotmag -8.0 -7 -> 1
  231. ddctm422 comparetotmag -8 -7.0 -> 1
  232. ddctm423 comparetotmag -8E+0 -7.0 -> 1
  233. ddctm424 comparetotmag -80E-1 -7.0 -> 1
  234. ddctm425 comparetotmag -.8E+1 -7 -> 1
  235. ddctm426 comparetotmag -80E-1 -7 -> 1
  236. ddctm427 comparetotmag -8.0 -7E+0 -> 1
  237. ddctm428 comparetotmag -8.0 -70E-1 -> 1
  238. ddctm429 comparetotmag -8 -.7E+1 -> 1
  239. ddctm430 comparetotmag -8 -70E-1 -> 1
  240. ddctm440 comparetotmag -8.0 -9.0 -> -1
  241. ddctm441 comparetotmag -8.0 -9 -> -1
  242. ddctm442 comparetotmag -8 -9.0 -> -1
  243. ddctm443 comparetotmag -8E+0 -9.0 -> -1
  244. ddctm444 comparetotmag -80E-1 -9.0 -> -1
  245. ddctm445 comparetotmag -.8E+1 -9 -> -1
  246. ddctm446 comparetotmag -80E-1 -9 -> -1
  247. ddctm447 comparetotmag -8.0 -9E+0 -> -1
  248. ddctm448 comparetotmag -8.0 -90E-1 -> -1
  249. ddctm449 comparetotmag -8 -.9E+1 -> -1
  250. ddctm450 comparetotmag -8 -90E-1 -> -1
  251. -- testcases that subtract to lots of zeros at boundaries [pgr]
  252. ddctm473 comparetotmag 123.4560000000000E-89 123.456E-89 -> -1
  253. ddctm474 comparetotmag 123.456000000000E+89 123.456E+89 -> -1
  254. ddctm475 comparetotmag 123.45600000000E-89 123.456E-89 -> -1
  255. ddctm476 comparetotmag 123.4560000000E+89 123.456E+89 -> -1
  256. ddctm477 comparetotmag 123.456000000E-89 123.456E-89 -> -1
  257. ddctm478 comparetotmag 123.45600000E+89 123.456E+89 -> -1
  258. ddctm479 comparetotmag 123.4560000E-89 123.456E-89 -> -1
  259. ddctm480 comparetotmag 123.456000E+89 123.456E+89 -> -1
  260. ddctm481 comparetotmag 123.45600E-89 123.456E-89 -> -1
  261. ddctm482 comparetotmag 123.4560E+89 123.456E+89 -> -1
  262. ddctm483 comparetotmag 123.456E-89 123.456E-89 -> 0
  263. ddctm487 comparetotmag 123.456E+89 123.4560000000000E+89 -> 1
  264. ddctm488 comparetotmag 123.456E-89 123.456000000000E-89 -> 1
  265. ddctm489 comparetotmag 123.456E+89 123.45600000000E+89 -> 1
  266. ddctm490 comparetotmag 123.456E-89 123.4560000000E-89 -> 1
  267. ddctm491 comparetotmag 123.456E+89 123.456000000E+89 -> 1
  268. ddctm492 comparetotmag 123.456E-89 123.45600000E-89 -> 1
  269. ddctm493 comparetotmag 123.456E+89 123.4560000E+89 -> 1
  270. ddctm494 comparetotmag 123.456E-89 123.456000E-89 -> 1
  271. ddctm495 comparetotmag 123.456E+89 123.45600E+89 -> 1
  272. ddctm496 comparetotmag 123.456E-89 123.4560E-89 -> 1
  273. ddctm497 comparetotmag 123.456E+89 123.456E+89 -> 0
  274. -- wide-ranging, around precision; signs equal
  275. ddctm498 comparetotmag 1 1E-17 -> 1
  276. ddctm499 comparetotmag 1 1E-16 -> 1
  277. ddctm500 comparetotmag 1 1E-15 -> 1
  278. ddctm501 comparetotmag 1 1E-14 -> 1
  279. ddctm502 comparetotmag 1 1E-13 -> 1
  280. ddctm503 comparetotmag 1 1E-12 -> 1
  281. ddctm504 comparetotmag 1 1E-11 -> 1
  282. ddctm505 comparetotmag 1 1E-10 -> 1
  283. ddctm506 comparetotmag 1 1E-9 -> 1
  284. ddctm507 comparetotmag 1 1E-8 -> 1
  285. ddctm508 comparetotmag 1 1E-7 -> 1
  286. ddctm509 comparetotmag 1 1E-6 -> 1
  287. ddctm510 comparetotmag 1 1E-5 -> 1
  288. ddctm511 comparetotmag 1 1E-4 -> 1
  289. ddctm512 comparetotmag 1 1E-3 -> 1
  290. ddctm513 comparetotmag 1 1E-2 -> 1
  291. ddctm514 comparetotmag 1 1E-1 -> 1
  292. ddctm515 comparetotmag 1 1E-0 -> 0
  293. ddctm516 comparetotmag 1 1E+1 -> -1
  294. ddctm517 comparetotmag 1 1E+2 -> -1
  295. ddctm518 comparetotmag 1 1E+3 -> -1
  296. ddctm519 comparetotmag 1 1E+4 -> -1
  297. ddctm521 comparetotmag 1 1E+5 -> -1
  298. ddctm522 comparetotmag 1 1E+6 -> -1
  299. ddctm523 comparetotmag 1 1E+7 -> -1
  300. ddctm524 comparetotmag 1 1E+8 -> -1
  301. ddctm525 comparetotmag 1 1E+9 -> -1
  302. ddctm526 comparetotmag 1 1E+10 -> -1
  303. ddctm527 comparetotmag 1 1E+11 -> -1
  304. ddctm528 comparetotmag 1 1E+12 -> -1
  305. ddctm529 comparetotmag 1 1E+13 -> -1
  306. ddctm530 comparetotmag 1 1E+14 -> -1
  307. ddctm531 comparetotmag 1 1E+15 -> -1
  308. ddctm532 comparetotmag 1 1E+16 -> -1
  309. ddctm533 comparetotmag 1 1E+17 -> -1
  310. -- LR swap
  311. ddctm538 comparetotmag 1E-17 1 -> -1
  312. ddctm539 comparetotmag 1E-16 1 -> -1
  313. ddctm540 comparetotmag 1E-15 1 -> -1
  314. ddctm541 comparetotmag 1E-14 1 -> -1
  315. ddctm542 comparetotmag 1E-13 1 -> -1
  316. ddctm543 comparetotmag 1E-12 1 -> -1
  317. ddctm544 comparetotmag 1E-11 1 -> -1
  318. ddctm545 comparetotmag 1E-10 1 -> -1
  319. ddctm546 comparetotmag 1E-9 1 -> -1
  320. ddctm547 comparetotmag 1E-8 1 -> -1
  321. ddctm548 comparetotmag 1E-7 1 -> -1
  322. ddctm549 comparetotmag 1E-6 1 -> -1
  323. ddctm550 comparetotmag 1E-5 1 -> -1
  324. ddctm551 comparetotmag 1E-4 1 -> -1
  325. ddctm552 comparetotmag 1E-3 1 -> -1
  326. ddctm553 comparetotmag 1E-2 1 -> -1
  327. ddctm554 comparetotmag 1E-1 1 -> -1
  328. ddctm555 comparetotmag 1E-0 1 -> 0
  329. ddctm556 comparetotmag 1E+1 1 -> 1
  330. ddctm557 comparetotmag 1E+2 1 -> 1
  331. ddctm558 comparetotmag 1E+3 1 -> 1
  332. ddctm559 comparetotmag 1E+4 1 -> 1
  333. ddctm561 comparetotmag 1E+5 1 -> 1
  334. ddctm562 comparetotmag 1E+6 1 -> 1
  335. ddctm563 comparetotmag 1E+7 1 -> 1
  336. ddctm564 comparetotmag 1E+8 1 -> 1
  337. ddctm565 comparetotmag 1E+9 1 -> 1
  338. ddctm566 comparetotmag 1E+10 1 -> 1
  339. ddctm567 comparetotmag 1E+11 1 -> 1
  340. ddctm568 comparetotmag 1E+12 1 -> 1
  341. ddctm569 comparetotmag 1E+13 1 -> 1
  342. ddctm570 comparetotmag 1E+14 1 -> 1
  343. ddctm571 comparetotmag 1E+15 1 -> 1
  344. ddctm572 comparetotmag 1E+16 1 -> 1
  345. ddctm573 comparetotmag 1E+17 1 -> 1
  346. -- similar with a useful coefficient, one side only
  347. ddctm578 comparetotmag 0.000000987654321 1E-17 -> 1
  348. ddctm579 comparetotmag 0.000000987654321 1E-16 -> 1
  349. ddctm580 comparetotmag 0.000000987654321 1E-15 -> 1
  350. ddctm581 comparetotmag 0.000000987654321 1E-14 -> 1
  351. ddctm582 comparetotmag 0.000000987654321 1E-13 -> 1
  352. ddctm583 comparetotmag 0.000000987654321 1E-12 -> 1
  353. ddctm584 comparetotmag 0.000000987654321 1E-11 -> 1
  354. ddctm585 comparetotmag 0.000000987654321 1E-10 -> 1
  355. ddctm586 comparetotmag 0.000000987654321 1E-9 -> 1
  356. ddctm587 comparetotmag 0.000000987654321 1E-8 -> 1
  357. ddctm588 comparetotmag 0.000000987654321 1E-7 -> 1
  358. ddctm589 comparetotmag 0.000000987654321 1E-6 -> -1
  359. ddctm590 comparetotmag 0.000000987654321 1E-5 -> -1
  360. ddctm591 comparetotmag 0.000000987654321 1E-4 -> -1
  361. ddctm592 comparetotmag 0.000000987654321 1E-3 -> -1
  362. ddctm593 comparetotmag 0.000000987654321 1E-2 -> -1
  363. ddctm594 comparetotmag 0.000000987654321 1E-1 -> -1
  364. ddctm595 comparetotmag 0.000000987654321 1E-0 -> -1
  365. ddctm596 comparetotmag 0.000000987654321 1E+1 -> -1
  366. ddctm597 comparetotmag 0.000000987654321 1E+2 -> -1
  367. ddctm598 comparetotmag 0.000000987654321 1E+3 -> -1
  368. ddctm599 comparetotmag 0.000000987654321 1E+4 -> -1
  369. -- check some unit-y traps
  370. ddctm600 comparetotmag 12 12.2345 -> -1
  371. ddctm601 comparetotmag 12.0 12.2345 -> -1
  372. ddctm602 comparetotmag 12.00 12.2345 -> -1
  373. ddctm603 comparetotmag 12.000 12.2345 -> -1
  374. ddctm604 comparetotmag 12.0000 12.2345 -> -1
  375. ddctm605 comparetotmag 12.00000 12.2345 -> -1
  376. ddctm606 comparetotmag 12.000000 12.2345 -> -1
  377. ddctm607 comparetotmag 12.0000000 12.2345 -> -1
  378. ddctm608 comparetotmag 12.00000000 12.2345 -> -1
  379. ddctm609 comparetotmag 12.000000000 12.2345 -> -1
  380. ddctm610 comparetotmag 12.1234 12 -> 1
  381. ddctm611 comparetotmag 12.1234 12.0 -> 1
  382. ddctm612 comparetotmag 12.1234 12.00 -> 1
  383. ddctm613 comparetotmag 12.1234 12.000 -> 1
  384. ddctm614 comparetotmag 12.1234 12.0000 -> 1
  385. ddctm615 comparetotmag 12.1234 12.00000 -> 1
  386. ddctm616 comparetotmag 12.1234 12.000000 -> 1
  387. ddctm617 comparetotmag 12.1234 12.0000000 -> 1
  388. ddctm618 comparetotmag 12.1234 12.00000000 -> 1
  389. ddctm619 comparetotmag 12.1234 12.000000000 -> 1
  390. ddctm620 comparetotmag -12 -12.2345 -> -1
  391. ddctm621 comparetotmag -12.0 -12.2345 -> -1
  392. ddctm622 comparetotmag -12.00 -12.2345 -> -1
  393. ddctm623 comparetotmag -12.000 -12.2345 -> -1
  394. ddctm624 comparetotmag -12.0000 -12.2345 -> -1
  395. ddctm625 comparetotmag -12.00000 -12.2345 -> -1
  396. ddctm626 comparetotmag -12.000000 -12.2345 -> -1
  397. ddctm627 comparetotmag -12.0000000 -12.2345 -> -1
  398. ddctm628 comparetotmag -12.00000000 -12.2345 -> -1
  399. ddctm629 comparetotmag -12.000000000 -12.2345 -> -1
  400. ddctm630 comparetotmag -12.1234 -12 -> 1
  401. ddctm631 comparetotmag -12.1234 -12.0 -> 1
  402. ddctm632 comparetotmag -12.1234 -12.00 -> 1
  403. ddctm633 comparetotmag -12.1234 -12.000 -> 1
  404. ddctm634 comparetotmag -12.1234 -12.0000 -> 1
  405. ddctm635 comparetotmag -12.1234 -12.00000 -> 1
  406. ddctm636 comparetotmag -12.1234 -12.000000 -> 1
  407. ddctm637 comparetotmag -12.1234 -12.0000000 -> 1
  408. ddctm638 comparetotmag -12.1234 -12.00000000 -> 1
  409. ddctm639 comparetotmag -12.1234 -12.000000000 -> 1
  410. -- extended zeros
  411. ddctm640 comparetotmag 0 0 -> 0
  412. ddctm641 comparetotmag 0 -0 -> 0
  413. ddctm642 comparetotmag 0 -0.0 -> 1
  414. ddctm643 comparetotmag 0 0.0 -> 1
  415. ddctm644 comparetotmag -0 0 -> 0
  416. ddctm645 comparetotmag -0 -0 -> 0
  417. ddctm646 comparetotmag -0 -0.0 -> 1
  418. ddctm647 comparetotmag -0 0.0 -> 1
  419. ddctm648 comparetotmag 0.0 0 -> -1
  420. ddctm649 comparetotmag 0.0 -0 -> -1
  421. ddctm650 comparetotmag 0.0 -0.0 -> 0
  422. ddctm651 comparetotmag 0.0 0.0 -> 0
  423. ddctm652 comparetotmag -0.0 0 -> -1
  424. ddctm653 comparetotmag -0.0 -0 -> -1
  425. ddctm654 comparetotmag -0.0 -0.0 -> 0
  426. ddctm655 comparetotmag -0.0 0.0 -> 0
  427. ddctm656 comparetotmag -0E1 0.0 -> 1
  428. ddctm657 comparetotmag -0E2 0.0 -> 1
  429. ddctm658 comparetotmag 0E1 0.0 -> 1
  430. ddctm659 comparetotmag 0E2 0.0 -> 1
  431. ddctm660 comparetotmag -0E1 0 -> 1
  432. ddctm661 comparetotmag -0E2 0 -> 1
  433. ddctm662 comparetotmag 0E1 0 -> 1
  434. ddctm663 comparetotmag 0E2 0 -> 1
  435. ddctm664 comparetotmag -0E1 -0E1 -> 0
  436. ddctm665 comparetotmag -0E2 -0E1 -> 1
  437. ddctm666 comparetotmag 0E1 -0E1 -> 0
  438. ddctm667 comparetotmag 0E2 -0E1 -> 1
  439. ddctm668 comparetotmag -0E1 -0E2 -> -1
  440. ddctm669 comparetotmag -0E2 -0E2 -> 0
  441. ddctm670 comparetotmag 0E1 -0E2 -> -1
  442. ddctm671 comparetotmag 0E2 -0E2 -> 0
  443. ddctm672 comparetotmag -0E1 0E1 -> 0
  444. ddctm673 comparetotmag -0E2 0E1 -> 1
  445. ddctm674 comparetotmag 0E1 0E1 -> 0
  446. ddctm675 comparetotmag 0E2 0E1 -> 1
  447. ddctm676 comparetotmag -0E1 0E2 -> -1
  448. ddctm677 comparetotmag -0E2 0E2 -> 0
  449. ddctm678 comparetotmag 0E1 0E2 -> -1
  450. ddctm679 comparetotmag 0E2 0E2 -> 0
  451. -- trailing zeros; unit-y
  452. ddctm680 comparetotmag 12 12 -> 0
  453. ddctm681 comparetotmag 12 12.0 -> 1
  454. ddctm682 comparetotmag 12 12.00 -> 1
  455. ddctm683 comparetotmag 12 12.000 -> 1
  456. ddctm684 comparetotmag 12 12.0000 -> 1
  457. ddctm685 comparetotmag 12 12.00000 -> 1
  458. ddctm686 comparetotmag 12 12.000000 -> 1
  459. ddctm687 comparetotmag 12 12.0000000 -> 1
  460. ddctm688 comparetotmag 12 12.00000000 -> 1
  461. ddctm689 comparetotmag 12 12.000000000 -> 1
  462. ddctm690 comparetotmag 12 12 -> 0
  463. ddctm691 comparetotmag 12.0 12 -> -1
  464. ddctm692 comparetotmag 12.00 12 -> -1
  465. ddctm693 comparetotmag 12.000 12 -> -1
  466. ddctm694 comparetotmag 12.0000 12 -> -1
  467. ddctm695 comparetotmag 12.00000 12 -> -1
  468. ddctm696 comparetotmag 12.000000 12 -> -1
  469. ddctm697 comparetotmag 12.0000000 12 -> -1
  470. ddctm698 comparetotmag 12.00000000 12 -> -1
  471. ddctm699 comparetotmag 12.000000000 12 -> -1
  472. -- old long operand checks
  473. ddctm701 comparetotmag 12345678000 1 -> 1
  474. ddctm702 comparetotmag 1 12345678000 -> -1
  475. ddctm703 comparetotmag 1234567800 1 -> 1
  476. ddctm704 comparetotmag 1 1234567800 -> -1
  477. ddctm705 comparetotmag 1234567890 1 -> 1
  478. ddctm706 comparetotmag 1 1234567890 -> -1
  479. ddctm707 comparetotmag 1234567891 1 -> 1
  480. ddctm708 comparetotmag 1 1234567891 -> -1
  481. ddctm709 comparetotmag 12345678901 1 -> 1
  482. ddctm710 comparetotmag 1 12345678901 -> -1
  483. ddctm711 comparetotmag 1234567896 1 -> 1
  484. ddctm712 comparetotmag 1 1234567896 -> -1
  485. ddctm713 comparetotmag -1234567891 1 -> 1
  486. ddctm714 comparetotmag 1 -1234567891 -> -1
  487. ddctm715 comparetotmag -12345678901 1 -> 1
  488. ddctm716 comparetotmag 1 -12345678901 -> -1
  489. ddctm717 comparetotmag -1234567896 1 -> 1
  490. ddctm718 comparetotmag 1 -1234567896 -> -1
  491. -- old residue cases
  492. ddctm740 comparetotmag 1 0.9999999 -> 1
  493. ddctm741 comparetotmag 1 0.999999 -> 1
  494. ddctm742 comparetotmag 1 0.99999 -> 1
  495. ddctm743 comparetotmag 1 1.0000 -> 1
  496. ddctm744 comparetotmag 1 1.00001 -> -1
  497. ddctm745 comparetotmag 1 1.000001 -> -1
  498. ddctm746 comparetotmag 1 1.0000001 -> -1
  499. ddctm750 comparetotmag 0.9999999 1 -> -1
  500. ddctm751 comparetotmag 0.999999 1 -> -1
  501. ddctm752 comparetotmag 0.99999 1 -> -1
  502. ddctm753 comparetotmag 1.0000 1 -> -1
  503. ddctm754 comparetotmag 1.00001 1 -> 1
  504. ddctm755 comparetotmag 1.000001 1 -> 1
  505. ddctm756 comparetotmag 1.0000001 1 -> 1
  506. -- Specials
  507. ddctm780 comparetotmag Inf -Inf -> 0
  508. ddctm781 comparetotmag Inf -1000 -> 1
  509. ddctm782 comparetotmag Inf -1 -> 1
  510. ddctm783 comparetotmag Inf -0 -> 1
  511. ddctm784 comparetotmag Inf 0 -> 1
  512. ddctm785 comparetotmag Inf 1 -> 1
  513. ddctm786 comparetotmag Inf 1000 -> 1
  514. ddctm787 comparetotmag Inf Inf -> 0
  515. ddctm788 comparetotmag -1000 Inf -> -1
  516. ddctm789 comparetotmag -Inf Inf -> 0
  517. ddctm790 comparetotmag -1 Inf -> -1
  518. ddctm791 comparetotmag -0 Inf -> -1
  519. ddctm792 comparetotmag 0 Inf -> -1
  520. ddctm793 comparetotmag 1 Inf -> -1
  521. ddctm794 comparetotmag 1000 Inf -> -1
  522. ddctm795 comparetotmag Inf Inf -> 0
  523. ddctm800 comparetotmag -Inf -Inf -> 0
  524. ddctm801 comparetotmag -Inf -1000 -> 1
  525. ddctm802 comparetotmag -Inf -1 -> 1
  526. ddctm803 comparetotmag -Inf -0 -> 1
  527. ddctm804 comparetotmag -Inf 0 -> 1
  528. ddctm805 comparetotmag -Inf 1 -> 1
  529. ddctm806 comparetotmag -Inf 1000 -> 1
  530. ddctm807 comparetotmag -Inf Inf -> 0
  531. ddctm808 comparetotmag -Inf -Inf -> 0
  532. ddctm809 comparetotmag -1000 -Inf -> -1
  533. ddctm810 comparetotmag -1 -Inf -> -1
  534. ddctm811 comparetotmag -0 -Inf -> -1
  535. ddctm812 comparetotmag 0 -Inf -> -1
  536. ddctm813 comparetotmag 1 -Inf -> -1
  537. ddctm814 comparetotmag 1000 -Inf -> -1
  538. ddctm815 comparetotmag Inf -Inf -> 0
  539. ddctm821 comparetotmag NaN -Inf -> 1
  540. ddctm822 comparetotmag NaN -1000 -> 1
  541. ddctm823 comparetotmag NaN -1 -> 1
  542. ddctm824 comparetotmag NaN -0 -> 1
  543. ddctm825 comparetotmag NaN 0 -> 1
  544. ddctm826 comparetotmag NaN 1 -> 1
  545. ddctm827 comparetotmag NaN 1000 -> 1
  546. ddctm828 comparetotmag NaN Inf -> 1
  547. ddctm829 comparetotmag NaN NaN -> 0
  548. ddctm830 comparetotmag -Inf NaN -> -1
  549. ddctm831 comparetotmag -1000 NaN -> -1
  550. ddctm832 comparetotmag -1 NaN -> -1
  551. ddctm833 comparetotmag -0 NaN -> -1
  552. ddctm834 comparetotmag 0 NaN -> -1
  553. ddctm835 comparetotmag 1 NaN -> -1
  554. ddctm836 comparetotmag 1000 NaN -> -1
  555. ddctm837 comparetotmag Inf NaN -> -1
  556. ddctm838 comparetotmag -NaN -NaN -> 0
  557. ddctm839 comparetotmag +NaN -NaN -> 0
  558. ddctm840 comparetotmag -NaN +NaN -> 0
  559. ddctm841 comparetotmag sNaN -sNaN -> 0
  560. ddctm842 comparetotmag sNaN -NaN -> -1
  561. ddctm843 comparetotmag sNaN -Inf -> 1
  562. ddctm844 comparetotmag sNaN -1000 -> 1
  563. ddctm845 comparetotmag sNaN -1 -> 1
  564. ddctm846 comparetotmag sNaN -0 -> 1
  565. ddctm847 comparetotmag sNaN 0 -> 1
  566. ddctm848 comparetotmag sNaN 1 -> 1
  567. ddctm849 comparetotmag sNaN 1000 -> 1
  568. ddctm850 comparetotmag sNaN NaN -> -1
  569. ddctm851 comparetotmag sNaN sNaN -> 0
  570. ddctm852 comparetotmag -sNaN sNaN -> 0
  571. ddctm853 comparetotmag -NaN sNaN -> 1
  572. ddctm854 comparetotmag -Inf sNaN -> -1
  573. ddctm855 comparetotmag -1000 sNaN -> -1
  574. ddctm856 comparetotmag -1 sNaN -> -1
  575. ddctm857 comparetotmag -0 sNaN -> -1
  576. ddctm858 comparetotmag 0 sNaN -> -1
  577. ddctm859 comparetotmag 1 sNaN -> -1
  578. ddctm860 comparetotmag 1000 sNaN -> -1
  579. ddctm861 comparetotmag Inf sNaN -> -1
  580. ddctm862 comparetotmag NaN sNaN -> 1
  581. ddctm863 comparetotmag sNaN sNaN -> 0
  582. ddctm871 comparetotmag -sNaN -sNaN -> 0
  583. ddctm872 comparetotmag -sNaN -NaN -> -1
  584. ddctm873 comparetotmag -sNaN -Inf -> 1
  585. ddctm874 comparetotmag -sNaN -1000 -> 1
  586. ddctm875 comparetotmag -sNaN -1 -> 1
  587. ddctm876 comparetotmag -sNaN -0 -> 1
  588. ddctm877 comparetotmag -sNaN 0 -> 1
  589. ddctm878 comparetotmag -sNaN 1 -> 1
  590. ddctm879 comparetotmag -sNaN 1000 -> 1
  591. ddctm880 comparetotmag -sNaN NaN -> -1
  592. ddctm881 comparetotmag -sNaN sNaN -> 0
  593. ddctm882 comparetotmag -sNaN -sNaN -> 0
  594. ddctm883 comparetotmag -NaN -sNaN -> 1
  595. ddctm884 comparetotmag -Inf -sNaN -> -1
  596. ddctm885 comparetotmag -1000 -sNaN -> -1
  597. ddctm886 comparetotmag -1 -sNaN -> -1
  598. ddctm887 comparetotmag -0 -sNaN -> -1
  599. ddctm888 comparetotmag 0 -sNaN -> -1
  600. ddctm889 comparetotmag 1 -sNaN -> -1
  601. ddctm890 comparetotmag 1000 -sNaN -> -1
  602. ddctm891 comparetotmag Inf -sNaN -> -1
  603. ddctm892 comparetotmag NaN -sNaN -> 1
  604. ddctm893 comparetotmag sNaN -sNaN -> 0
  605. -- NaNs with payload
  606. ddctm960 comparetotmag NaN9 -Inf -> 1
  607. ddctm961 comparetotmag NaN8 999 -> 1
  608. ddctm962 comparetotmag NaN77 Inf -> 1
  609. ddctm963 comparetotmag -NaN67 NaN5 -> 1
  610. ddctm964 comparetotmag -Inf -NaN4 -> -1
  611. ddctm965 comparetotmag -999 -NaN33 -> -1
  612. ddctm966 comparetotmag Inf NaN2 -> -1
  613. ddctm970 comparetotmag -NaN41 -NaN42 -> -1
  614. ddctm971 comparetotmag +NaN41 -NaN42 -> -1
  615. ddctm972 comparetotmag -NaN41 +NaN42 -> -1
  616. ddctm973 comparetotmag +NaN41 +NaN42 -> -1
  617. ddctm974 comparetotmag -NaN42 -NaN01 -> 1
  618. ddctm975 comparetotmag +NaN42 -NaN01 -> 1
  619. ddctm976 comparetotmag -NaN42 +NaN01 -> 1
  620. ddctm977 comparetotmag +NaN42 +NaN01 -> 1
  621. ddctm980 comparetotmag -sNaN771 -sNaN772 -> -1
  622. ddctm981 comparetotmag +sNaN771 -sNaN772 -> -1
  623. ddctm982 comparetotmag -sNaN771 +sNaN772 -> -1
  624. ddctm983 comparetotmag +sNaN771 +sNaN772 -> -1
  625. ddctm984 comparetotmag -sNaN772 -sNaN771 -> 1
  626. ddctm985 comparetotmag +sNaN772 -sNaN771 -> 1
  627. ddctm986 comparetotmag -sNaN772 +sNaN771 -> 1
  628. ddctm987 comparetotmag +sNaN772 +sNaN771 -> 1
  629. ddctm991 comparetotmag -sNaN99 -Inf -> 1
  630. ddctm992 comparetotmag sNaN98 -11 -> 1
  631. ddctm993 comparetotmag sNaN97 NaN -> -1
  632. ddctm994 comparetotmag sNaN16 sNaN94 -> -1
  633. ddctm995 comparetotmag NaN85 sNaN83 -> 1
  634. ddctm996 comparetotmag -Inf sNaN92 -> -1
  635. ddctm997 comparetotmag 088 sNaN81 -> -1
  636. ddctm998 comparetotmag Inf sNaN90 -> -1
  637. ddctm999 comparetotmag NaN -sNaN89 -> 1
  638. -- spread zeros
  639. ddctm1110 comparetotmag 0E-383 0 -> -1
  640. ddctm1111 comparetotmag 0E-383 -0 -> -1
  641. ddctm1112 comparetotmag -0E-383 0 -> -1
  642. ddctm1113 comparetotmag -0E-383 -0 -> -1
  643. ddctm1114 comparetotmag 0E-383 0E+384 -> -1
  644. ddctm1115 comparetotmag 0E-383 -0E+384 -> -1
  645. ddctm1116 comparetotmag -0E-383 0E+384 -> -1
  646. ddctm1117 comparetotmag -0E-383 -0E+384 -> -1
  647. ddctm1118 comparetotmag 0 0E+384 -> -1
  648. ddctm1119 comparetotmag 0 -0E+384 -> -1
  649. ddctm1120 comparetotmag -0 0E+384 -> -1
  650. ddctm1121 comparetotmag -0 -0E+384 -> -1
  651. ddctm1130 comparetotmag 0E+384 0 -> 1
  652. ddctm1131 comparetotmag 0E+384 -0 -> 1
  653. ddctm1132 comparetotmag -0E+384 0 -> 1
  654. ddctm1133 comparetotmag -0E+384 -0 -> 1
  655. ddctm1134 comparetotmag 0E+384 0E-383 -> 1
  656. ddctm1135 comparetotmag 0E+384 -0E-383 -> 1
  657. ddctm1136 comparetotmag -0E+384 0E-383 -> 1
  658. ddctm1137 comparetotmag -0E+384 -0E-383 -> 1
  659. ddctm1138 comparetotmag 0 0E-383 -> 1
  660. ddctm1139 comparetotmag 0 -0E-383 -> 1
  661. ddctm1140 comparetotmag -0 0E-383 -> 1
  662. ddctm1141 comparetotmag -0 -0E-383 -> 1
  663. -- Null tests
  664. ddctm9990 comparetotmag 10 # -> NaN Invalid_operation
  665. ddctm9991 comparetotmag # 10 -> NaN Invalid_operation