subtract.decTest 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873
  1. ------------------------------------------------------------------------
  2. -- subtract.decTest -- decimal subtraction --
  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. -- [first group are 'quick confidence check']
  27. subx001 subtract 0 0 -> '0'
  28. subx002 subtract 1 1 -> '0'
  29. subx003 subtract 1 2 -> '-1'
  30. subx004 subtract 2 1 -> '1'
  31. subx005 subtract 2 2 -> '0'
  32. subx006 subtract 3 2 -> '1'
  33. subx007 subtract 2 3 -> '-1'
  34. subx011 subtract -0 0 -> '-0'
  35. subx012 subtract -1 1 -> '-2'
  36. subx013 subtract -1 2 -> '-3'
  37. subx014 subtract -2 1 -> '-3'
  38. subx015 subtract -2 2 -> '-4'
  39. subx016 subtract -3 2 -> '-5'
  40. subx017 subtract -2 3 -> '-5'
  41. subx021 subtract 0 -0 -> '0'
  42. subx022 subtract 1 -1 -> '2'
  43. subx023 subtract 1 -2 -> '3'
  44. subx024 subtract 2 -1 -> '3'
  45. subx025 subtract 2 -2 -> '4'
  46. subx026 subtract 3 -2 -> '5'
  47. subx027 subtract 2 -3 -> '5'
  48. subx030 subtract 11 1 -> 10
  49. subx031 subtract 10 1 -> 9
  50. subx032 subtract 9 1 -> 8
  51. subx033 subtract 1 1 -> 0
  52. subx034 subtract 0 1 -> -1
  53. subx035 subtract -1 1 -> -2
  54. subx036 subtract -9 1 -> -10
  55. subx037 subtract -10 1 -> -11
  56. subx038 subtract -11 1 -> -12
  57. subx040 subtract '5.75' '3.3' -> '2.45'
  58. subx041 subtract '5' '-3' -> '8'
  59. subx042 subtract '-5' '-3' -> '-2'
  60. subx043 subtract '-7' '2.5' -> '-9.5'
  61. subx044 subtract '0.7' '0.3' -> '0.4'
  62. subx045 subtract '1.3' '0.3' -> '1.0'
  63. subx046 subtract '1.25' '1.25' -> '0.00'
  64. subx050 subtract '1.23456789' '1.00000000' -> '0.23456789'
  65. subx051 subtract '1.23456789' '1.00000089' -> '0.23456700'
  66. subx052 subtract '0.5555555559' '0.0000000001' -> '0.555555556' Inexact Rounded
  67. subx053 subtract '0.5555555559' '0.0000000005' -> '0.555555555' Inexact Rounded
  68. subx054 subtract '0.4444444444' '0.1111111111' -> '0.333333333' Inexact Rounded
  69. subx055 subtract '1.0000000000' '0.00000001' -> '0.999999990' Rounded
  70. subx056 subtract '0.4444444444999' '0' -> '0.444444444' Inexact Rounded
  71. subx057 subtract '0.4444444445000' '0' -> '0.444444445' Inexact Rounded
  72. subx060 subtract '70' '10000e+9' -> '-1.00000000E+13' Inexact Rounded
  73. subx061 subtract '700' '10000e+9' -> '-1.00000000E+13' Inexact Rounded
  74. subx062 subtract '7000' '10000e+9' -> '-9.99999999E+12' Inexact Rounded
  75. subx063 subtract '70000' '10000e+9' -> '-9.99999993E+12' Rounded
  76. subx064 subtract '700000' '10000e+9' -> '-9.99999930E+12' Rounded
  77. -- symmetry:
  78. subx065 subtract '10000e+9' '70' -> '1.00000000E+13' Inexact Rounded
  79. subx066 subtract '10000e+9' '700' -> '1.00000000E+13' Inexact Rounded
  80. subx067 subtract '10000e+9' '7000' -> '9.99999999E+12' Inexact Rounded
  81. subx068 subtract '10000e+9' '70000' -> '9.99999993E+12' Rounded
  82. subx069 subtract '10000e+9' '700000' -> '9.99999930E+12' Rounded
  83. -- change precision
  84. subx080 subtract '10000e+9' '70000' -> '9.99999993E+12' Rounded
  85. precision: 6
  86. subx081 subtract '10000e+9' '70000' -> '1.00000E+13' Inexact Rounded
  87. precision: 9
  88. -- some of the next group are really constructor tests
  89. subx090 subtract '00.0' '0.0' -> '0.0'
  90. subx091 subtract '00.0' '0.00' -> '0.00'
  91. subx092 subtract '0.00' '00.0' -> '0.00'
  92. subx093 subtract '00.0' '0.00' -> '0.00'
  93. subx094 subtract '0.00' '00.0' -> '0.00'
  94. subx095 subtract '3' '.3' -> '2.7'
  95. subx096 subtract '3.' '.3' -> '2.7'
  96. subx097 subtract '3.0' '.3' -> '2.7'
  97. subx098 subtract '3.00' '.3' -> '2.70'
  98. subx099 subtract '3' '3' -> '0'
  99. subx100 subtract '3' '+3' -> '0'
  100. subx101 subtract '3' '-3' -> '6'
  101. subx102 subtract '3' '0.3' -> '2.7'
  102. subx103 subtract '3.' '0.3' -> '2.7'
  103. subx104 subtract '3.0' '0.3' -> '2.7'
  104. subx105 subtract '3.00' '0.3' -> '2.70'
  105. subx106 subtract '3' '3.0' -> '0.0'
  106. subx107 subtract '3' '+3.0' -> '0.0'
  107. subx108 subtract '3' '-3.0' -> '6.0'
  108. -- the above all from add; massaged and extended. Now some new ones...
  109. -- [particularly important for comparisons]
  110. -- NB: -xE-8 below were non-exponents pre-ANSI X3-274, and -1E-7 or 0E-7
  111. -- with input rounding.
  112. subx120 subtract '10.23456784' '10.23456789' -> '-5E-8'
  113. subx121 subtract '10.23456785' '10.23456789' -> '-4E-8'
  114. subx122 subtract '10.23456786' '10.23456789' -> '-3E-8'
  115. subx123 subtract '10.23456787' '10.23456789' -> '-2E-8'
  116. subx124 subtract '10.23456788' '10.23456789' -> '-1E-8'
  117. subx125 subtract '10.23456789' '10.23456789' -> '0E-8'
  118. subx126 subtract '10.23456790' '10.23456789' -> '1E-8'
  119. subx127 subtract '10.23456791' '10.23456789' -> '2E-8'
  120. subx128 subtract '10.23456792' '10.23456789' -> '3E-8'
  121. subx129 subtract '10.23456793' '10.23456789' -> '4E-8'
  122. subx130 subtract '10.23456794' '10.23456789' -> '5E-8'
  123. subx131 subtract '10.23456781' '10.23456786' -> '-5E-8'
  124. subx132 subtract '10.23456782' '10.23456786' -> '-4E-8'
  125. subx133 subtract '10.23456783' '10.23456786' -> '-3E-8'
  126. subx134 subtract '10.23456784' '10.23456786' -> '-2E-8'
  127. subx135 subtract '10.23456785' '10.23456786' -> '-1E-8'
  128. subx136 subtract '10.23456786' '10.23456786' -> '0E-8'
  129. subx137 subtract '10.23456787' '10.23456786' -> '1E-8'
  130. subx138 subtract '10.23456788' '10.23456786' -> '2E-8'
  131. subx139 subtract '10.23456789' '10.23456786' -> '3E-8'
  132. subx140 subtract '10.23456790' '10.23456786' -> '4E-8'
  133. subx141 subtract '10.23456791' '10.23456786' -> '5E-8'
  134. subx142 subtract '1' '0.999999999' -> '1E-9'
  135. subx143 subtract '0.999999999' '1' -> '-1E-9'
  136. subx144 subtract '-10.23456780' '-10.23456786' -> '6E-8'
  137. subx145 subtract '-10.23456790' '-10.23456786' -> '-4E-8'
  138. subx146 subtract '-10.23456791' '-10.23456786' -> '-5E-8'
  139. precision: 3
  140. subx150 subtract '12345678900000' '9999999999999' -> 2.35E+12 Inexact Rounded
  141. subx151 subtract '9999999999999' '12345678900000' -> -2.35E+12 Inexact Rounded
  142. precision: 6
  143. subx152 subtract '12345678900000' '9999999999999' -> 2.34568E+12 Inexact Rounded
  144. subx153 subtract '9999999999999' '12345678900000' -> -2.34568E+12 Inexact Rounded
  145. precision: 9
  146. subx154 subtract '12345678900000' '9999999999999' -> 2.34567890E+12 Inexact Rounded
  147. subx155 subtract '9999999999999' '12345678900000' -> -2.34567890E+12 Inexact Rounded
  148. precision: 12
  149. subx156 subtract '12345678900000' '9999999999999' -> 2.34567890000E+12 Inexact Rounded
  150. subx157 subtract '9999999999999' '12345678900000' -> -2.34567890000E+12 Inexact Rounded
  151. precision: 15
  152. subx158 subtract '12345678900000' '9999999999999' -> 2345678900001
  153. subx159 subtract '9999999999999' '12345678900000' -> -2345678900001
  154. precision: 9
  155. -- additional scaled arithmetic tests [0.97 problem]
  156. subx160 subtract '0' '.1' -> '-0.1'
  157. subx161 subtract '00' '.97983' -> '-0.97983'
  158. subx162 subtract '0' '.9' -> '-0.9'
  159. subx163 subtract '0' '0.102' -> '-0.102'
  160. subx164 subtract '0' '.4' -> '-0.4'
  161. subx165 subtract '0' '.307' -> '-0.307'
  162. subx166 subtract '0' '.43822' -> '-0.43822'
  163. subx167 subtract '0' '.911' -> '-0.911'
  164. subx168 subtract '.0' '.02' -> '-0.02'
  165. subx169 subtract '00' '.392' -> '-0.392'
  166. subx170 subtract '0' '.26' -> '-0.26'
  167. subx171 subtract '0' '0.51' -> '-0.51'
  168. subx172 subtract '0' '.2234' -> '-0.2234'
  169. subx173 subtract '0' '.2' -> '-0.2'
  170. subx174 subtract '.0' '.0008' -> '-0.0008'
  171. -- 0. on left
  172. subx180 subtract '0.0' '-.1' -> '0.1'
  173. subx181 subtract '0.00' '-.97983' -> '0.97983'
  174. subx182 subtract '0.0' '-.9' -> '0.9'
  175. subx183 subtract '0.0' '-0.102' -> '0.102'
  176. subx184 subtract '0.0' '-.4' -> '0.4'
  177. subx185 subtract '0.0' '-.307' -> '0.307'
  178. subx186 subtract '0.0' '-.43822' -> '0.43822'
  179. subx187 subtract '0.0' '-.911' -> '0.911'
  180. subx188 subtract '0.0' '-.02' -> '0.02'
  181. subx189 subtract '0.00' '-.392' -> '0.392'
  182. subx190 subtract '0.0' '-.26' -> '0.26'
  183. subx191 subtract '0.0' '-0.51' -> '0.51'
  184. subx192 subtract '0.0' '-.2234' -> '0.2234'
  185. subx193 subtract '0.0' '-.2' -> '0.2'
  186. subx194 subtract '0.0' '-.0008' -> '0.0008'
  187. -- negatives of same
  188. subx200 subtract '0' '-.1' -> '0.1'
  189. subx201 subtract '00' '-.97983' -> '0.97983'
  190. subx202 subtract '0' '-.9' -> '0.9'
  191. subx203 subtract '0' '-0.102' -> '0.102'
  192. subx204 subtract '0' '-.4' -> '0.4'
  193. subx205 subtract '0' '-.307' -> '0.307'
  194. subx206 subtract '0' '-.43822' -> '0.43822'
  195. subx207 subtract '0' '-.911' -> '0.911'
  196. subx208 subtract '.0' '-.02' -> '0.02'
  197. subx209 subtract '00' '-.392' -> '0.392'
  198. subx210 subtract '0' '-.26' -> '0.26'
  199. subx211 subtract '0' '-0.51' -> '0.51'
  200. subx212 subtract '0' '-.2234' -> '0.2234'
  201. subx213 subtract '0' '-.2' -> '0.2'
  202. subx214 subtract '.0' '-.0008' -> '0.0008'
  203. -- more fixed, LHS swaps [really the same as testcases under add]
  204. subx220 subtract '-56267E-12' 0 -> '-5.6267E-8'
  205. subx221 subtract '-56267E-11' 0 -> '-5.6267E-7'
  206. subx222 subtract '-56267E-10' 0 -> '-0.0000056267'
  207. subx223 subtract '-56267E-9' 0 -> '-0.000056267'
  208. subx224 subtract '-56267E-8' 0 -> '-0.00056267'
  209. subx225 subtract '-56267E-7' 0 -> '-0.0056267'
  210. subx226 subtract '-56267E-6' 0 -> '-0.056267'
  211. subx227 subtract '-56267E-5' 0 -> '-0.56267'
  212. subx228 subtract '-56267E-2' 0 -> '-562.67'
  213. subx229 subtract '-56267E-1' 0 -> '-5626.7'
  214. subx230 subtract '-56267E-0' 0 -> '-56267'
  215. -- symmetry ...
  216. subx240 subtract 0 '-56267E-12' -> '5.6267E-8'
  217. subx241 subtract 0 '-56267E-11' -> '5.6267E-7'
  218. subx242 subtract 0 '-56267E-10' -> '0.0000056267'
  219. subx243 subtract 0 '-56267E-9' -> '0.000056267'
  220. subx244 subtract 0 '-56267E-8' -> '0.00056267'
  221. subx245 subtract 0 '-56267E-7' -> '0.0056267'
  222. subx246 subtract 0 '-56267E-6' -> '0.056267'
  223. subx247 subtract 0 '-56267E-5' -> '0.56267'
  224. subx248 subtract 0 '-56267E-2' -> '562.67'
  225. subx249 subtract 0 '-56267E-1' -> '5626.7'
  226. subx250 subtract 0 '-56267E-0' -> '56267'
  227. -- now some more from the 'new' add
  228. precision: 9
  229. subx301 subtract '1.23456789' '1.00000000' -> '0.23456789'
  230. subx302 subtract '1.23456789' '1.00000011' -> '0.23456778'
  231. subx311 subtract '0.4444444444' '0.5555555555' -> '-0.111111111' Inexact Rounded
  232. subx312 subtract '0.4444444440' '0.5555555555' -> '-0.111111112' Inexact Rounded
  233. subx313 subtract '0.4444444444' '0.5555555550' -> '-0.111111111' Inexact Rounded
  234. subx314 subtract '0.44444444449' '0' -> '0.444444444' Inexact Rounded
  235. subx315 subtract '0.444444444499' '0' -> '0.444444444' Inexact Rounded
  236. subx316 subtract '0.4444444444999' '0' -> '0.444444444' Inexact Rounded
  237. subx317 subtract '0.4444444445000' '0' -> '0.444444445' Inexact Rounded
  238. subx318 subtract '0.4444444445001' '0' -> '0.444444445' Inexact Rounded
  239. subx319 subtract '0.444444444501' '0' -> '0.444444445' Inexact Rounded
  240. subx320 subtract '0.44444444451' '0' -> '0.444444445' Inexact Rounded
  241. -- some carrying effects
  242. subx321 subtract '0.9998' '0.0000' -> '0.9998'
  243. subx322 subtract '0.9998' '0.0001' -> '0.9997'
  244. subx323 subtract '0.9998' '0.0002' -> '0.9996'
  245. subx324 subtract '0.9998' '0.0003' -> '0.9995'
  246. subx325 subtract '0.9998' '-0.0000' -> '0.9998'
  247. subx326 subtract '0.9998' '-0.0001' -> '0.9999'
  248. subx327 subtract '0.9998' '-0.0002' -> '1.0000'
  249. subx328 subtract '0.9998' '-0.0003' -> '1.0001'
  250. subx330 subtract '70' '10000e+9' -> '-1.00000000E+13' Inexact Rounded
  251. subx331 subtract '700' '10000e+9' -> '-1.00000000E+13' Inexact Rounded
  252. subx332 subtract '7000' '10000e+9' -> '-9.99999999E+12' Inexact Rounded
  253. subx333 subtract '70000' '10000e+9' -> '-9.99999993E+12' Rounded
  254. subx334 subtract '700000' '10000e+9' -> '-9.99999930E+12' Rounded
  255. subx335 subtract '7000000' '10000e+9' -> '-9.99999300E+12' Rounded
  256. -- symmetry:
  257. subx340 subtract '10000e+9' '70' -> '1.00000000E+13' Inexact Rounded
  258. subx341 subtract '10000e+9' '700' -> '1.00000000E+13' Inexact Rounded
  259. subx342 subtract '10000e+9' '7000' -> '9.99999999E+12' Inexact Rounded
  260. subx343 subtract '10000e+9' '70000' -> '9.99999993E+12' Rounded
  261. subx344 subtract '10000e+9' '700000' -> '9.99999930E+12' Rounded
  262. subx345 subtract '10000e+9' '7000000' -> '9.99999300E+12' Rounded
  263. -- same, higher precision
  264. precision: 15
  265. subx346 subtract '10000e+9' '7' -> '9999999999993'
  266. subx347 subtract '10000e+9' '70' -> '9999999999930'
  267. subx348 subtract '10000e+9' '700' -> '9999999999300'
  268. subx349 subtract '10000e+9' '7000' -> '9999999993000'
  269. subx350 subtract '10000e+9' '70000' -> '9999999930000'
  270. subx351 subtract '10000e+9' '700000' -> '9999999300000'
  271. subx352 subtract '7' '10000e+9' -> '-9999999999993'
  272. subx353 subtract '70' '10000e+9' -> '-9999999999930'
  273. subx354 subtract '700' '10000e+9' -> '-9999999999300'
  274. subx355 subtract '7000' '10000e+9' -> '-9999999993000'
  275. subx356 subtract '70000' '10000e+9' -> '-9999999930000'
  276. subx357 subtract '700000' '10000e+9' -> '-9999999300000'
  277. -- zero preservation
  278. precision: 6
  279. subx360 subtract '10000e+9' '70000' -> '1.00000E+13' Inexact Rounded
  280. subx361 subtract 1 '0.0001' -> '0.9999'
  281. subx362 subtract 1 '0.00001' -> '0.99999'
  282. subx363 subtract 1 '0.000001' -> '0.999999'
  283. subx364 subtract 1 '0.0000001' -> '1.00000' Inexact Rounded
  284. subx365 subtract 1 '0.00000001' -> '1.00000' Inexact Rounded
  285. -- some funny zeros [in case of bad signum]
  286. subx370 subtract 1 0 -> 1
  287. subx371 subtract 1 0. -> 1
  288. subx372 subtract 1 .0 -> 1.0
  289. subx373 subtract 1 0.0 -> 1.0
  290. subx374 subtract 0 1 -> -1
  291. subx375 subtract 0. 1 -> -1
  292. subx376 subtract .0 1 -> -1.0
  293. subx377 subtract 0.0 1 -> -1.0
  294. precision: 9
  295. -- leading 0 digit before round
  296. subx910 subtract -103519362 -51897955.3 -> -51621406.7
  297. subx911 subtract 159579.444 89827.5229 -> 69751.9211
  298. subx920 subtract 333.123456 33.1234566 -> 299.999999 Inexact Rounded
  299. subx921 subtract 333.123456 33.1234565 -> 300.000000 Inexact Rounded
  300. subx922 subtract 133.123456 33.1234565 -> 99.9999995
  301. subx923 subtract 133.123456 33.1234564 -> 99.9999996
  302. subx924 subtract 133.123456 33.1234540 -> 100.000002 Rounded
  303. subx925 subtract 133.123456 43.1234560 -> 90.0000000
  304. subx926 subtract 133.123456 43.1234561 -> 89.9999999
  305. subx927 subtract 133.123456 43.1234566 -> 89.9999994
  306. subx928 subtract 101.123456 91.1234566 -> 9.9999994
  307. subx929 subtract 101.123456 99.1234566 -> 1.9999994
  308. -- more of the same; probe for cluster boundary problems
  309. precision: 1
  310. subx930 subtract 11 2 -> 9
  311. precision: 2
  312. subx932 subtract 101 2 -> 99
  313. precision: 3
  314. subx934 subtract 101 2.1 -> 98.9
  315. subx935 subtract 101 92.01 -> 8.99
  316. precision: 4
  317. subx936 subtract 101 2.01 -> 98.99
  318. subx937 subtract 101 92.01 -> 8.99
  319. subx938 subtract 101 92.006 -> 8.994
  320. precision: 5
  321. subx939 subtract 101 2.001 -> 98.999
  322. subx940 subtract 101 92.001 -> 8.999
  323. subx941 subtract 101 92.0006 -> 8.9994
  324. precision: 6
  325. subx942 subtract 101 2.0001 -> 98.9999
  326. subx943 subtract 101 92.0001 -> 8.9999
  327. subx944 subtract 101 92.00006 -> 8.99994
  328. precision: 7
  329. subx945 subtract 101 2.00001 -> 98.99999
  330. subx946 subtract 101 92.00001 -> 8.99999
  331. subx947 subtract 101 92.000006 -> 8.999994
  332. precision: 8
  333. subx948 subtract 101 2.000001 -> 98.999999
  334. subx949 subtract 101 92.000001 -> 8.999999
  335. subx950 subtract 101 92.0000006 -> 8.9999994
  336. precision: 9
  337. subx951 subtract 101 2.0000001 -> 98.9999999
  338. subx952 subtract 101 92.0000001 -> 8.9999999
  339. subx953 subtract 101 92.00000006 -> 8.99999994
  340. precision: 9
  341. -- more LHS swaps [were fixed]
  342. subx390 subtract '-56267E-10' 0 -> '-0.0000056267'
  343. subx391 subtract '-56267E-6' 0 -> '-0.056267'
  344. subx392 subtract '-56267E-5' 0 -> '-0.56267'
  345. subx393 subtract '-56267E-4' 0 -> '-5.6267'
  346. subx394 subtract '-56267E-3' 0 -> '-56.267'
  347. subx395 subtract '-56267E-2' 0 -> '-562.67'
  348. subx396 subtract '-56267E-1' 0 -> '-5626.7'
  349. subx397 subtract '-56267E-0' 0 -> '-56267'
  350. subx398 subtract '-5E-10' 0 -> '-5E-10'
  351. subx399 subtract '-5E-7' 0 -> '-5E-7'
  352. subx400 subtract '-5E-6' 0 -> '-0.000005'
  353. subx401 subtract '-5E-5' 0 -> '-0.00005'
  354. subx402 subtract '-5E-4' 0 -> '-0.0005'
  355. subx403 subtract '-5E-1' 0 -> '-0.5'
  356. subx404 subtract '-5E0' 0 -> '-5'
  357. subx405 subtract '-5E1' 0 -> '-50'
  358. subx406 subtract '-5E5' 0 -> '-500000'
  359. subx407 subtract '-5E8' 0 -> '-500000000'
  360. subx408 subtract '-5E9' 0 -> '-5.00000000E+9' Rounded
  361. subx409 subtract '-5E10' 0 -> '-5.00000000E+10' Rounded
  362. subx410 subtract '-5E11' 0 -> '-5.00000000E+11' Rounded
  363. subx411 subtract '-5E100' 0 -> '-5.00000000E+100' Rounded
  364. -- more RHS swaps [were fixed]
  365. subx420 subtract 0 '-56267E-10' -> '0.0000056267'
  366. subx421 subtract 0 '-56267E-6' -> '0.056267'
  367. subx422 subtract 0 '-56267E-5' -> '0.56267'
  368. subx423 subtract 0 '-56267E-4' -> '5.6267'
  369. subx424 subtract 0 '-56267E-3' -> '56.267'
  370. subx425 subtract 0 '-56267E-2' -> '562.67'
  371. subx426 subtract 0 '-56267E-1' -> '5626.7'
  372. subx427 subtract 0 '-56267E-0' -> '56267'
  373. subx428 subtract 0 '-5E-10' -> '5E-10'
  374. subx429 subtract 0 '-5E-7' -> '5E-7'
  375. subx430 subtract 0 '-5E-6' -> '0.000005'
  376. subx431 subtract 0 '-5E-5' -> '0.00005'
  377. subx432 subtract 0 '-5E-4' -> '0.0005'
  378. subx433 subtract 0 '-5E-1' -> '0.5'
  379. subx434 subtract 0 '-5E0' -> '5'
  380. subx435 subtract 0 '-5E1' -> '50'
  381. subx436 subtract 0 '-5E5' -> '500000'
  382. subx437 subtract 0 '-5E8' -> '500000000'
  383. subx438 subtract 0 '-5E9' -> '5.00000000E+9' Rounded
  384. subx439 subtract 0 '-5E10' -> '5.00000000E+10' Rounded
  385. subx440 subtract 0 '-5E11' -> '5.00000000E+11' Rounded
  386. subx441 subtract 0 '-5E100' -> '5.00000000E+100' Rounded
  387. -- try borderline precision, with carries, etc.
  388. precision: 15
  389. subx461 subtract '1E+12' '1' -> '999999999999'
  390. subx462 subtract '1E+12' '-1.11' -> '1000000000001.11'
  391. subx463 subtract '1.11' '-1E+12' -> '1000000000001.11'
  392. subx464 subtract '-1' '-1E+12' -> '999999999999'
  393. subx465 subtract '7E+12' '1' -> '6999999999999'
  394. subx466 subtract '7E+12' '-1.11' -> '7000000000001.11'
  395. subx467 subtract '1.11' '-7E+12' -> '7000000000001.11'
  396. subx468 subtract '-1' '-7E+12' -> '6999999999999'
  397. -- 123456789012345 123456789012345 1 23456789012345
  398. subx470 subtract '0.444444444444444' '-0.555555555555563' -> '1.00000000000001' Inexact Rounded
  399. subx471 subtract '0.444444444444444' '-0.555555555555562' -> '1.00000000000001' Inexact Rounded
  400. subx472 subtract '0.444444444444444' '-0.555555555555561' -> '1.00000000000001' Inexact Rounded
  401. subx473 subtract '0.444444444444444' '-0.555555555555560' -> '1.00000000000000' Inexact Rounded
  402. subx474 subtract '0.444444444444444' '-0.555555555555559' -> '1.00000000000000' Inexact Rounded
  403. subx475 subtract '0.444444444444444' '-0.555555555555558' -> '1.00000000000000' Inexact Rounded
  404. subx476 subtract '0.444444444444444' '-0.555555555555557' -> '1.00000000000000' Inexact Rounded
  405. subx477 subtract '0.444444444444444' '-0.555555555555556' -> '1.00000000000000' Rounded
  406. subx478 subtract '0.444444444444444' '-0.555555555555555' -> '0.999999999999999'
  407. subx479 subtract '0.444444444444444' '-0.555555555555554' -> '0.999999999999998'
  408. subx480 subtract '0.444444444444444' '-0.555555555555553' -> '0.999999999999997'
  409. subx481 subtract '0.444444444444444' '-0.555555555555552' -> '0.999999999999996'
  410. subx482 subtract '0.444444444444444' '-0.555555555555551' -> '0.999999999999995'
  411. subx483 subtract '0.444444444444444' '-0.555555555555550' -> '0.999999999999994'
  412. -- and some more, including residue effects and different roundings
  413. precision: 9
  414. rounding: half_up
  415. subx500 subtract '123456789' 0 -> '123456789'
  416. subx501 subtract '123456789' 0.000000001 -> '123456789' Inexact Rounded
  417. subx502 subtract '123456789' 0.000001 -> '123456789' Inexact Rounded
  418. subx503 subtract '123456789' 0.1 -> '123456789' Inexact Rounded
  419. subx504 subtract '123456789' 0.4 -> '123456789' Inexact Rounded
  420. subx505 subtract '123456789' 0.49 -> '123456789' Inexact Rounded
  421. subx506 subtract '123456789' 0.499999 -> '123456789' Inexact Rounded
  422. subx507 subtract '123456789' 0.499999999 -> '123456789' Inexact Rounded
  423. subx508 subtract '123456789' 0.5 -> '123456789' Inexact Rounded
  424. subx509 subtract '123456789' 0.500000001 -> '123456788' Inexact Rounded
  425. subx510 subtract '123456789' 0.500001 -> '123456788' Inexact Rounded
  426. subx511 subtract '123456789' 0.51 -> '123456788' Inexact Rounded
  427. subx512 subtract '123456789' 0.6 -> '123456788' Inexact Rounded
  428. subx513 subtract '123456789' 0.9 -> '123456788' Inexact Rounded
  429. subx514 subtract '123456789' 0.99999 -> '123456788' Inexact Rounded
  430. subx515 subtract '123456789' 0.999999999 -> '123456788' Inexact Rounded
  431. subx516 subtract '123456789' 1 -> '123456788'
  432. subx517 subtract '123456789' 1.000000001 -> '123456788' Inexact Rounded
  433. subx518 subtract '123456789' 1.00001 -> '123456788' Inexact Rounded
  434. subx519 subtract '123456789' 1.1 -> '123456788' Inexact Rounded
  435. rounding: half_even
  436. subx520 subtract '123456789' 0 -> '123456789'
  437. subx521 subtract '123456789' 0.000000001 -> '123456789' Inexact Rounded
  438. subx522 subtract '123456789' 0.000001 -> '123456789' Inexact Rounded
  439. subx523 subtract '123456789' 0.1 -> '123456789' Inexact Rounded
  440. subx524 subtract '123456789' 0.4 -> '123456789' Inexact Rounded
  441. subx525 subtract '123456789' 0.49 -> '123456789' Inexact Rounded
  442. subx526 subtract '123456789' 0.499999 -> '123456789' Inexact Rounded
  443. subx527 subtract '123456789' 0.499999999 -> '123456789' Inexact Rounded
  444. subx528 subtract '123456789' 0.5 -> '123456788' Inexact Rounded
  445. subx529 subtract '123456789' 0.500000001 -> '123456788' Inexact Rounded
  446. subx530 subtract '123456789' 0.500001 -> '123456788' Inexact Rounded
  447. subx531 subtract '123456789' 0.51 -> '123456788' Inexact Rounded
  448. subx532 subtract '123456789' 0.6 -> '123456788' Inexact Rounded
  449. subx533 subtract '123456789' 0.9 -> '123456788' Inexact Rounded
  450. subx534 subtract '123456789' 0.99999 -> '123456788' Inexact Rounded
  451. subx535 subtract '123456789' 0.999999999 -> '123456788' Inexact Rounded
  452. subx536 subtract '123456789' 1 -> '123456788'
  453. subx537 subtract '123456789' 1.00000001 -> '123456788' Inexact Rounded
  454. subx538 subtract '123456789' 1.00001 -> '123456788' Inexact Rounded
  455. subx539 subtract '123456789' 1.1 -> '123456788' Inexact Rounded
  456. -- critical few with even bottom digit...
  457. subx540 subtract '123456788' 0.499999999 -> '123456788' Inexact Rounded
  458. subx541 subtract '123456788' 0.5 -> '123456788' Inexact Rounded
  459. subx542 subtract '123456788' 0.500000001 -> '123456787' Inexact Rounded
  460. rounding: down
  461. subx550 subtract '123456789' 0 -> '123456789'
  462. subx551 subtract '123456789' 0.000000001 -> '123456788' Inexact Rounded
  463. subx552 subtract '123456789' 0.000001 -> '123456788' Inexact Rounded
  464. subx553 subtract '123456789' 0.1 -> '123456788' Inexact Rounded
  465. subx554 subtract '123456789' 0.4 -> '123456788' Inexact Rounded
  466. subx555 subtract '123456789' 0.49 -> '123456788' Inexact Rounded
  467. subx556 subtract '123456789' 0.499999 -> '123456788' Inexact Rounded
  468. subx557 subtract '123456789' 0.499999999 -> '123456788' Inexact Rounded
  469. subx558 subtract '123456789' 0.5 -> '123456788' Inexact Rounded
  470. subx559 subtract '123456789' 0.500000001 -> '123456788' Inexact Rounded
  471. subx560 subtract '123456789' 0.500001 -> '123456788' Inexact Rounded
  472. subx561 subtract '123456789' 0.51 -> '123456788' Inexact Rounded
  473. subx562 subtract '123456789' 0.6 -> '123456788' Inexact Rounded
  474. subx563 subtract '123456789' 0.9 -> '123456788' Inexact Rounded
  475. subx564 subtract '123456789' 0.99999 -> '123456788' Inexact Rounded
  476. subx565 subtract '123456789' 0.999999999 -> '123456788' Inexact Rounded
  477. subx566 subtract '123456789' 1 -> '123456788'
  478. subx567 subtract '123456789' 1.00000001 -> '123456787' Inexact Rounded
  479. subx568 subtract '123456789' 1.00001 -> '123456787' Inexact Rounded
  480. subx569 subtract '123456789' 1.1 -> '123456787' Inexact Rounded
  481. -- symmetry...
  482. rounding: half_up
  483. subx600 subtract 0 '123456789' -> '-123456789'
  484. subx601 subtract 0.000000001 '123456789' -> '-123456789' Inexact Rounded
  485. subx602 subtract 0.000001 '123456789' -> '-123456789' Inexact Rounded
  486. subx603 subtract 0.1 '123456789' -> '-123456789' Inexact Rounded
  487. subx604 subtract 0.4 '123456789' -> '-123456789' Inexact Rounded
  488. subx605 subtract 0.49 '123456789' -> '-123456789' Inexact Rounded
  489. subx606 subtract 0.499999 '123456789' -> '-123456789' Inexact Rounded
  490. subx607 subtract 0.499999999 '123456789' -> '-123456789' Inexact Rounded
  491. subx608 subtract 0.5 '123456789' -> '-123456789' Inexact Rounded
  492. subx609 subtract 0.500000001 '123456789' -> '-123456788' Inexact Rounded
  493. subx610 subtract 0.500001 '123456789' -> '-123456788' Inexact Rounded
  494. subx611 subtract 0.51 '123456789' -> '-123456788' Inexact Rounded
  495. subx612 subtract 0.6 '123456789' -> '-123456788' Inexact Rounded
  496. subx613 subtract 0.9 '123456789' -> '-123456788' Inexact Rounded
  497. subx614 subtract 0.99999 '123456789' -> '-123456788' Inexact Rounded
  498. subx615 subtract 0.999999999 '123456789' -> '-123456788' Inexact Rounded
  499. subx616 subtract 1 '123456789' -> '-123456788'
  500. subx617 subtract 1.000000001 '123456789' -> '-123456788' Inexact Rounded
  501. subx618 subtract 1.00001 '123456789' -> '-123456788' Inexact Rounded
  502. subx619 subtract 1.1 '123456789' -> '-123456788' Inexact Rounded
  503. rounding: half_even
  504. subx620 subtract 0 '123456789' -> '-123456789'
  505. subx621 subtract 0.000000001 '123456789' -> '-123456789' Inexact Rounded
  506. subx622 subtract 0.000001 '123456789' -> '-123456789' Inexact Rounded
  507. subx623 subtract 0.1 '123456789' -> '-123456789' Inexact Rounded
  508. subx624 subtract 0.4 '123456789' -> '-123456789' Inexact Rounded
  509. subx625 subtract 0.49 '123456789' -> '-123456789' Inexact Rounded
  510. subx626 subtract 0.499999 '123456789' -> '-123456789' Inexact Rounded
  511. subx627 subtract 0.499999999 '123456789' -> '-123456789' Inexact Rounded
  512. subx628 subtract 0.5 '123456789' -> '-123456788' Inexact Rounded
  513. subx629 subtract 0.500000001 '123456789' -> '-123456788' Inexact Rounded
  514. subx630 subtract 0.500001 '123456789' -> '-123456788' Inexact Rounded
  515. subx631 subtract 0.51 '123456789' -> '-123456788' Inexact Rounded
  516. subx632 subtract 0.6 '123456789' -> '-123456788' Inexact Rounded
  517. subx633 subtract 0.9 '123456789' -> '-123456788' Inexact Rounded
  518. subx634 subtract 0.99999 '123456789' -> '-123456788' Inexact Rounded
  519. subx635 subtract 0.999999999 '123456789' -> '-123456788' Inexact Rounded
  520. subx636 subtract 1 '123456789' -> '-123456788'
  521. subx637 subtract 1.00000001 '123456789' -> '-123456788' Inexact Rounded
  522. subx638 subtract 1.00001 '123456789' -> '-123456788' Inexact Rounded
  523. subx639 subtract 1.1 '123456789' -> '-123456788' Inexact Rounded
  524. -- critical few with even bottom digit...
  525. subx640 subtract 0.499999999 '123456788' -> '-123456788' Inexact Rounded
  526. subx641 subtract 0.5 '123456788' -> '-123456788' Inexact Rounded
  527. subx642 subtract 0.500000001 '123456788' -> '-123456787' Inexact Rounded
  528. rounding: down
  529. subx650 subtract 0 '123456789' -> '-123456789'
  530. subx651 subtract 0.000000001 '123456789' -> '-123456788' Inexact Rounded
  531. subx652 subtract 0.000001 '123456789' -> '-123456788' Inexact Rounded
  532. subx653 subtract 0.1 '123456789' -> '-123456788' Inexact Rounded
  533. subx654 subtract 0.4 '123456789' -> '-123456788' Inexact Rounded
  534. subx655 subtract 0.49 '123456789' -> '-123456788' Inexact Rounded
  535. subx656 subtract 0.499999 '123456789' -> '-123456788' Inexact Rounded
  536. subx657 subtract 0.499999999 '123456789' -> '-123456788' Inexact Rounded
  537. subx658 subtract 0.5 '123456789' -> '-123456788' Inexact Rounded
  538. subx659 subtract 0.500000001 '123456789' -> '-123456788' Inexact Rounded
  539. subx660 subtract 0.500001 '123456789' -> '-123456788' Inexact Rounded
  540. subx661 subtract 0.51 '123456789' -> '-123456788' Inexact Rounded
  541. subx662 subtract 0.6 '123456789' -> '-123456788' Inexact Rounded
  542. subx663 subtract 0.9 '123456789' -> '-123456788' Inexact Rounded
  543. subx664 subtract 0.99999 '123456789' -> '-123456788' Inexact Rounded
  544. subx665 subtract 0.999999999 '123456789' -> '-123456788' Inexact Rounded
  545. subx666 subtract 1 '123456789' -> '-123456788'
  546. subx667 subtract 1.00000001 '123456789' -> '-123456787' Inexact Rounded
  547. subx668 subtract 1.00001 '123456789' -> '-123456787' Inexact Rounded
  548. subx669 subtract 1.1 '123456789' -> '-123456787' Inexact Rounded
  549. -- lots of leading zeros in intermediate result, and showing effects of
  550. -- input rounding would have affected the following
  551. precision: 9
  552. rounding: half_up
  553. subx670 subtract '123456789' '123456788.1' -> 0.9
  554. subx671 subtract '123456789' '123456788.9' -> 0.1
  555. subx672 subtract '123456789' '123456789.1' -> -0.1
  556. subx673 subtract '123456789' '123456789.5' -> -0.5
  557. subx674 subtract '123456789' '123456789.9' -> -0.9
  558. rounding: half_even
  559. subx680 subtract '123456789' '123456788.1' -> 0.9
  560. subx681 subtract '123456789' '123456788.9' -> 0.1
  561. subx682 subtract '123456789' '123456789.1' -> -0.1
  562. subx683 subtract '123456789' '123456789.5' -> -0.5
  563. subx684 subtract '123456789' '123456789.9' -> -0.9
  564. subx685 subtract '123456788' '123456787.1' -> 0.9
  565. subx686 subtract '123456788' '123456787.9' -> 0.1
  566. subx687 subtract '123456788' '123456788.1' -> -0.1
  567. subx688 subtract '123456788' '123456788.5' -> -0.5
  568. subx689 subtract '123456788' '123456788.9' -> -0.9
  569. rounding: down
  570. subx690 subtract '123456789' '123456788.1' -> 0.9
  571. subx691 subtract '123456789' '123456788.9' -> 0.1
  572. subx692 subtract '123456789' '123456789.1' -> -0.1
  573. subx693 subtract '123456789' '123456789.5' -> -0.5
  574. subx694 subtract '123456789' '123456789.9' -> -0.9
  575. -- input preparation tests
  576. rounding: half_up
  577. precision: 3
  578. subx700 subtract '12345678900000' -9999999999999 -> '2.23E+13' Inexact Rounded
  579. subx701 subtract '9999999999999' -12345678900000 -> '2.23E+13' Inexact Rounded
  580. subx702 subtract '12E+3' '-3456' -> '1.55E+4' Inexact Rounded
  581. subx703 subtract '12E+3' '-3446' -> '1.54E+4' Inexact Rounded
  582. subx704 subtract '12E+3' '-3454' -> '1.55E+4' Inexact Rounded
  583. subx705 subtract '12E+3' '-3444' -> '1.54E+4' Inexact Rounded
  584. subx706 subtract '3456' '-12E+3' -> '1.55E+4' Inexact Rounded
  585. subx707 subtract '3446' '-12E+3' -> '1.54E+4' Inexact Rounded
  586. subx708 subtract '3454' '-12E+3' -> '1.55E+4' Inexact Rounded
  587. subx709 subtract '3444' '-12E+3' -> '1.54E+4' Inexact Rounded
  588. -- overflow and underflow tests [subnormals now possible]
  589. maxexponent: 999999999
  590. minexponent: -999999999
  591. precision: 9
  592. rounding: down
  593. subx710 subtract 1E+999999999 -9E+999999999 -> 9.99999999E+999999999 Overflow Inexact Rounded
  594. subx711 subtract 9E+999999999 -1E+999999999 -> 9.99999999E+999999999 Overflow Inexact Rounded
  595. rounding: half_up
  596. subx712 subtract 1E+999999999 -9E+999999999 -> Infinity Overflow Inexact Rounded
  597. subx713 subtract 9E+999999999 -1E+999999999 -> Infinity Overflow Inexact Rounded
  598. subx714 subtract -1.1E-999999999 -1E-999999999 -> -1E-1000000000 Subnormal
  599. subx715 subtract 1E-999999999 +1.1e-999999999 -> -1E-1000000000 Subnormal
  600. subx716 subtract -1E+999999999 +9E+999999999 -> -Infinity Overflow Inexact Rounded
  601. subx717 subtract -9E+999999999 +1E+999999999 -> -Infinity Overflow Inexact Rounded
  602. subx718 subtract +1.1E-999999999 +1E-999999999 -> 1E-1000000000 Subnormal
  603. subx719 subtract -1E-999999999 -1.1e-999999999 -> 1E-1000000000 Subnormal
  604. precision: 3
  605. subx720 subtract 1 9.999E+999999999 -> -Infinity Inexact Overflow Rounded
  606. subx721 subtract 1 -9.999E+999999999 -> Infinity Inexact Overflow Rounded
  607. subx722 subtract 9.999E+999999999 1 -> Infinity Inexact Overflow Rounded
  608. subx723 subtract -9.999E+999999999 1 -> -Infinity Inexact Overflow Rounded
  609. subx724 subtract 1 9.999E+999999999 -> -Infinity Inexact Overflow Rounded
  610. subx725 subtract 1 -9.999E+999999999 -> Infinity Inexact Overflow Rounded
  611. subx726 subtract 9.999E+999999999 1 -> Infinity Inexact Overflow Rounded
  612. subx727 subtract -9.999E+999999999 1 -> -Infinity Inexact Overflow Rounded
  613. -- [more below]
  614. -- long operand checks
  615. maxexponent: 999
  616. minexponent: -999
  617. precision: 9
  618. sub731 subtract 12345678000 0 -> 1.23456780E+10 Rounded
  619. sub732 subtract 0 12345678000 -> -1.23456780E+10 Rounded
  620. sub733 subtract 1234567800 0 -> 1.23456780E+9 Rounded
  621. sub734 subtract 0 1234567800 -> -1.23456780E+9 Rounded
  622. sub735 subtract 1234567890 0 -> 1.23456789E+9 Rounded
  623. sub736 subtract 0 1234567890 -> -1.23456789E+9 Rounded
  624. sub737 subtract 1234567891 0 -> 1.23456789E+9 Inexact Rounded
  625. sub738 subtract 0 1234567891 -> -1.23456789E+9 Inexact Rounded
  626. sub739 subtract 12345678901 0 -> 1.23456789E+10 Inexact Rounded
  627. sub740 subtract 0 12345678901 -> -1.23456789E+10 Inexact Rounded
  628. sub741 subtract 1234567896 0 -> 1.23456790E+9 Inexact Rounded
  629. sub742 subtract 0 1234567896 -> -1.23456790E+9 Inexact Rounded
  630. precision: 15
  631. sub751 subtract 12345678000 0 -> 12345678000
  632. sub752 subtract 0 12345678000 -> -12345678000
  633. sub753 subtract 1234567800 0 -> 1234567800
  634. sub754 subtract 0 1234567800 -> -1234567800
  635. sub755 subtract 1234567890 0 -> 1234567890
  636. sub756 subtract 0 1234567890 -> -1234567890
  637. sub757 subtract 1234567891 0 -> 1234567891
  638. sub758 subtract 0 1234567891 -> -1234567891
  639. sub759 subtract 12345678901 0 -> 12345678901
  640. sub760 subtract 0 12345678901 -> -12345678901
  641. sub761 subtract 1234567896 0 -> 1234567896
  642. sub762 subtract 0 1234567896 -> -1234567896
  643. -- Specials
  644. subx780 subtract -Inf Inf -> -Infinity
  645. subx781 subtract -Inf 1000 -> -Infinity
  646. subx782 subtract -Inf 1 -> -Infinity
  647. subx783 subtract -Inf -0 -> -Infinity
  648. subx784 subtract -Inf -1 -> -Infinity
  649. subx785 subtract -Inf -1000 -> -Infinity
  650. subx787 subtract -1000 Inf -> -Infinity
  651. subx788 subtract -Inf Inf -> -Infinity
  652. subx789 subtract -1 Inf -> -Infinity
  653. subx790 subtract 0 Inf -> -Infinity
  654. subx791 subtract 1 Inf -> -Infinity
  655. subx792 subtract 1000 Inf -> -Infinity
  656. subx800 subtract Inf Inf -> NaN Invalid_operation
  657. subx801 subtract Inf 1000 -> Infinity
  658. subx802 subtract Inf 1 -> Infinity
  659. subx803 subtract Inf 0 -> Infinity
  660. subx804 subtract Inf -0 -> Infinity
  661. subx805 subtract Inf -1 -> Infinity
  662. subx806 subtract Inf -1000 -> Infinity
  663. subx807 subtract Inf -Inf -> Infinity
  664. subx808 subtract -1000 -Inf -> Infinity
  665. subx809 subtract -Inf -Inf -> NaN Invalid_operation
  666. subx810 subtract -1 -Inf -> Infinity
  667. subx811 subtract -0 -Inf -> Infinity
  668. subx812 subtract 0 -Inf -> Infinity
  669. subx813 subtract 1 -Inf -> Infinity
  670. subx814 subtract 1000 -Inf -> Infinity
  671. subx815 subtract Inf -Inf -> Infinity
  672. subx821 subtract NaN Inf -> NaN
  673. subx822 subtract -NaN 1000 -> -NaN
  674. subx823 subtract NaN 1 -> NaN
  675. subx824 subtract NaN 0 -> NaN
  676. subx825 subtract NaN -0 -> NaN
  677. subx826 subtract NaN -1 -> NaN
  678. subx827 subtract NaN -1000 -> NaN
  679. subx828 subtract NaN -Inf -> NaN
  680. subx829 subtract -NaN NaN -> -NaN
  681. subx830 subtract -Inf NaN -> NaN
  682. subx831 subtract -1000 NaN -> NaN
  683. subx832 subtract -1 NaN -> NaN
  684. subx833 subtract -0 NaN -> NaN
  685. subx834 subtract 0 NaN -> NaN
  686. subx835 subtract 1 NaN -> NaN
  687. subx836 subtract 1000 -NaN -> -NaN
  688. subx837 subtract Inf NaN -> NaN
  689. subx841 subtract sNaN Inf -> NaN Invalid_operation
  690. subx842 subtract -sNaN 1000 -> -NaN Invalid_operation
  691. subx843 subtract sNaN 1 -> NaN Invalid_operation
  692. subx844 subtract sNaN 0 -> NaN Invalid_operation
  693. subx845 subtract sNaN -0 -> NaN Invalid_operation
  694. subx846 subtract sNaN -1 -> NaN Invalid_operation
  695. subx847 subtract sNaN -1000 -> NaN Invalid_operation
  696. subx848 subtract sNaN NaN -> NaN Invalid_operation
  697. subx849 subtract sNaN sNaN -> NaN Invalid_operation
  698. subx850 subtract NaN sNaN -> NaN Invalid_operation
  699. subx851 subtract -Inf -sNaN -> -NaN Invalid_operation
  700. subx852 subtract -1000 sNaN -> NaN Invalid_operation
  701. subx853 subtract -1 sNaN -> NaN Invalid_operation
  702. subx854 subtract -0 sNaN -> NaN Invalid_operation
  703. subx855 subtract 0 sNaN -> NaN Invalid_operation
  704. subx856 subtract 1 sNaN -> NaN Invalid_operation
  705. subx857 subtract 1000 sNaN -> NaN Invalid_operation
  706. subx858 subtract Inf sNaN -> NaN Invalid_operation
  707. subx859 subtract NaN sNaN -> NaN Invalid_operation
  708. -- propagating NaNs
  709. subx861 subtract NaN01 -Inf -> NaN1
  710. subx862 subtract -NaN02 -1000 -> -NaN2
  711. subx863 subtract NaN03 1000 -> NaN3
  712. subx864 subtract NaN04 Inf -> NaN4
  713. subx865 subtract NaN05 NaN61 -> NaN5
  714. subx866 subtract -Inf -NaN71 -> -NaN71
  715. subx867 subtract -1000 NaN81 -> NaN81
  716. subx868 subtract 1000 NaN91 -> NaN91
  717. subx869 subtract Inf NaN101 -> NaN101
  718. subx871 subtract sNaN011 -Inf -> NaN11 Invalid_operation
  719. subx872 subtract sNaN012 -1000 -> NaN12 Invalid_operation
  720. subx873 subtract -sNaN013 1000 -> -NaN13 Invalid_operation
  721. subx874 subtract sNaN014 NaN171 -> NaN14 Invalid_operation
  722. subx875 subtract sNaN015 sNaN181 -> NaN15 Invalid_operation
  723. subx876 subtract NaN016 sNaN191 -> NaN191 Invalid_operation
  724. subx877 subtract -Inf sNaN201 -> NaN201 Invalid_operation
  725. subx878 subtract -1000 sNaN211 -> NaN211 Invalid_operation
  726. subx879 subtract 1000 -sNaN221 -> -NaN221 Invalid_operation
  727. subx880 subtract Inf sNaN231 -> NaN231 Invalid_operation
  728. subx881 subtract NaN025 sNaN241 -> NaN241 Invalid_operation
  729. -- edge case spills
  730. subx901 subtract 2.E-3 1.002 -> -1.000
  731. subx902 subtract 2.0E-3 1.002 -> -1.0000
  732. subx903 subtract 2.00E-3 1.0020 -> -1.00000
  733. subx904 subtract 2.000E-3 1.00200 -> -1.000000
  734. subx905 subtract 2.0000E-3 1.002000 -> -1.0000000
  735. subx906 subtract 2.00000E-3 1.0020000 -> -1.00000000
  736. subx907 subtract 2.000000E-3 1.00200000 -> -1.000000000
  737. subx908 subtract 2.0000000E-3 1.002000000 -> -1.0000000000
  738. -- subnormals and underflows
  739. precision: 3
  740. maxexponent: 999
  741. minexponent: -999
  742. subx1010 subtract 0 1.00E-999 -> -1.00E-999
  743. subx1011 subtract 0 0.1E-999 -> -1E-1000 Subnormal
  744. subx1012 subtract 0 0.10E-999 -> -1.0E-1000 Subnormal
  745. subx1013 subtract 0 0.100E-999 -> -1.0E-1000 Subnormal Rounded
  746. subx1014 subtract 0 0.01E-999 -> -1E-1001 Subnormal
  747. -- next is rounded to Emin
  748. subx1015 subtract 0 0.999E-999 -> -1.00E-999 Inexact Rounded Subnormal Underflow
  749. subx1016 subtract 0 0.099E-999 -> -1.0E-1000 Inexact Rounded Subnormal Underflow
  750. subx1017 subtract 0 0.009E-999 -> -1E-1001 Inexact Rounded Subnormal Underflow
  751. subx1018 subtract 0 0.001E-999 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
  752. subx1019 subtract 0 0.0009E-999 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
  753. subx1020 subtract 0 0.0001E-999 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
  754. subx1030 subtract 0 -1.00E-999 -> 1.00E-999
  755. subx1031 subtract 0 -0.1E-999 -> 1E-1000 Subnormal
  756. subx1032 subtract 0 -0.10E-999 -> 1.0E-1000 Subnormal
  757. subx1033 subtract 0 -0.100E-999 -> 1.0E-1000 Subnormal Rounded
  758. subx1034 subtract 0 -0.01E-999 -> 1E-1001 Subnormal
  759. -- next is rounded to Emin
  760. subx1035 subtract 0 -0.999E-999 -> 1.00E-999 Inexact Rounded Subnormal Underflow
  761. subx1036 subtract 0 -0.099E-999 -> 1.0E-1000 Inexact Rounded Subnormal Underflow
  762. subx1037 subtract 0 -0.009E-999 -> 1E-1001 Inexact Rounded Subnormal Underflow
  763. subx1038 subtract 0 -0.001E-999 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
  764. subx1039 subtract 0 -0.0009E-999 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
  765. subx1040 subtract 0 -0.0001E-999 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
  766. -- some non-zero subnormal subtracts
  767. -- subx1056 is a tricky case
  768. rounding: half_up
  769. subx1050 subtract 1.00E-999 0.1E-999 -> 9.0E-1000 Subnormal
  770. subx1051 subtract 0.1E-999 0.1E-999 -> 0E-1000
  771. subx1052 subtract 0.10E-999 0.1E-999 -> 0E-1001
  772. subx1053 subtract 0.100E-999 0.1E-999 -> 0E-1001 Clamped
  773. subx1054 subtract 0.01E-999 0.1E-999 -> -9E-1001 Subnormal
  774. subx1055 subtract 0.999E-999 0.1E-999 -> 9.0E-1000 Inexact Rounded Subnormal Underflow
  775. subx1056 subtract 0.099E-999 0.1E-999 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
  776. subx1057 subtract 0.009E-999 0.1E-999 -> -9E-1001 Inexact Rounded Subnormal Underflow
  777. subx1058 subtract 0.001E-999 0.1E-999 -> -1.0E-1000 Inexact Rounded Subnormal Underflow
  778. subx1059 subtract 0.0009E-999 0.1E-999 -> -1.0E-1000 Inexact Rounded Subnormal Underflow
  779. subx1060 subtract 0.0001E-999 0.1E-999 -> -1.0E-1000 Inexact Rounded Subnormal Underflow
  780. -- check for double-rounded subnormals
  781. precision: 5
  782. maxexponent: 79
  783. minexponent: -79
  784. subx1101 subtract 0 1.52444E-80 -> -1.524E-80 Inexact Rounded Subnormal Underflow
  785. subx1102 subtract 0 1.52445E-80 -> -1.524E-80 Inexact Rounded Subnormal Underflow
  786. subx1103 subtract 0 1.52446E-80 -> -1.524E-80 Inexact Rounded Subnormal Underflow
  787. subx1104 subtract 1.52444E-80 0 -> 1.524E-80 Inexact Rounded Subnormal Underflow
  788. subx1105 subtract 1.52445E-80 0 -> 1.524E-80 Inexact Rounded Subnormal Underflow
  789. subx1106 subtract 1.52446E-80 0 -> 1.524E-80 Inexact Rounded Subnormal Underflow
  790. subx1111 subtract 1.2345678E-80 1.2345671E-80 -> 0E-83 Inexact Rounded Subnormal Underflow Clamped
  791. subx1112 subtract 1.2345678E-80 1.2345618E-80 -> 0E-83 Inexact Rounded Subnormal Underflow Clamped
  792. subx1113 subtract 1.2345678E-80 1.2345178E-80 -> 0E-83 Inexact Rounded Subnormal Underflow Clamped
  793. subx1114 subtract 1.2345678E-80 1.2341678E-80 -> 0E-83 Inexact Rounded Subnormal Underflow Clamped
  794. subx1115 subtract 1.2345678E-80 1.2315678E-80 -> 3E-83 Rounded Subnormal
  795. subx1116 subtract 1.2345678E-80 1.2145678E-80 -> 2.0E-82 Rounded Subnormal
  796. subx1117 subtract 1.2345678E-80 1.1345678E-80 -> 1.00E-81 Rounded Subnormal
  797. subx1118 subtract 1.2345678E-80 0.2345678E-80 -> 1.000E-80 Rounded Subnormal
  798. precision: 34
  799. rounding: half_up
  800. maxExponent: 6144
  801. minExponent: -6143
  802. -- Examples from SQL proposal (Krishna Kulkarni)
  803. subx1125 subtract 130E-2 120E-2 -> 0.10
  804. subx1126 subtract 130E-2 12E-1 -> 0.10
  805. subx1127 subtract 130E-2 1E0 -> 0.30
  806. subx1128 subtract 1E2 1E4 -> -9.9E+3
  807. -- Null tests
  808. subx9990 subtract 10 # -> NaN Invalid_operation
  809. subx9991 subtract # 10 -> NaN Invalid_operation