comparetotmag.decTest 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790
  1. ------------------------------------------------------------------------
  2. -- comparetotmag.decTest -- decimal comparison, abs. total ordering --
  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 it cannot be assumed that add/subtract tests cover paths
  22. -- for this operation adequately, here, because the code might be
  23. -- quite different (comparison cannot overflow or underflow, so
  24. -- actual subtractions are not necessary). Similarly, comparetotal
  25. -- will have some radically different paths than compare.
  26. extended: 1
  27. precision: 16
  28. rounding: half_up
  29. maxExponent: 384
  30. minExponent: -383
  31. -- sanity checks
  32. ctmx001 comparetotmag -2 -2 -> 0
  33. ctmx002 comparetotmag -2 -1 -> 1
  34. ctmx003 comparetotmag -2 0 -> 1
  35. ctmx004 comparetotmag -2 1 -> 1
  36. ctmx005 comparetotmag -2 2 -> 0
  37. ctmx006 comparetotmag -1 -2 -> -1
  38. ctmx007 comparetotmag -1 -1 -> 0
  39. ctmx008 comparetotmag -1 0 -> 1
  40. ctmx009 comparetotmag -1 1 -> 0
  41. ctmx010 comparetotmag -1 2 -> -1
  42. ctmx011 comparetotmag 0 -2 -> -1
  43. ctmx012 comparetotmag 0 -1 -> -1
  44. ctmx013 comparetotmag 0 0 -> 0
  45. ctmx014 comparetotmag 0 1 -> -1
  46. ctmx015 comparetotmag 0 2 -> -1
  47. ctmx016 comparetotmag 1 -2 -> -1
  48. ctmx017 comparetotmag 1 -1 -> 0
  49. ctmx018 comparetotmag 1 0 -> 1
  50. ctmx019 comparetotmag 1 1 -> 0
  51. ctmx020 comparetotmag 1 2 -> -1
  52. ctmx021 comparetotmag 2 -2 -> 0
  53. ctmx022 comparetotmag 2 -1 -> 1
  54. ctmx023 comparetotmag 2 0 -> 1
  55. ctmx025 comparetotmag 2 1 -> 1
  56. ctmx026 comparetotmag 2 2 -> 0
  57. ctmx031 comparetotmag -20 -20 -> 0
  58. ctmx032 comparetotmag -20 -10 -> 1
  59. ctmx033 comparetotmag -20 00 -> 1
  60. ctmx034 comparetotmag -20 10 -> 1
  61. ctmx035 comparetotmag -20 20 -> 0
  62. ctmx036 comparetotmag -10 -20 -> -1
  63. ctmx037 comparetotmag -10 -10 -> 0
  64. ctmx038 comparetotmag -10 00 -> 1
  65. ctmx039 comparetotmag -10 10 -> 0
  66. ctmx040 comparetotmag -10 20 -> -1
  67. ctmx041 comparetotmag 00 -20 -> -1
  68. ctmx042 comparetotmag 00 -10 -> -1
  69. ctmx043 comparetotmag 00 00 -> 0
  70. ctmx044 comparetotmag 00 10 -> -1
  71. ctmx045 comparetotmag 00 20 -> -1
  72. ctmx046 comparetotmag 10 -20 -> -1
  73. ctmx047 comparetotmag 10 -10 -> 0
  74. ctmx048 comparetotmag 10 00 -> 1
  75. ctmx049 comparetotmag 10 10 -> 0
  76. ctmx050 comparetotmag 10 20 -> -1
  77. ctmx051 comparetotmag 20 -20 -> 0
  78. ctmx052 comparetotmag 20 -10 -> 1
  79. ctmx053 comparetotmag 20 00 -> 1
  80. ctmx055 comparetotmag 20 10 -> 1
  81. ctmx056 comparetotmag 20 20 -> 0
  82. ctmx061 comparetotmag -2.0 -2.0 -> 0
  83. ctmx062 comparetotmag -2.0 -1.0 -> 1
  84. ctmx063 comparetotmag -2.0 0.0 -> 1
  85. ctmx064 comparetotmag -2.0 1.0 -> 1
  86. ctmx065 comparetotmag -2.0 2.0 -> 0
  87. ctmx066 comparetotmag -1.0 -2.0 -> -1
  88. ctmx067 comparetotmag -1.0 -1.0 -> 0
  89. ctmx068 comparetotmag -1.0 0.0 -> 1
  90. ctmx069 comparetotmag -1.0 1.0 -> 0
  91. ctmx070 comparetotmag -1.0 2.0 -> -1
  92. ctmx071 comparetotmag 0.0 -2.0 -> -1
  93. ctmx072 comparetotmag 0.0 -1.0 -> -1
  94. ctmx073 comparetotmag 0.0 0.0 -> 0
  95. ctmx074 comparetotmag 0.0 1.0 -> -1
  96. ctmx075 comparetotmag 0.0 2.0 -> -1
  97. ctmx076 comparetotmag 1.0 -2.0 -> -1
  98. ctmx077 comparetotmag 1.0 -1.0 -> 0
  99. ctmx078 comparetotmag 1.0 0.0 -> 1
  100. ctmx079 comparetotmag 1.0 1.0 -> 0
  101. ctmx080 comparetotmag 1.0 2.0 -> -1
  102. ctmx081 comparetotmag 2.0 -2.0 -> 0
  103. ctmx082 comparetotmag 2.0 -1.0 -> 1
  104. ctmx083 comparetotmag 2.0 0.0 -> 1
  105. ctmx085 comparetotmag 2.0 1.0 -> 1
  106. ctmx086 comparetotmag 2.0 2.0 -> 0
  107. -- now some cases which might overflow if subtract were used
  108. maxexponent: 999999999
  109. minexponent: -999999999
  110. ctmx090 comparetotmag 9.99999999E+999999999 9.99999999E+999999999 -> 0
  111. ctmx091 comparetotmag -9.99999999E+999999999 9.99999999E+999999999 -> 0
  112. ctmx092 comparetotmag 9.99999999E+999999999 -9.99999999E+999999999 -> 0
  113. ctmx093 comparetotmag -9.99999999E+999999999 -9.99999999E+999999999 -> 0
  114. -- some differing length/exponent cases
  115. -- in this first group, compare would compare all equal
  116. ctmx100 comparetotmag 7.0 7.0 -> 0
  117. ctmx101 comparetotmag 7.0 7 -> -1
  118. ctmx102 comparetotmag 7 7.0 -> 1
  119. ctmx103 comparetotmag 7E+0 7.0 -> 1
  120. ctmx104 comparetotmag 70E-1 7.0 -> 0
  121. ctmx105 comparetotmag 0.7E+1 7 -> 0
  122. ctmx106 comparetotmag 70E-1 7 -> -1
  123. ctmx107 comparetotmag 7.0 7E+0 -> -1
  124. ctmx108 comparetotmag 7.0 70E-1 -> 0
  125. ctmx109 comparetotmag 7 0.7E+1 -> 0
  126. ctmx110 comparetotmag 7 70E-1 -> 1
  127. ctmx120 comparetotmag 8.0 7.0 -> 1
  128. ctmx121 comparetotmag 8.0 7 -> 1
  129. ctmx122 comparetotmag 8 7.0 -> 1
  130. ctmx123 comparetotmag 8E+0 7.0 -> 1
  131. ctmx124 comparetotmag 80E-1 7.0 -> 1
  132. ctmx125 comparetotmag 0.8E+1 7 -> 1
  133. ctmx126 comparetotmag 80E-1 7 -> 1
  134. ctmx127 comparetotmag 8.0 7E+0 -> 1
  135. ctmx128 comparetotmag 8.0 70E-1 -> 1
  136. ctmx129 comparetotmag 8 0.7E+1 -> 1
  137. ctmx130 comparetotmag 8 70E-1 -> 1
  138. ctmx140 comparetotmag 8.0 9.0 -> -1
  139. ctmx141 comparetotmag 8.0 9 -> -1
  140. ctmx142 comparetotmag 8 9.0 -> -1
  141. ctmx143 comparetotmag 8E+0 9.0 -> -1
  142. ctmx144 comparetotmag 80E-1 9.0 -> -1
  143. ctmx145 comparetotmag 0.8E+1 9 -> -1
  144. ctmx146 comparetotmag 80E-1 9 -> -1
  145. ctmx147 comparetotmag 8.0 9E+0 -> -1
  146. ctmx148 comparetotmag 8.0 90E-1 -> -1
  147. ctmx149 comparetotmag 8 0.9E+1 -> -1
  148. ctmx150 comparetotmag 8 90E-1 -> -1
  149. -- and again, with sign changes -+ ..
  150. ctmx200 comparetotmag -7.0 7.0 -> 0
  151. ctmx201 comparetotmag -7.0 7 -> -1
  152. ctmx202 comparetotmag -7 7.0 -> 1
  153. ctmx203 comparetotmag -7E+0 7.0 -> 1
  154. ctmx204 comparetotmag -70E-1 7.0 -> 0
  155. ctmx205 comparetotmag -0.7E+1 7 -> 0
  156. ctmx206 comparetotmag -70E-1 7 -> -1
  157. ctmx207 comparetotmag -7.0 7E+0 -> -1
  158. ctmx208 comparetotmag -7.0 70E-1 -> 0
  159. ctmx209 comparetotmag -7 0.7E+1 -> 0
  160. ctmx210 comparetotmag -7 70E-1 -> 1
  161. ctmx220 comparetotmag -8.0 7.0 -> 1
  162. ctmx221 comparetotmag -8.0 7 -> 1
  163. ctmx222 comparetotmag -8 7.0 -> 1
  164. ctmx223 comparetotmag -8E+0 7.0 -> 1
  165. ctmx224 comparetotmag -80E-1 7.0 -> 1
  166. ctmx225 comparetotmag -0.8E+1 7 -> 1
  167. ctmx226 comparetotmag -80E-1 7 -> 1
  168. ctmx227 comparetotmag -8.0 7E+0 -> 1
  169. ctmx228 comparetotmag -8.0 70E-1 -> 1
  170. ctmx229 comparetotmag -8 0.7E+1 -> 1
  171. ctmx230 comparetotmag -8 70E-1 -> 1
  172. ctmx240 comparetotmag -8.0 9.0 -> -1
  173. ctmx241 comparetotmag -8.0 9 -> -1
  174. ctmx242 comparetotmag -8 9.0 -> -1
  175. ctmx243 comparetotmag -8E+0 9.0 -> -1
  176. ctmx244 comparetotmag -80E-1 9.0 -> -1
  177. ctmx245 comparetotmag -0.8E+1 9 -> -1
  178. ctmx246 comparetotmag -80E-1 9 -> -1
  179. ctmx247 comparetotmag -8.0 9E+0 -> -1
  180. ctmx248 comparetotmag -8.0 90E-1 -> -1
  181. ctmx249 comparetotmag -8 0.9E+1 -> -1
  182. ctmx250 comparetotmag -8 90E-1 -> -1
  183. -- and again, with sign changes +- ..
  184. ctmx300 comparetotmag 7.0 -7.0 -> 0
  185. ctmx301 comparetotmag 7.0 -7 -> -1
  186. ctmx302 comparetotmag 7 -7.0 -> 1
  187. ctmx303 comparetotmag 7E+0 -7.0 -> 1
  188. ctmx304 comparetotmag 70E-1 -7.0 -> 0
  189. ctmx305 comparetotmag .7E+1 -7 -> 0
  190. ctmx306 comparetotmag 70E-1 -7 -> -1
  191. ctmx307 comparetotmag 7.0 -7E+0 -> -1
  192. ctmx308 comparetotmag 7.0 -70E-1 -> 0
  193. ctmx309 comparetotmag 7 -.7E+1 -> 0
  194. ctmx310 comparetotmag 7 -70E-1 -> 1
  195. ctmx320 comparetotmag 8.0 -7.0 -> 1
  196. ctmx321 comparetotmag 8.0 -7 -> 1
  197. ctmx322 comparetotmag 8 -7.0 -> 1
  198. ctmx323 comparetotmag 8E+0 -7.0 -> 1
  199. ctmx324 comparetotmag 80E-1 -7.0 -> 1
  200. ctmx325 comparetotmag .8E+1 -7 -> 1
  201. ctmx326 comparetotmag 80E-1 -7 -> 1
  202. ctmx327 comparetotmag 8.0 -7E+0 -> 1
  203. ctmx328 comparetotmag 8.0 -70E-1 -> 1
  204. ctmx329 comparetotmag 8 -.7E+1 -> 1
  205. ctmx330 comparetotmag 8 -70E-1 -> 1
  206. ctmx340 comparetotmag 8.0 -9.0 -> -1
  207. ctmx341 comparetotmag 8.0 -9 -> -1
  208. ctmx342 comparetotmag 8 -9.0 -> -1
  209. ctmx343 comparetotmag 8E+0 -9.0 -> -1
  210. ctmx344 comparetotmag 80E-1 -9.0 -> -1
  211. ctmx345 comparetotmag .8E+1 -9 -> -1
  212. ctmx346 comparetotmag 80E-1 -9 -> -1
  213. ctmx347 comparetotmag 8.0 -9E+0 -> -1
  214. ctmx348 comparetotmag 8.0 -90E-1 -> -1
  215. ctmx349 comparetotmag 8 -.9E+1 -> -1
  216. ctmx350 comparetotmag 8 -90E-1 -> -1
  217. -- and again, with sign changes -- ..
  218. ctmx400 comparetotmag -7.0 -7.0 -> 0
  219. ctmx401 comparetotmag -7.0 -7 -> -1
  220. ctmx402 comparetotmag -7 -7.0 -> 1
  221. ctmx403 comparetotmag -7E+0 -7.0 -> 1
  222. ctmx404 comparetotmag -70E-1 -7.0 -> 0
  223. ctmx405 comparetotmag -.7E+1 -7 -> 0
  224. ctmx406 comparetotmag -70E-1 -7 -> -1
  225. ctmx407 comparetotmag -7.0 -7E+0 -> -1
  226. ctmx408 comparetotmag -7.0 -70E-1 -> 0
  227. ctmx409 comparetotmag -7 -.7E+1 -> 0
  228. ctmx410 comparetotmag -7 -70E-1 -> 1
  229. ctmx420 comparetotmag -8.0 -7.0 -> 1
  230. ctmx421 comparetotmag -8.0 -7 -> 1
  231. ctmx422 comparetotmag -8 -7.0 -> 1
  232. ctmx423 comparetotmag -8E+0 -7.0 -> 1
  233. ctmx424 comparetotmag -80E-1 -7.0 -> 1
  234. ctmx425 comparetotmag -.8E+1 -7 -> 1
  235. ctmx426 comparetotmag -80E-1 -7 -> 1
  236. ctmx427 comparetotmag -8.0 -7E+0 -> 1
  237. ctmx428 comparetotmag -8.0 -70E-1 -> 1
  238. ctmx429 comparetotmag -8 -.7E+1 -> 1
  239. ctmx430 comparetotmag -8 -70E-1 -> 1
  240. ctmx440 comparetotmag -8.0 -9.0 -> -1
  241. ctmx441 comparetotmag -8.0 -9 -> -1
  242. ctmx442 comparetotmag -8 -9.0 -> -1
  243. ctmx443 comparetotmag -8E+0 -9.0 -> -1
  244. ctmx444 comparetotmag -80E-1 -9.0 -> -1
  245. ctmx445 comparetotmag -.8E+1 -9 -> -1
  246. ctmx446 comparetotmag -80E-1 -9 -> -1
  247. ctmx447 comparetotmag -8.0 -9E+0 -> -1
  248. ctmx448 comparetotmag -8.0 -90E-1 -> -1
  249. ctmx449 comparetotmag -8 -.9E+1 -> -1
  250. ctmx450 comparetotmag -8 -90E-1 -> -1
  251. -- testcases that subtract to lots of zeros at boundaries [pgr]
  252. precision: 40
  253. ctmx470 comparetotmag 123.4560000000000000E789 123.456E789 -> -1
  254. ctmx471 comparetotmag 123.456000000000000E-89 123.456E-89 -> -1
  255. ctmx472 comparetotmag 123.45600000000000E789 123.456E789 -> -1
  256. ctmx473 comparetotmag 123.4560000000000E-89 123.456E-89 -> -1
  257. ctmx474 comparetotmag 123.456000000000E789 123.456E789 -> -1
  258. ctmx475 comparetotmag 123.45600000000E-89 123.456E-89 -> -1
  259. ctmx476 comparetotmag 123.4560000000E789 123.456E789 -> -1
  260. ctmx477 comparetotmag 123.456000000E-89 123.456E-89 -> -1
  261. ctmx478 comparetotmag 123.45600000E789 123.456E789 -> -1
  262. ctmx479 comparetotmag 123.4560000E-89 123.456E-89 -> -1
  263. ctmx480 comparetotmag 123.456000E789 123.456E789 -> -1
  264. ctmx481 comparetotmag 123.45600E-89 123.456E-89 -> -1
  265. ctmx482 comparetotmag 123.4560E789 123.456E789 -> -1
  266. ctmx483 comparetotmag 123.456E-89 123.456E-89 -> 0
  267. ctmx484 comparetotmag 123.456E-89 123.4560000000000000E-89 -> 1
  268. ctmx485 comparetotmag 123.456E789 123.456000000000000E789 -> 1
  269. ctmx486 comparetotmag 123.456E-89 123.45600000000000E-89 -> 1
  270. ctmx487 comparetotmag 123.456E789 123.4560000000000E789 -> 1
  271. ctmx488 comparetotmag 123.456E-89 123.456000000000E-89 -> 1
  272. ctmx489 comparetotmag 123.456E789 123.45600000000E789 -> 1
  273. ctmx490 comparetotmag 123.456E-89 123.4560000000E-89 -> 1
  274. ctmx491 comparetotmag 123.456E789 123.456000000E789 -> 1
  275. ctmx492 comparetotmag 123.456E-89 123.45600000E-89 -> 1
  276. ctmx493 comparetotmag 123.456E789 123.4560000E789 -> 1
  277. ctmx494 comparetotmag 123.456E-89 123.456000E-89 -> 1
  278. ctmx495 comparetotmag 123.456E789 123.45600E789 -> 1
  279. ctmx496 comparetotmag 123.456E-89 123.4560E-89 -> 1
  280. ctmx497 comparetotmag 123.456E789 123.456E789 -> 0
  281. -- wide-ranging, around precision; signs equal
  282. precision: 9
  283. ctmx500 comparetotmag 1 1E-15 -> 1
  284. ctmx501 comparetotmag 1 1E-14 -> 1
  285. ctmx502 comparetotmag 1 1E-13 -> 1
  286. ctmx503 comparetotmag 1 1E-12 -> 1
  287. ctmx504 comparetotmag 1 1E-11 -> 1
  288. ctmx505 comparetotmag 1 1E-10 -> 1
  289. ctmx506 comparetotmag 1 1E-9 -> 1
  290. ctmx507 comparetotmag 1 1E-8 -> 1
  291. ctmx508 comparetotmag 1 1E-7 -> 1
  292. ctmx509 comparetotmag 1 1E-6 -> 1
  293. ctmx510 comparetotmag 1 1E-5 -> 1
  294. ctmx511 comparetotmag 1 1E-4 -> 1
  295. ctmx512 comparetotmag 1 1E-3 -> 1
  296. ctmx513 comparetotmag 1 1E-2 -> 1
  297. ctmx514 comparetotmag 1 1E-1 -> 1
  298. ctmx515 comparetotmag 1 1E-0 -> 0
  299. ctmx516 comparetotmag 1 1E+1 -> -1
  300. ctmx517 comparetotmag 1 1E+2 -> -1
  301. ctmx518 comparetotmag 1 1E+3 -> -1
  302. ctmx519 comparetotmag 1 1E+4 -> -1
  303. ctmx521 comparetotmag 1 1E+5 -> -1
  304. ctmx522 comparetotmag 1 1E+6 -> -1
  305. ctmx523 comparetotmag 1 1E+7 -> -1
  306. ctmx524 comparetotmag 1 1E+8 -> -1
  307. ctmx525 comparetotmag 1 1E+9 -> -1
  308. ctmx526 comparetotmag 1 1E+10 -> -1
  309. ctmx527 comparetotmag 1 1E+11 -> -1
  310. ctmx528 comparetotmag 1 1E+12 -> -1
  311. ctmx529 comparetotmag 1 1E+13 -> -1
  312. ctmx530 comparetotmag 1 1E+14 -> -1
  313. ctmx531 comparetotmag 1 1E+15 -> -1
  314. -- LR swap
  315. ctmx540 comparetotmag 1E-15 1 -> -1
  316. ctmx541 comparetotmag 1E-14 1 -> -1
  317. ctmx542 comparetotmag 1E-13 1 -> -1
  318. ctmx543 comparetotmag 1E-12 1 -> -1
  319. ctmx544 comparetotmag 1E-11 1 -> -1
  320. ctmx545 comparetotmag 1E-10 1 -> -1
  321. ctmx546 comparetotmag 1E-9 1 -> -1
  322. ctmx547 comparetotmag 1E-8 1 -> -1
  323. ctmx548 comparetotmag 1E-7 1 -> -1
  324. ctmx549 comparetotmag 1E-6 1 -> -1
  325. ctmx550 comparetotmag 1E-5 1 -> -1
  326. ctmx551 comparetotmag 1E-4 1 -> -1
  327. ctmx552 comparetotmag 1E-3 1 -> -1
  328. ctmx553 comparetotmag 1E-2 1 -> -1
  329. ctmx554 comparetotmag 1E-1 1 -> -1
  330. ctmx555 comparetotmag 1E-0 1 -> 0
  331. ctmx556 comparetotmag 1E+1 1 -> 1
  332. ctmx557 comparetotmag 1E+2 1 -> 1
  333. ctmx558 comparetotmag 1E+3 1 -> 1
  334. ctmx559 comparetotmag 1E+4 1 -> 1
  335. ctmx561 comparetotmag 1E+5 1 -> 1
  336. ctmx562 comparetotmag 1E+6 1 -> 1
  337. ctmx563 comparetotmag 1E+7 1 -> 1
  338. ctmx564 comparetotmag 1E+8 1 -> 1
  339. ctmx565 comparetotmag 1E+9 1 -> 1
  340. ctmx566 comparetotmag 1E+10 1 -> 1
  341. ctmx567 comparetotmag 1E+11 1 -> 1
  342. ctmx568 comparetotmag 1E+12 1 -> 1
  343. ctmx569 comparetotmag 1E+13 1 -> 1
  344. ctmx570 comparetotmag 1E+14 1 -> 1
  345. ctmx571 comparetotmag 1E+15 1 -> 1
  346. -- similar with an useful coefficient, one side only
  347. ctmx580 comparetotmag 0.000000987654321 1E-15 -> 1
  348. ctmx581 comparetotmag 0.000000987654321 1E-14 -> 1
  349. ctmx582 comparetotmag 0.000000987654321 1E-13 -> 1
  350. ctmx583 comparetotmag 0.000000987654321 1E-12 -> 1
  351. ctmx584 comparetotmag 0.000000987654321 1E-11 -> 1
  352. ctmx585 comparetotmag 0.000000987654321 1E-10 -> 1
  353. ctmx586 comparetotmag 0.000000987654321 1E-9 -> 1
  354. ctmx587 comparetotmag 0.000000987654321 1E-8 -> 1
  355. ctmx588 comparetotmag 0.000000987654321 1E-7 -> 1
  356. ctmx589 comparetotmag 0.000000987654321 1E-6 -> -1
  357. ctmx590 comparetotmag 0.000000987654321 1E-5 -> -1
  358. ctmx591 comparetotmag 0.000000987654321 1E-4 -> -1
  359. ctmx592 comparetotmag 0.000000987654321 1E-3 -> -1
  360. ctmx593 comparetotmag 0.000000987654321 1E-2 -> -1
  361. ctmx594 comparetotmag 0.000000987654321 1E-1 -> -1
  362. ctmx595 comparetotmag 0.000000987654321 1E-0 -> -1
  363. ctmx596 comparetotmag 0.000000987654321 1E+1 -> -1
  364. ctmx597 comparetotmag 0.000000987654321 1E+2 -> -1
  365. ctmx598 comparetotmag 0.000000987654321 1E+3 -> -1
  366. ctmx599 comparetotmag 0.000000987654321 1E+4 -> -1
  367. -- check some unit-y traps
  368. precision: 20
  369. ctmx600 comparetotmag 12 12.2345 -> -1
  370. ctmx601 comparetotmag 12.0 12.2345 -> -1
  371. ctmx602 comparetotmag 12.00 12.2345 -> -1
  372. ctmx603 comparetotmag 12.000 12.2345 -> -1
  373. ctmx604 comparetotmag 12.0000 12.2345 -> -1
  374. ctmx605 comparetotmag 12.00000 12.2345 -> -1
  375. ctmx606 comparetotmag 12.000000 12.2345 -> -1
  376. ctmx607 comparetotmag 12.0000000 12.2345 -> -1
  377. ctmx608 comparetotmag 12.00000000 12.2345 -> -1
  378. ctmx609 comparetotmag 12.000000000 12.2345 -> -1
  379. ctmx610 comparetotmag 12.1234 12 -> 1
  380. ctmx611 comparetotmag 12.1234 12.0 -> 1
  381. ctmx612 comparetotmag 12.1234 12.00 -> 1
  382. ctmx613 comparetotmag 12.1234 12.000 -> 1
  383. ctmx614 comparetotmag 12.1234 12.0000 -> 1
  384. ctmx615 comparetotmag 12.1234 12.00000 -> 1
  385. ctmx616 comparetotmag 12.1234 12.000000 -> 1
  386. ctmx617 comparetotmag 12.1234 12.0000000 -> 1
  387. ctmx618 comparetotmag 12.1234 12.00000000 -> 1
  388. ctmx619 comparetotmag 12.1234 12.000000000 -> 1
  389. ctmx620 comparetotmag -12 -12.2345 -> -1
  390. ctmx621 comparetotmag -12.0 -12.2345 -> -1
  391. ctmx622 comparetotmag -12.00 -12.2345 -> -1
  392. ctmx623 comparetotmag -12.000 -12.2345 -> -1
  393. ctmx624 comparetotmag -12.0000 -12.2345 -> -1
  394. ctmx625 comparetotmag -12.00000 -12.2345 -> -1
  395. ctmx626 comparetotmag -12.000000 -12.2345 -> -1
  396. ctmx627 comparetotmag -12.0000000 -12.2345 -> -1
  397. ctmx628 comparetotmag -12.00000000 -12.2345 -> -1
  398. ctmx629 comparetotmag -12.000000000 -12.2345 -> -1
  399. ctmx630 comparetotmag -12.1234 -12 -> 1
  400. ctmx631 comparetotmag -12.1234 -12.0 -> 1
  401. ctmx632 comparetotmag -12.1234 -12.00 -> 1
  402. ctmx633 comparetotmag -12.1234 -12.000 -> 1
  403. ctmx634 comparetotmag -12.1234 -12.0000 -> 1
  404. ctmx635 comparetotmag -12.1234 -12.00000 -> 1
  405. ctmx636 comparetotmag -12.1234 -12.000000 -> 1
  406. ctmx637 comparetotmag -12.1234 -12.0000000 -> 1
  407. ctmx638 comparetotmag -12.1234 -12.00000000 -> 1
  408. ctmx639 comparetotmag -12.1234 -12.000000000 -> 1
  409. precision: 9
  410. -- extended zeros
  411. ctmx640 comparetotmag 0 0 -> 0
  412. ctmx641 comparetotmag 0 -0 -> 0
  413. ctmx642 comparetotmag 0 -0.0 -> 1
  414. ctmx643 comparetotmag 0 0.0 -> 1
  415. ctmx644 comparetotmag -0 0 -> 0
  416. ctmx645 comparetotmag -0 -0 -> 0
  417. ctmx646 comparetotmag -0 -0.0 -> 1
  418. ctmx647 comparetotmag -0 0.0 -> 1
  419. ctmx648 comparetotmag 0.0 0 -> -1
  420. ctmx649 comparetotmag 0.0 -0 -> -1
  421. ctmx650 comparetotmag 0.0 -0.0 -> 0
  422. ctmx651 comparetotmag 0.0 0.0 -> 0
  423. ctmx652 comparetotmag -0.0 0 -> -1
  424. ctmx653 comparetotmag -0.0 -0 -> -1
  425. ctmx654 comparetotmag -0.0 -0.0 -> 0
  426. ctmx655 comparetotmag -0.0 0.0 -> 0
  427. ctmx656 comparetotmag -0E1 0.0 -> 1
  428. ctmx657 comparetotmag -0E2 0.0 -> 1
  429. ctmx658 comparetotmag 0E1 0.0 -> 1
  430. ctmx659 comparetotmag 0E2 0.0 -> 1
  431. ctmx660 comparetotmag -0E1 0 -> 1
  432. ctmx661 comparetotmag -0E2 0 -> 1
  433. ctmx662 comparetotmag 0E1 0 -> 1
  434. ctmx663 comparetotmag 0E2 0 -> 1
  435. ctmx664 comparetotmag -0E1 -0E1 -> 0
  436. ctmx665 comparetotmag -0E2 -0E1 -> 1
  437. ctmx666 comparetotmag 0E1 -0E1 -> 0
  438. ctmx667 comparetotmag 0E2 -0E1 -> 1
  439. ctmx668 comparetotmag -0E1 -0E2 -> -1
  440. ctmx669 comparetotmag -0E2 -0E2 -> 0
  441. ctmx670 comparetotmag 0E1 -0E2 -> -1
  442. ctmx671 comparetotmag 0E2 -0E2 -> 0
  443. ctmx672 comparetotmag -0E1 0E1 -> 0
  444. ctmx673 comparetotmag -0E2 0E1 -> 1
  445. ctmx674 comparetotmag 0E1 0E1 -> 0
  446. ctmx675 comparetotmag 0E2 0E1 -> 1
  447. ctmx676 comparetotmag -0E1 0E2 -> -1
  448. ctmx677 comparetotmag -0E2 0E2 -> 0
  449. ctmx678 comparetotmag 0E1 0E2 -> -1
  450. ctmx679 comparetotmag 0E2 0E2 -> 0
  451. -- trailing zeros; unit-y
  452. precision: 20
  453. ctmx680 comparetotmag 12 12 -> 0
  454. ctmx681 comparetotmag 12 12.0 -> 1
  455. ctmx682 comparetotmag 12 12.00 -> 1
  456. ctmx683 comparetotmag 12 12.000 -> 1
  457. ctmx684 comparetotmag 12 12.0000 -> 1
  458. ctmx685 comparetotmag 12 12.00000 -> 1
  459. ctmx686 comparetotmag 12 12.000000 -> 1
  460. ctmx687 comparetotmag 12 12.0000000 -> 1
  461. ctmx688 comparetotmag 12 12.00000000 -> 1
  462. ctmx689 comparetotmag 12 12.000000000 -> 1
  463. ctmx690 comparetotmag 12 12 -> 0
  464. ctmx691 comparetotmag 12.0 12 -> -1
  465. ctmx692 comparetotmag 12.00 12 -> -1
  466. ctmx693 comparetotmag 12.000 12 -> -1
  467. ctmx694 comparetotmag 12.0000 12 -> -1
  468. ctmx695 comparetotmag 12.00000 12 -> -1
  469. ctmx696 comparetotmag 12.000000 12 -> -1
  470. ctmx697 comparetotmag 12.0000000 12 -> -1
  471. ctmx698 comparetotmag 12.00000000 12 -> -1
  472. ctmx699 comparetotmag 12.000000000 12 -> -1
  473. -- long operand checks
  474. maxexponent: 999
  475. minexponent: -999
  476. precision: 9
  477. ctmx701 comparetotmag 12345678000 1 -> 1
  478. ctmx702 comparetotmag 1 12345678000 -> -1
  479. ctmx703 comparetotmag 1234567800 1 -> 1
  480. ctmx704 comparetotmag 1 1234567800 -> -1
  481. ctmx705 comparetotmag 1234567890 1 -> 1
  482. ctmx706 comparetotmag 1 1234567890 -> -1
  483. ctmx707 comparetotmag 1234567891 1 -> 1
  484. ctmx708 comparetotmag 1 1234567891 -> -1
  485. ctmx709 comparetotmag 12345678901 1 -> 1
  486. ctmx710 comparetotmag 1 12345678901 -> -1
  487. ctmx711 comparetotmag 1234567896 1 -> 1
  488. ctmx712 comparetotmag 1 1234567896 -> -1
  489. ctmx713 comparetotmag -1234567891 1 -> 1
  490. ctmx714 comparetotmag 1 -1234567891 -> -1
  491. ctmx715 comparetotmag -12345678901 1 -> 1
  492. ctmx716 comparetotmag 1 -12345678901 -> -1
  493. ctmx717 comparetotmag -1234567896 1 -> 1
  494. ctmx718 comparetotmag 1 -1234567896 -> -1
  495. precision: 15
  496. -- same with plenty of precision
  497. ctmx721 comparetotmag 12345678000 1 -> 1
  498. ctmx722 comparetotmag 1 12345678000 -> -1
  499. ctmx723 comparetotmag 1234567800 1 -> 1
  500. ctmx724 comparetotmag 1 1234567800 -> -1
  501. ctmx725 comparetotmag 1234567890 1 -> 1
  502. ctmx726 comparetotmag 1 1234567890 -> -1
  503. ctmx727 comparetotmag 1234567891 1 -> 1
  504. ctmx728 comparetotmag 1 1234567891 -> -1
  505. ctmx729 comparetotmag 12345678901 1 -> 1
  506. ctmx730 comparetotmag 1 12345678901 -> -1
  507. ctmx731 comparetotmag 1234567896 1 -> 1
  508. ctmx732 comparetotmag 1 1234567896 -> -1
  509. -- residue cases
  510. precision: 5
  511. ctmx740 comparetotmag 1 0.9999999 -> 1
  512. ctmx741 comparetotmag 1 0.999999 -> 1
  513. ctmx742 comparetotmag 1 0.99999 -> 1
  514. ctmx743 comparetotmag 1 1.0000 -> 1
  515. ctmx744 comparetotmag 1 1.00001 -> -1
  516. ctmx745 comparetotmag 1 1.000001 -> -1
  517. ctmx746 comparetotmag 1 1.0000001 -> -1
  518. ctmx750 comparetotmag 0.9999999 1 -> -1
  519. ctmx751 comparetotmag 0.999999 1 -> -1
  520. ctmx752 comparetotmag 0.99999 1 -> -1
  521. ctmx753 comparetotmag 1.0000 1 -> -1
  522. ctmx754 comparetotmag 1.00001 1 -> 1
  523. ctmx755 comparetotmag 1.000001 1 -> 1
  524. ctmx756 comparetotmag 1.0000001 1 -> 1
  525. -- a selection of longies
  526. ctmx760 comparetotmag -36852134.84194296250843579428931 -5830629.8347085025808756560357940 -> 1
  527. ctmx761 comparetotmag -36852134.84194296250843579428931 -36852134.84194296250843579428931 -> 0
  528. ctmx762 comparetotmag -36852134.94194296250843579428931 -36852134.84194296250843579428931 -> 1
  529. ctmx763 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  530. -- precisions above or below the difference should have no effect
  531. precision: 11
  532. ctmx764 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  533. precision: 10
  534. ctmx765 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  535. precision: 9
  536. ctmx766 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  537. precision: 8
  538. ctmx767 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  539. precision: 7
  540. ctmx768 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  541. precision: 6
  542. ctmx769 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  543. precision: 5
  544. ctmx770 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  545. precision: 4
  546. ctmx771 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  547. precision: 3
  548. ctmx772 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  549. precision: 2
  550. ctmx773 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  551. precision: 1
  552. ctmx774 comparetotmag -36852134.84194296250843579428931 -36852134.94194296250843579428931 -> -1
  553. -- Specials
  554. precision: 9
  555. ctmx780 comparetotmag Inf -Inf -> 0
  556. ctmx781 comparetotmag Inf -1000 -> 1
  557. ctmx782 comparetotmag Inf -1 -> 1
  558. ctmx783 comparetotmag Inf -0 -> 1
  559. ctmx784 comparetotmag Inf 0 -> 1
  560. ctmx785 comparetotmag Inf 1 -> 1
  561. ctmx786 comparetotmag Inf 1000 -> 1
  562. ctmx787 comparetotmag Inf Inf -> 0
  563. ctmx788 comparetotmag -1000 Inf -> -1
  564. ctmx789 comparetotmag -Inf Inf -> 0
  565. ctmx790 comparetotmag -1 Inf -> -1
  566. ctmx791 comparetotmag -0 Inf -> -1
  567. ctmx792 comparetotmag 0 Inf -> -1
  568. ctmx793 comparetotmag 1 Inf -> -1
  569. ctmx794 comparetotmag 1000 Inf -> -1
  570. ctmx795 comparetotmag Inf Inf -> 0
  571. ctmx800 comparetotmag -Inf -Inf -> 0
  572. ctmx801 comparetotmag -Inf -1000 -> 1
  573. ctmx802 comparetotmag -Inf -1 -> 1
  574. ctmx803 comparetotmag -Inf -0 -> 1
  575. ctmx804 comparetotmag -Inf 0 -> 1
  576. ctmx805 comparetotmag -Inf 1 -> 1
  577. ctmx806 comparetotmag -Inf 1000 -> 1
  578. ctmx807 comparetotmag -Inf Inf -> 0
  579. ctmx808 comparetotmag -Inf -Inf -> 0
  580. ctmx809 comparetotmag -1000 -Inf -> -1
  581. ctmx810 comparetotmag -1 -Inf -> -1
  582. ctmx811 comparetotmag -0 -Inf -> -1
  583. ctmx812 comparetotmag 0 -Inf -> -1
  584. ctmx813 comparetotmag 1 -Inf -> -1
  585. ctmx814 comparetotmag 1000 -Inf -> -1
  586. ctmx815 comparetotmag Inf -Inf -> 0
  587. ctmx821 comparetotmag NaN -Inf -> 1
  588. ctmx822 comparetotmag NaN -1000 -> 1
  589. ctmx823 comparetotmag NaN -1 -> 1
  590. ctmx824 comparetotmag NaN -0 -> 1
  591. ctmx825 comparetotmag NaN 0 -> 1
  592. ctmx826 comparetotmag NaN 1 -> 1
  593. ctmx827 comparetotmag NaN 1000 -> 1
  594. ctmx828 comparetotmag NaN Inf -> 1
  595. ctmx829 comparetotmag NaN NaN -> 0
  596. ctmx830 comparetotmag -Inf NaN -> -1
  597. ctmx831 comparetotmag -1000 NaN -> -1
  598. ctmx832 comparetotmag -1 NaN -> -1
  599. ctmx833 comparetotmag -0 NaN -> -1
  600. ctmx834 comparetotmag 0 NaN -> -1
  601. ctmx835 comparetotmag 1 NaN -> -1
  602. ctmx836 comparetotmag 1000 NaN -> -1
  603. ctmx837 comparetotmag Inf NaN -> -1
  604. ctmx838 comparetotmag -NaN -NaN -> 0
  605. ctmx839 comparetotmag +NaN -NaN -> 0
  606. ctmx840 comparetotmag -NaN +NaN -> 0
  607. ctmx841 comparetotmag sNaN -sNaN -> 0
  608. ctmx842 comparetotmag sNaN -NaN -> -1
  609. ctmx843 comparetotmag sNaN -Inf -> 1
  610. ctmx844 comparetotmag sNaN -1000 -> 1
  611. ctmx845 comparetotmag sNaN -1 -> 1
  612. ctmx846 comparetotmag sNaN -0 -> 1
  613. ctmx847 comparetotmag sNaN 0 -> 1
  614. ctmx848 comparetotmag sNaN 1 -> 1
  615. ctmx849 comparetotmag sNaN 1000 -> 1
  616. ctmx850 comparetotmag sNaN NaN -> -1
  617. ctmx851 comparetotmag sNaN sNaN -> 0
  618. ctmx852 comparetotmag -sNaN sNaN -> 0
  619. ctmx853 comparetotmag -NaN sNaN -> 1
  620. ctmx854 comparetotmag -Inf sNaN -> -1
  621. ctmx855 comparetotmag -1000 sNaN -> -1
  622. ctmx856 comparetotmag -1 sNaN -> -1
  623. ctmx857 comparetotmag -0 sNaN -> -1
  624. ctmx858 comparetotmag 0 sNaN -> -1
  625. ctmx859 comparetotmag 1 sNaN -> -1
  626. ctmx860 comparetotmag 1000 sNaN -> -1
  627. ctmx861 comparetotmag Inf sNaN -> -1
  628. ctmx862 comparetotmag NaN sNaN -> 1
  629. ctmx863 comparetotmag sNaN sNaN -> 0
  630. ctmx871 comparetotmag -sNaN -sNaN -> 0
  631. ctmx872 comparetotmag -sNaN -NaN -> -1
  632. ctmx873 comparetotmag -sNaN -Inf -> 1
  633. ctmx874 comparetotmag -sNaN -1000 -> 1
  634. ctmx875 comparetotmag -sNaN -1 -> 1
  635. ctmx876 comparetotmag -sNaN -0 -> 1
  636. ctmx877 comparetotmag -sNaN 0 -> 1
  637. ctmx878 comparetotmag -sNaN 1 -> 1
  638. ctmx879 comparetotmag -sNaN 1000 -> 1
  639. ctmx880 comparetotmag -sNaN NaN -> -1
  640. ctmx881 comparetotmag -sNaN sNaN -> 0
  641. ctmx882 comparetotmag -sNaN -sNaN -> 0
  642. ctmx883 comparetotmag -NaN -sNaN -> 1
  643. ctmx884 comparetotmag -Inf -sNaN -> -1
  644. ctmx885 comparetotmag -1000 -sNaN -> -1
  645. ctmx886 comparetotmag -1 -sNaN -> -1
  646. ctmx887 comparetotmag -0 -sNaN -> -1
  647. ctmx888 comparetotmag 0 -sNaN -> -1
  648. ctmx889 comparetotmag 1 -sNaN -> -1
  649. ctmx890 comparetotmag 1000 -sNaN -> -1
  650. ctmx891 comparetotmag Inf -sNaN -> -1
  651. ctmx892 comparetotmag NaN -sNaN -> 1
  652. ctmx893 comparetotmag sNaN -sNaN -> 0
  653. -- NaNs with payload
  654. ctmx960 comparetotmag NaN9 -Inf -> 1
  655. ctmx961 comparetotmag NaN8 999 -> 1
  656. ctmx962 comparetotmag NaN77 Inf -> 1
  657. ctmx963 comparetotmag -NaN67 NaN5 -> 1
  658. ctmx964 comparetotmag -Inf -NaN4 -> -1
  659. ctmx965 comparetotmag -999 -NaN33 -> -1
  660. ctmx966 comparetotmag Inf NaN2 -> -1
  661. ctmx970 comparetotmag -NaN41 -NaN42 -> -1
  662. ctmx971 comparetotmag +NaN41 -NaN42 -> -1
  663. ctmx972 comparetotmag -NaN41 +NaN42 -> -1
  664. ctmx973 comparetotmag +NaN41 +NaN42 -> -1
  665. ctmx974 comparetotmag -NaN42 -NaN01 -> 1
  666. ctmx975 comparetotmag +NaN42 -NaN01 -> 1
  667. ctmx976 comparetotmag -NaN42 +NaN01 -> 1
  668. ctmx977 comparetotmag +NaN42 +NaN01 -> 1
  669. ctmx980 comparetotmag -sNaN771 -sNaN772 -> -1
  670. ctmx981 comparetotmag +sNaN771 -sNaN772 -> -1
  671. ctmx982 comparetotmag -sNaN771 +sNaN772 -> -1
  672. ctmx983 comparetotmag +sNaN771 +sNaN772 -> -1
  673. ctmx984 comparetotmag -sNaN772 -sNaN771 -> 1
  674. ctmx985 comparetotmag +sNaN772 -sNaN771 -> 1
  675. ctmx986 comparetotmag -sNaN772 +sNaN771 -> 1
  676. ctmx987 comparetotmag +sNaN772 +sNaN771 -> 1
  677. ctmx991 comparetotmag -sNaN99 -Inf -> 1
  678. ctmx992 comparetotmag sNaN98 -11 -> 1
  679. ctmx993 comparetotmag sNaN97 NaN -> -1
  680. ctmx994 comparetotmag sNaN16 sNaN94 -> -1
  681. ctmx995 comparetotmag NaN85 sNaN83 -> 1
  682. ctmx996 comparetotmag -Inf sNaN92 -> -1
  683. ctmx997 comparetotmag 088 sNaN81 -> -1
  684. ctmx998 comparetotmag Inf sNaN90 -> -1
  685. ctmx999 comparetotmag NaN -sNaN89 -> 1
  686. -- overflow and underflow tests .. subnormal results now allowed
  687. maxExponent: 999999999
  688. minexponent: -999999999
  689. ctmx1080 comparetotmag +1.23456789012345E-0 9E+999999999 -> -1
  690. ctmx1081 comparetotmag 9E+999999999 +1.23456789012345E-0 -> 1
  691. ctmx1082 comparetotmag +0.100 9E-999999999 -> 1
  692. ctmx1083 comparetotmag 9E-999999999 +0.100 -> -1
  693. ctmx1085 comparetotmag -1.23456789012345E-0 9E+999999999 -> -1
  694. ctmx1086 comparetotmag 9E+999999999 -1.23456789012345E-0 -> 1
  695. ctmx1087 comparetotmag -0.100 9E-999999999 -> 1
  696. ctmx1088 comparetotmag 9E-999999999 -0.100 -> -1
  697. ctmx1089 comparetotmag 1e-599999999 1e-400000001 -> -1
  698. ctmx1090 comparetotmag 1e-599999999 1e-400000000 -> -1
  699. ctmx1091 comparetotmag 1e-600000000 1e-400000000 -> -1
  700. ctmx1092 comparetotmag 9e-999999998 0.01 -> -1
  701. ctmx1093 comparetotmag 9e-999999998 0.1 -> -1
  702. ctmx1094 comparetotmag 0.01 9e-999999998 -> 1
  703. ctmx1095 comparetotmag 1e599999999 1e400000001 -> 1
  704. ctmx1096 comparetotmag 1e599999999 1e400000000 -> 1
  705. ctmx1097 comparetotmag 1e600000000 1e400000000 -> 1
  706. ctmx1098 comparetotmag 9e999999998 100 -> 1
  707. ctmx1099 comparetotmag 9e999999998 10 -> 1
  708. ctmx1100 comparetotmag 100 9e999999998 -> -1
  709. -- signs
  710. ctmx1101 comparetotmag 1e+777777777 1e+411111111 -> 1
  711. ctmx1102 comparetotmag 1e+777777777 -1e+411111111 -> 1
  712. ctmx1103 comparetotmag -1e+777777777 1e+411111111 -> 1
  713. ctmx1104 comparetotmag -1e+777777777 -1e+411111111 -> 1
  714. ctmx1105 comparetotmag 1e-777777777 1e-411111111 -> -1
  715. ctmx1106 comparetotmag 1e-777777777 -1e-411111111 -> -1
  716. ctmx1107 comparetotmag -1e-777777777 1e-411111111 -> -1
  717. ctmx1108 comparetotmag -1e-777777777 -1e-411111111 -> -1
  718. -- spread zeros
  719. ctmx1110 comparetotmag 0E-383 0 -> -1
  720. ctmx1111 comparetotmag 0E-383 -0 -> -1
  721. ctmx1112 comparetotmag -0E-383 0 -> -1
  722. ctmx1113 comparetotmag -0E-383 -0 -> -1
  723. ctmx1114 comparetotmag 0E-383 0E+384 -> -1
  724. ctmx1115 comparetotmag 0E-383 -0E+384 -> -1
  725. ctmx1116 comparetotmag -0E-383 0E+384 -> -1
  726. ctmx1117 comparetotmag -0E-383 -0E+384 -> -1
  727. ctmx1118 comparetotmag 0 0E+384 -> -1
  728. ctmx1119 comparetotmag 0 -0E+384 -> -1
  729. ctmx1120 comparetotmag -0 0E+384 -> -1
  730. ctmx1121 comparetotmag -0 -0E+384 -> -1
  731. ctmx1130 comparetotmag 0E+384 0 -> 1
  732. ctmx1131 comparetotmag 0E+384 -0 -> 1
  733. ctmx1132 comparetotmag -0E+384 0 -> 1
  734. ctmx1133 comparetotmag -0E+384 -0 -> 1
  735. ctmx1134 comparetotmag 0E+384 0E-383 -> 1
  736. ctmx1135 comparetotmag 0E+384 -0E-383 -> 1
  737. ctmx1136 comparetotmag -0E+384 0E-383 -> 1
  738. ctmx1137 comparetotmag -0E+384 -0E-383 -> 1
  739. ctmx1138 comparetotmag 0 0E-383 -> 1
  740. ctmx1139 comparetotmag 0 -0E-383 -> 1
  741. ctmx1140 comparetotmag -0 0E-383 -> 1
  742. ctmx1141 comparetotmag -0 -0E-383 -> 1
  743. -- Null tests
  744. ctmx9990 comparetotmag 10 # -> NaN Invalid_operation
  745. ctmx9991 comparetotmag # 10 -> NaN Invalid_operation