/Lib/test/decimaltestdata/squareroot.decTest

http://unladen-swallow.googlecode.com/ · Unknown · 3824 lines · 3766 code · 58 blank · 0 comment · 0 complexity · 8d0eb0dc5b3f015877f94b0b65176858 MD5 · raw file

Large files are truncated click here to view the full file

  1. ------------------------------------------------------------------------
  2. -- squareroot.decTest -- decimal square root --
  3. -- Copyright (c) IBM Corporation, 2003, 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.58
  21. extended: 1
  22. precision: 9
  23. rounding: half_up
  24. maxExponent: 384
  25. minexponent: -383
  26. -- basics
  27. sqtx001 squareroot 1 -> 1
  28. sqtx002 squareroot -1 -> NaN Invalid_operation
  29. sqtx003 squareroot 1.00 -> 1.0
  30. sqtx004 squareroot -1.00 -> NaN Invalid_operation
  31. sqtx005 squareroot 0 -> 0
  32. sqtx006 squareroot 00.0 -> 0.0
  33. sqtx007 squareroot 0.00 -> 0.0
  34. sqtx008 squareroot 00.00 -> 0.0
  35. sqtx009 squareroot 00.000 -> 0.00
  36. sqtx010 squareroot 00.0000 -> 0.00
  37. sqtx011 squareroot 00 -> 0
  38. sqtx012 squareroot -2 -> NaN Invalid_operation
  39. sqtx013 squareroot 2 -> 1.41421356 Inexact Rounded
  40. sqtx014 squareroot -2.00 -> NaN Invalid_operation
  41. sqtx015 squareroot 2.00 -> 1.41421356 Inexact Rounded
  42. sqtx016 squareroot -0 -> -0
  43. sqtx017 squareroot -0.0 -> -0.0
  44. sqtx018 squareroot -00.00 -> -0.0
  45. sqtx019 squareroot -00.000 -> -0.00
  46. sqtx020 squareroot -0.0000 -> -0.00
  47. sqtx021 squareroot -0E+9 -> -0E+4
  48. sqtx022 squareroot -0E+10 -> -0E+5
  49. sqtx023 squareroot -0E+11 -> -0E+5
  50. sqtx024 squareroot -0E+12 -> -0E+6
  51. sqtx025 squareroot -00 -> -0
  52. sqtx026 squareroot 0E+5 -> 0E+2
  53. sqtx027 squareroot 4.0 -> 2.0
  54. sqtx028 squareroot 4.00 -> 2.0
  55. sqtx030 squareroot +0.1 -> 0.316227766 Inexact Rounded
  56. sqtx031 squareroot -0.1 -> NaN Invalid_operation
  57. sqtx032 squareroot +0.01 -> 0.1
  58. sqtx033 squareroot -0.01 -> NaN Invalid_operation
  59. sqtx034 squareroot +0.001 -> 0.0316227766 Inexact Rounded
  60. sqtx035 squareroot -0.001 -> NaN Invalid_operation
  61. sqtx036 squareroot +0.000001 -> 0.001
  62. sqtx037 squareroot -0.000001 -> NaN Invalid_operation
  63. sqtx038 squareroot +0.000000000001 -> 0.000001
  64. sqtx039 squareroot -0.000000000001 -> NaN Invalid_operation
  65. sqtx041 squareroot 1.1 -> 1.04880885 Inexact Rounded
  66. sqtx042 squareroot 1.10 -> 1.04880885 Inexact Rounded
  67. sqtx043 squareroot 1.100 -> 1.04880885 Inexact Rounded
  68. sqtx044 squareroot 1.110 -> 1.05356538 Inexact Rounded
  69. sqtx045 squareroot -1.1 -> NaN Invalid_operation
  70. sqtx046 squareroot -1.10 -> NaN Invalid_operation
  71. sqtx047 squareroot -1.100 -> NaN Invalid_operation
  72. sqtx048 squareroot -1.110 -> NaN Invalid_operation
  73. sqtx049 squareroot 9.9 -> 3.14642654 Inexact Rounded
  74. sqtx050 squareroot 9.90 -> 3.14642654 Inexact Rounded
  75. sqtx051 squareroot 9.900 -> 3.14642654 Inexact Rounded
  76. sqtx052 squareroot 9.990 -> 3.16069613 Inexact Rounded
  77. sqtx053 squareroot -9.9 -> NaN Invalid_operation
  78. sqtx054 squareroot -9.90 -> NaN Invalid_operation
  79. sqtx055 squareroot -9.900 -> NaN Invalid_operation
  80. sqtx056 squareroot -9.990 -> NaN Invalid_operation
  81. sqtx060 squareroot 1 -> 1
  82. sqtx061 squareroot 1.0 -> 1.0
  83. sqtx062 squareroot 1.00 -> 1.0
  84. sqtx063 squareroot 10.0 -> 3.16227766 Inexact Rounded
  85. sqtx064 squareroot 10.0 -> 3.16227766 Inexact Rounded
  86. sqtx065 squareroot 10.0 -> 3.16227766 Inexact Rounded
  87. sqtx066 squareroot 10.00 -> 3.16227766 Inexact Rounded
  88. sqtx067 squareroot 100 -> 10
  89. sqtx068 squareroot 100.0 -> 10.0
  90. sqtx069 squareroot 100.00 -> 10.0
  91. sqtx070 squareroot 1.1000E+3 -> 33.1662479 Inexact Rounded
  92. sqtx071 squareroot 1.10000E+3 -> 33.1662479 Inexact Rounded
  93. sqtx072 squareroot -10.0 -> NaN Invalid_operation
  94. sqtx073 squareroot -10.00 -> NaN Invalid_operation
  95. sqtx074 squareroot -100.0 -> NaN Invalid_operation
  96. sqtx075 squareroot -100.00 -> NaN Invalid_operation
  97. sqtx076 squareroot -1.1000E+3 -> NaN Invalid_operation
  98. sqtx077 squareroot -1.10000E+3 -> NaN Invalid_operation
  99. sqtx078 squareroot 1.000 -> 1.00
  100. sqtx079 squareroot 1.0000 -> 1.00
  101. -- famous squares
  102. sqtx080 squareroot 1 -> 1
  103. sqtx081 squareroot 4 -> 2
  104. sqtx082 squareroot 9 -> 3
  105. sqtx083 squareroot 16 -> 4
  106. sqtx084 squareroot 25 -> 5
  107. sqtx085 squareroot 36 -> 6
  108. sqtx086 squareroot 49 -> 7
  109. sqtx087 squareroot 64 -> 8
  110. sqtx088 squareroot 81 -> 9
  111. sqtx089 squareroot 100 -> 10
  112. sqtx090 squareroot 121 -> 11
  113. sqtx091 squareroot 144 -> 12
  114. sqtx092 squareroot 169 -> 13
  115. sqtx093 squareroot 256 -> 16
  116. sqtx094 squareroot 1024 -> 32
  117. sqtx095 squareroot 4096 -> 64
  118. sqtx100 squareroot 0.01 -> 0.1
  119. sqtx101 squareroot 0.04 -> 0.2
  120. sqtx102 squareroot 0.09 -> 0.3
  121. sqtx103 squareroot 0.16 -> 0.4
  122. sqtx104 squareroot 0.25 -> 0.5
  123. sqtx105 squareroot 0.36 -> 0.6
  124. sqtx106 squareroot 0.49 -> 0.7
  125. sqtx107 squareroot 0.64 -> 0.8
  126. sqtx108 squareroot 0.81 -> 0.9
  127. sqtx109 squareroot 1.00 -> 1.0
  128. sqtx110 squareroot 1.21 -> 1.1
  129. sqtx111 squareroot 1.44 -> 1.2
  130. sqtx112 squareroot 1.69 -> 1.3
  131. sqtx113 squareroot 2.56 -> 1.6
  132. sqtx114 squareroot 10.24 -> 3.2
  133. sqtx115 squareroot 40.96 -> 6.4
  134. -- Precision 1 squareroot tests [exhaustive, plus exponent adjusts]
  135. rounding: half_even
  136. maxExponent: 999
  137. minexponent: -999
  138. precision: 1
  139. sqtx1201 squareroot 0.1 -> 0.3 Inexact Rounded
  140. sqtx1202 squareroot 0.01 -> 0.1
  141. sqtx1203 squareroot 1.0E-1 -> 0.3 Inexact Rounded
  142. sqtx1204 squareroot 1.00E-2 -> 0.1 Rounded
  143. sqtx1205 squareroot 1E-3 -> 0.03 Inexact Rounded
  144. sqtx1206 squareroot 1E+1 -> 3 Inexact Rounded
  145. sqtx1207 squareroot 1E+2 -> 1E+1
  146. sqtx1208 squareroot 1E+3 -> 3E+1 Inexact Rounded
  147. sqtx1209 squareroot 0.2 -> 0.4 Inexact Rounded
  148. sqtx1210 squareroot 0.02 -> 0.1 Inexact Rounded
  149. sqtx1211 squareroot 2.0E-1 -> 0.4 Inexact Rounded
  150. sqtx1212 squareroot 2.00E-2 -> 0.1 Inexact Rounded
  151. sqtx1213 squareroot 2E-3 -> 0.04 Inexact Rounded
  152. sqtx1214 squareroot 2E+1 -> 4 Inexact Rounded
  153. sqtx1215 squareroot 2E+2 -> 1E+1 Inexact Rounded
  154. sqtx1216 squareroot 2E+3 -> 4E+1 Inexact Rounded
  155. sqtx1217 squareroot 0.3 -> 0.5 Inexact Rounded
  156. sqtx1218 squareroot 0.03 -> 0.2 Inexact Rounded
  157. sqtx1219 squareroot 3.0E-1 -> 0.5 Inexact Rounded
  158. sqtx1220 squareroot 3.00E-2 -> 0.2 Inexact Rounded
  159. sqtx1221 squareroot 3E-3 -> 0.05 Inexact Rounded
  160. sqtx1222 squareroot 3E+1 -> 5 Inexact Rounded
  161. sqtx1223 squareroot 3E+2 -> 2E+1 Inexact Rounded
  162. sqtx1224 squareroot 3E+3 -> 5E+1 Inexact Rounded
  163. sqtx1225 squareroot 0.4 -> 0.6 Inexact Rounded
  164. sqtx1226 squareroot 0.04 -> 0.2
  165. sqtx1227 squareroot 4.0E-1 -> 0.6 Inexact Rounded
  166. sqtx1228 squareroot 4.00E-2 -> 0.2 Rounded
  167. sqtx1229 squareroot 4E-3 -> 0.06 Inexact Rounded
  168. sqtx1230 squareroot 4E+1 -> 6 Inexact Rounded
  169. sqtx1231 squareroot 4E+2 -> 2E+1
  170. sqtx1232 squareroot 4E+3 -> 6E+1 Inexact Rounded
  171. sqtx1233 squareroot 0.5 -> 0.7 Inexact Rounded
  172. sqtx1234 squareroot 0.05 -> 0.2 Inexact Rounded
  173. sqtx1235 squareroot 5.0E-1 -> 0.7 Inexact Rounded
  174. sqtx1236 squareroot 5.00E-2 -> 0.2 Inexact Rounded
  175. sqtx1237 squareroot 5E-3 -> 0.07 Inexact Rounded
  176. sqtx1238 squareroot 5E+1 -> 7 Inexact Rounded
  177. sqtx1239 squareroot 5E+2 -> 2E+1 Inexact Rounded
  178. sqtx1240 squareroot 5E+3 -> 7E+1 Inexact Rounded
  179. sqtx1241 squareroot 0.6 -> 0.8 Inexact Rounded
  180. sqtx1242 squareroot 0.06 -> 0.2 Inexact Rounded
  181. sqtx1243 squareroot 6.0E-1 -> 0.8 Inexact Rounded
  182. sqtx1244 squareroot 6.00E-2 -> 0.2 Inexact Rounded
  183. sqtx1245 squareroot 6E-3 -> 0.08 Inexact Rounded
  184. sqtx1246 squareroot 6E+1 -> 8 Inexact Rounded
  185. sqtx1247 squareroot 6E+2 -> 2E+1 Inexact Rounded
  186. sqtx1248 squareroot 6E+3 -> 8E+1 Inexact Rounded
  187. sqtx1249 squareroot 0.7 -> 0.8 Inexact Rounded
  188. sqtx1250 squareroot 0.07 -> 0.3 Inexact Rounded
  189. sqtx1251 squareroot 7.0E-1 -> 0.8 Inexact Rounded
  190. sqtx1252 squareroot 7.00E-2 -> 0.3 Inexact Rounded
  191. sqtx1253 squareroot 7E-3 -> 0.08 Inexact Rounded
  192. sqtx1254 squareroot 7E+1 -> 8 Inexact Rounded
  193. sqtx1255 squareroot 7E+2 -> 3E+1 Inexact Rounded
  194. sqtx1256 squareroot 7E+3 -> 8E+1 Inexact Rounded
  195. sqtx1257 squareroot 0.8 -> 0.9 Inexact Rounded
  196. sqtx1258 squareroot 0.08 -> 0.3 Inexact Rounded
  197. sqtx1259 squareroot 8.0E-1 -> 0.9 Inexact Rounded
  198. sqtx1260 squareroot 8.00E-2 -> 0.3 Inexact Rounded
  199. sqtx1261 squareroot 8E-3 -> 0.09 Inexact Rounded
  200. sqtx1262 squareroot 8E+1 -> 9 Inexact Rounded
  201. sqtx1263 squareroot 8E+2 -> 3E+1 Inexact Rounded
  202. sqtx1264 squareroot 8E+3 -> 9E+1 Inexact Rounded
  203. sqtx1265 squareroot 0.9 -> 0.9 Inexact Rounded
  204. sqtx1266 squareroot 0.09 -> 0.3
  205. sqtx1267 squareroot 9.0E-1 -> 0.9 Inexact Rounded
  206. sqtx1268 squareroot 9.00E-2 -> 0.3 Rounded
  207. sqtx1269 squareroot 9E-3 -> 0.09 Inexact Rounded
  208. sqtx1270 squareroot 9E+1 -> 9 Inexact Rounded
  209. sqtx1271 squareroot 9E+2 -> 3E+1
  210. sqtx1272 squareroot 9E+3 -> 9E+1 Inexact Rounded
  211. -- Precision 2 squareroot tests [exhaustive, plus exponent adjusts]
  212. rounding: half_even
  213. maxExponent: 999
  214. minexponent: -999
  215. precision: 2
  216. sqtx2201 squareroot 0.1 -> 0.32 Inexact Rounded
  217. sqtx2202 squareroot 0.01 -> 0.1
  218. sqtx2203 squareroot 1.0E-1 -> 0.32 Inexact Rounded
  219. sqtx2204 squareroot 1.00E-2 -> 0.10
  220. sqtx2205 squareroot 1E-3 -> 0.032 Inexact Rounded
  221. sqtx2206 squareroot 1E+1 -> 3.2 Inexact Rounded
  222. sqtx2207 squareroot 1E+2 -> 1E+1
  223. sqtx2208 squareroot 1E+3 -> 32 Inexact Rounded
  224. sqtx2209 squareroot 0.2 -> 0.45 Inexact Rounded
  225. sqtx2210 squareroot 0.02 -> 0.14 Inexact Rounded
  226. sqtx2211 squareroot 2.0E-1 -> 0.45 Inexact Rounded
  227. sqtx2212 squareroot 2.00E-2 -> 0.14 Inexact Rounded
  228. sqtx2213 squareroot 2E-3 -> 0.045 Inexact Rounded
  229. sqtx2214 squareroot 2E+1 -> 4.5 Inexact Rounded
  230. sqtx2215 squareroot 2E+2 -> 14 Inexact Rounded
  231. sqtx2216 squareroot 2E+3 -> 45 Inexact Rounded
  232. sqtx2217 squareroot 0.3 -> 0.55 Inexact Rounded
  233. sqtx2218 squareroot 0.03 -> 0.17 Inexact Rounded
  234. sqtx2219 squareroot 3.0E-1 -> 0.55 Inexact Rounded
  235. sqtx2220 squareroot 3.00E-2 -> 0.17 Inexact Rounded
  236. sqtx2221 squareroot 3E-3 -> 0.055 Inexact Rounded
  237. sqtx2222 squareroot 3E+1 -> 5.5 Inexact Rounded
  238. sqtx2223 squareroot 3E+2 -> 17 Inexact Rounded
  239. sqtx2224 squareroot 3E+3 -> 55 Inexact Rounded
  240. sqtx2225 squareroot 0.4 -> 0.63 Inexact Rounded
  241. sqtx2226 squareroot 0.04 -> 0.2
  242. sqtx2227 squareroot 4.0E-1 -> 0.63 Inexact Rounded
  243. sqtx2228 squareroot 4.00E-2 -> 0.20
  244. sqtx2229 squareroot 4E-3 -> 0.063 Inexact Rounded
  245. sqtx2230 squareroot 4E+1 -> 6.3 Inexact Rounded
  246. sqtx2231 squareroot 4E+2 -> 2E+1
  247. sqtx2232 squareroot 4E+3 -> 63 Inexact Rounded
  248. sqtx2233 squareroot 0.5 -> 0.71 Inexact Rounded
  249. sqtx2234 squareroot 0.05 -> 0.22 Inexact Rounded
  250. sqtx2235 squareroot 5.0E-1 -> 0.71 Inexact Rounded
  251. sqtx2236 squareroot 5.00E-2 -> 0.22 Inexact Rounded
  252. sqtx2237 squareroot 5E-3 -> 0.071 Inexact Rounded
  253. sqtx2238 squareroot 5E+1 -> 7.1 Inexact Rounded
  254. sqtx2239 squareroot 5E+2 -> 22 Inexact Rounded
  255. sqtx2240 squareroot 5E+3 -> 71 Inexact Rounded
  256. sqtx2241 squareroot 0.6 -> 0.77 Inexact Rounded
  257. sqtx2242 squareroot 0.06 -> 0.24 Inexact Rounded
  258. sqtx2243 squareroot 6.0E-1 -> 0.77 Inexact Rounded
  259. sqtx2244 squareroot 6.00E-2 -> 0.24 Inexact Rounded
  260. sqtx2245 squareroot 6E-3 -> 0.077 Inexact Rounded
  261. sqtx2246 squareroot 6E+1 -> 7.7 Inexact Rounded
  262. sqtx2247 squareroot 6E+2 -> 24 Inexact Rounded
  263. sqtx2248 squareroot 6E+3 -> 77 Inexact Rounded
  264. sqtx2249 squareroot 0.7 -> 0.84 Inexact Rounded
  265. sqtx2250 squareroot 0.07 -> 0.26 Inexact Rounded
  266. sqtx2251 squareroot 7.0E-1 -> 0.84 Inexact Rounded
  267. sqtx2252 squareroot 7.00E-2 -> 0.26 Inexact Rounded
  268. sqtx2253 squareroot 7E-3 -> 0.084 Inexact Rounded
  269. sqtx2254 squareroot 7E+1 -> 8.4 Inexact Rounded
  270. sqtx2255 squareroot 7E+2 -> 26 Inexact Rounded
  271. sqtx2256 squareroot 7E+3 -> 84 Inexact Rounded
  272. sqtx2257 squareroot 0.8 -> 0.89 Inexact Rounded
  273. sqtx2258 squareroot 0.08 -> 0.28 Inexact Rounded
  274. sqtx2259 squareroot 8.0E-1 -> 0.89 Inexact Rounded
  275. sqtx2260 squareroot 8.00E-2 -> 0.28 Inexact Rounded
  276. sqtx2261 squareroot 8E-3 -> 0.089 Inexact Rounded
  277. sqtx2262 squareroot 8E+1 -> 8.9 Inexact Rounded
  278. sqtx2263 squareroot 8E+2 -> 28 Inexact Rounded
  279. sqtx2264 squareroot 8E+3 -> 89 Inexact Rounded
  280. sqtx2265 squareroot 0.9 -> 0.95 Inexact Rounded
  281. sqtx2266 squareroot 0.09 -> 0.3
  282. sqtx2267 squareroot 9.0E-1 -> 0.95 Inexact Rounded
  283. sqtx2268 squareroot 9.00E-2 -> 0.30
  284. sqtx2269 squareroot 9E-3 -> 0.095 Inexact Rounded
  285. sqtx2270 squareroot 9E+1 -> 9.5 Inexact Rounded
  286. sqtx2271 squareroot 9E+2 -> 3E+1
  287. sqtx2272 squareroot 9E+3 -> 95 Inexact Rounded
  288. sqtx2273 squareroot 0.10 -> 0.32 Inexact Rounded
  289. sqtx2274 squareroot 0.010 -> 0.10
  290. sqtx2275 squareroot 10.0E-1 -> 1.0
  291. sqtx2276 squareroot 10.00E-2 -> 0.32 Inexact Rounded
  292. sqtx2277 squareroot 10E-3 -> 0.10
  293. sqtx2278 squareroot 10E+1 -> 10
  294. sqtx2279 squareroot 10E+2 -> 32 Inexact Rounded
  295. sqtx2280 squareroot 10E+3 -> 1.0E+2
  296. sqtx2281 squareroot 0.11 -> 0.33 Inexact Rounded
  297. sqtx2282 squareroot 0.011 -> 0.10 Inexact Rounded
  298. sqtx2283 squareroot 11.0E-1 -> 1.0 Inexact Rounded
  299. sqtx2284 squareroot 11.00E-2 -> 0.33 Inexact Rounded
  300. sqtx2285 squareroot 11E-3 -> 0.10 Inexact Rounded
  301. sqtx2286 squareroot 11E+1 -> 10 Inexact Rounded
  302. sqtx2287 squareroot 11E+2 -> 33 Inexact Rounded
  303. sqtx2288 squareroot 11E+3 -> 1.0E+2 Inexact Rounded
  304. sqtx2289 squareroot 0.12 -> 0.35 Inexact Rounded
  305. sqtx2290 squareroot 0.012 -> 0.11 Inexact Rounded
  306. sqtx2291 squareroot 12.0E-1 -> 1.1 Inexact Rounded
  307. sqtx2292 squareroot 12.00E-2 -> 0.35 Inexact Rounded
  308. sqtx2293 squareroot 12E-3 -> 0.11 Inexact Rounded
  309. sqtx2294 squareroot 12E+1 -> 11 Inexact Rounded
  310. sqtx2295 squareroot 12E+2 -> 35 Inexact Rounded
  311. sqtx2296 squareroot 12E+3 -> 1.1E+2 Inexact Rounded
  312. sqtx2297 squareroot 0.13 -> 0.36 Inexact Rounded
  313. sqtx2298 squareroot 0.013 -> 0.11 Inexact Rounded
  314. sqtx2299 squareroot 13.0E-1 -> 1.1 Inexact Rounded
  315. sqtx2300 squareroot 13.00E-2 -> 0.36 Inexact Rounded
  316. sqtx2301 squareroot 13E-3 -> 0.11 Inexact Rounded
  317. sqtx2302 squareroot 13E+1 -> 11 Inexact Rounded
  318. sqtx2303 squareroot 13E+2 -> 36 Inexact Rounded
  319. sqtx2304 squareroot 13E+3 -> 1.1E+2 Inexact Rounded
  320. sqtx2305 squareroot 0.14 -> 0.37 Inexact Rounded
  321. sqtx2306 squareroot 0.014 -> 0.12 Inexact Rounded
  322. sqtx2307 squareroot 14.0E-1 -> 1.2 Inexact Rounded
  323. sqtx2308 squareroot 14.00E-2 -> 0.37 Inexact Rounded
  324. sqtx2309 squareroot 14E-3 -> 0.12 Inexact Rounded
  325. sqtx2310 squareroot 14E+1 -> 12 Inexact Rounded
  326. sqtx2311 squareroot 14E+2 -> 37 Inexact Rounded
  327. sqtx2312 squareroot 14E+3 -> 1.2E+2 Inexact Rounded
  328. sqtx2313 squareroot 0.15 -> 0.39 Inexact Rounded
  329. sqtx2314 squareroot 0.015 -> 0.12 Inexact Rounded
  330. sqtx2315 squareroot 15.0E-1 -> 1.2 Inexact Rounded
  331. sqtx2316 squareroot 15.00E-2 -> 0.39 Inexact Rounded
  332. sqtx2317 squareroot 15E-3 -> 0.12 Inexact Rounded
  333. sqtx2318 squareroot 15E+1 -> 12 Inexact Rounded
  334. sqtx2319 squareroot 15E+2 -> 39 Inexact Rounded
  335. sqtx2320 squareroot 15E+3 -> 1.2E+2 Inexact Rounded
  336. sqtx2321 squareroot 0.16 -> 0.4
  337. sqtx2322 squareroot 0.016 -> 0.13 Inexact Rounded
  338. sqtx2323 squareroot 16.0E-1 -> 1.3 Inexact Rounded
  339. sqtx2324 squareroot 16.00E-2 -> 0.40
  340. sqtx2325 squareroot 16E-3 -> 0.13 Inexact Rounded
  341. sqtx2326 squareroot 16E+1 -> 13 Inexact Rounded
  342. sqtx2327 squareroot 16E+2 -> 4E+1
  343. sqtx2328 squareroot 16E+3 -> 1.3E+2 Inexact Rounded
  344. sqtx2329 squareroot 0.17 -> 0.41 Inexact Rounded
  345. sqtx2330 squareroot 0.017 -> 0.13 Inexact Rounded
  346. sqtx2331 squareroot 17.0E-1 -> 1.3 Inexact Rounded
  347. sqtx2332 squareroot 17.00E-2 -> 0.41 Inexact Rounded
  348. sqtx2333 squareroot 17E-3 -> 0.13 Inexact Rounded
  349. sqtx2334 squareroot 17E+1 -> 13 Inexact Rounded
  350. sqtx2335 squareroot 17E+2 -> 41 Inexact Rounded
  351. sqtx2336 squareroot 17E+3 -> 1.3E+2 Inexact Rounded
  352. sqtx2337 squareroot 0.18 -> 0.42 Inexact Rounded
  353. sqtx2338 squareroot 0.018 -> 0.13 Inexact Rounded
  354. sqtx2339 squareroot 18.0E-1 -> 1.3 Inexact Rounded
  355. sqtx2340 squareroot 18.00E-2 -> 0.42 Inexact Rounded
  356. sqtx2341 squareroot 18E-3 -> 0.13 Inexact Rounded
  357. sqtx2342 squareroot 18E+1 -> 13 Inexact Rounded
  358. sqtx2343 squareroot 18E+2 -> 42 Inexact Rounded
  359. sqtx2344 squareroot 18E+3 -> 1.3E+2 Inexact Rounded
  360. sqtx2345 squareroot 0.19 -> 0.44 Inexact Rounded
  361. sqtx2346 squareroot 0.019 -> 0.14 Inexact Rounded
  362. sqtx2347 squareroot 19.0E-1 -> 1.4 Inexact Rounded
  363. sqtx2348 squareroot 19.00E-2 -> 0.44 Inexact Rounded
  364. sqtx2349 squareroot 19E-3 -> 0.14 Inexact Rounded
  365. sqtx2350 squareroot 19E+1 -> 14 Inexact Rounded
  366. sqtx2351 squareroot 19E+2 -> 44 Inexact Rounded
  367. sqtx2352 squareroot 19E+3 -> 1.4E+2 Inexact Rounded
  368. sqtx2353 squareroot 0.20 -> 0.45 Inexact Rounded
  369. sqtx2354 squareroot 0.020 -> 0.14 Inexact Rounded
  370. sqtx2355 squareroot 20.0E-1 -> 1.4 Inexact Rounded
  371. sqtx2356 squareroot 20.00E-2 -> 0.45 Inexact Rounded
  372. sqtx2357 squareroot 20E-3 -> 0.14 Inexact Rounded
  373. sqtx2358 squareroot 20E+1 -> 14 Inexact Rounded
  374. sqtx2359 squareroot 20E+2 -> 45 Inexact Rounded
  375. sqtx2360 squareroot 20E+3 -> 1.4E+2 Inexact Rounded
  376. sqtx2361 squareroot 0.21 -> 0.46 Inexact Rounded
  377. sqtx2362 squareroot 0.021 -> 0.14 Inexact Rounded
  378. sqtx2363 squareroot 21.0E-1 -> 1.4 Inexact Rounded
  379. sqtx2364 squareroot 21.00E-2 -> 0.46 Inexact Rounded
  380. sqtx2365 squareroot 21E-3 -> 0.14 Inexact Rounded
  381. sqtx2366 squareroot 21E+1 -> 14 Inexact Rounded
  382. sqtx2367 squareroot 21E+2 -> 46 Inexact Rounded
  383. sqtx2368 squareroot 21E+3 -> 1.4E+2 Inexact Rounded
  384. sqtx2369 squareroot 0.22 -> 0.47 Inexact Rounded
  385. sqtx2370 squareroot 0.022 -> 0.15 Inexact Rounded
  386. sqtx2371 squareroot 22.0E-1 -> 1.5 Inexact Rounded
  387. sqtx2372 squareroot 22.00E-2 -> 0.47 Inexact Rounded
  388. sqtx2373 squareroot 22E-3 -> 0.15 Inexact Rounded
  389. sqtx2374 squareroot 22E+1 -> 15 Inexact Rounded
  390. sqtx2375 squareroot 22E+2 -> 47 Inexact Rounded
  391. sqtx2376 squareroot 22E+3 -> 1.5E+2 Inexact Rounded
  392. sqtx2377 squareroot 0.23 -> 0.48 Inexact Rounded
  393. sqtx2378 squareroot 0.023 -> 0.15 Inexact Rounded
  394. sqtx2379 squareroot 23.0E-1 -> 1.5 Inexact Rounded
  395. sqtx2380 squareroot 23.00E-2 -> 0.48 Inexact Rounded
  396. sqtx2381 squareroot 23E-3 -> 0.15 Inexact Rounded
  397. sqtx2382 squareroot 23E+1 -> 15 Inexact Rounded
  398. sqtx2383 squareroot 23E+2 -> 48 Inexact Rounded
  399. sqtx2384 squareroot 23E+3 -> 1.5E+2 Inexact Rounded
  400. sqtx2385 squareroot 0.24 -> 0.49 Inexact Rounded
  401. sqtx2386 squareroot 0.024 -> 0.15 Inexact Rounded
  402. sqtx2387 squareroot 24.0E-1 -> 1.5 Inexact Rounded
  403. sqtx2388 squareroot 24.00E-2 -> 0.49 Inexact Rounded
  404. sqtx2389 squareroot 24E-3 -> 0.15 Inexact Rounded
  405. sqtx2390 squareroot 24E+1 -> 15 Inexact Rounded
  406. sqtx2391 squareroot 24E+2 -> 49 Inexact Rounded
  407. sqtx2392 squareroot 24E+3 -> 1.5E+2 Inexact Rounded
  408. sqtx2393 squareroot 0.25 -> 0.5
  409. sqtx2394 squareroot 0.025 -> 0.16 Inexact Rounded
  410. sqtx2395 squareroot 25.0E-1 -> 1.6 Inexact Rounded
  411. sqtx2396 squareroot 25.00E-2 -> 0.50
  412. sqtx2397 squareroot 25E-3 -> 0.16 Inexact Rounded
  413. sqtx2398 squareroot 25E+1 -> 16 Inexact Rounded
  414. sqtx2399 squareroot 25E+2 -> 5E+1
  415. sqtx2400 squareroot 25E+3 -> 1.6E+2 Inexact Rounded
  416. sqtx2401 squareroot 0.26 -> 0.51 Inexact Rounded
  417. sqtx2402 squareroot 0.026 -> 0.16 Inexact Rounded
  418. sqtx2403 squareroot 26.0E-1 -> 1.6 Inexact Rounded
  419. sqtx2404 squareroot 26.00E-2 -> 0.51 Inexact Rounded
  420. sqtx2405 squareroot 26E-3 -> 0.16 Inexact Rounded
  421. sqtx2406 squareroot 26E+1 -> 16 Inexact Rounded
  422. sqtx2407 squareroot 26E+2 -> 51 Inexact Rounded
  423. sqtx2408 squareroot 26E+3 -> 1.6E+2 Inexact Rounded
  424. sqtx2409 squareroot 0.27 -> 0.52 Inexact Rounded
  425. sqtx2410 squareroot 0.027 -> 0.16 Inexact Rounded
  426. sqtx2411 squareroot 27.0E-1 -> 1.6 Inexact Rounded
  427. sqtx2412 squareroot 27.00E-2 -> 0.52 Inexact Rounded
  428. sqtx2413 squareroot 27E-3 -> 0.16 Inexact Rounded
  429. sqtx2414 squareroot 27E+1 -> 16 Inexact Rounded
  430. sqtx2415 squareroot 27E+2 -> 52 Inexact Rounded
  431. sqtx2416 squareroot 27E+3 -> 1.6E+2 Inexact Rounded
  432. sqtx2417 squareroot 0.28 -> 0.53 Inexact Rounded
  433. sqtx2418 squareroot 0.028 -> 0.17 Inexact Rounded
  434. sqtx2419 squareroot 28.0E-1 -> 1.7 Inexact Rounded
  435. sqtx2420 squareroot 28.00E-2 -> 0.53 Inexact Rounded
  436. sqtx2421 squareroot 28E-3 -> 0.17 Inexact Rounded
  437. sqtx2422 squareroot 28E+1 -> 17 Inexact Rounded
  438. sqtx2423 squareroot 28E+2 -> 53 Inexact Rounded
  439. sqtx2424 squareroot 28E+3 -> 1.7E+2 Inexact Rounded
  440. sqtx2425 squareroot 0.29 -> 0.54 Inexact Rounded
  441. sqtx2426 squareroot 0.029 -> 0.17 Inexact Rounded
  442. sqtx2427 squareroot 29.0E-1 -> 1.7 Inexact Rounded
  443. sqtx2428 squareroot 29.00E-2 -> 0.54 Inexact Rounded
  444. sqtx2429 squareroot 29E-3 -> 0.17 Inexact Rounded
  445. sqtx2430 squareroot 29E+1 -> 17 Inexact Rounded
  446. sqtx2431 squareroot 29E+2 -> 54 Inexact Rounded
  447. sqtx2432 squareroot 29E+3 -> 1.7E+2 Inexact Rounded
  448. sqtx2433 squareroot 0.30 -> 0.55 Inexact Rounded
  449. sqtx2434 squareroot 0.030 -> 0.17 Inexact Rounded
  450. sqtx2435 squareroot 30.0E-1 -> 1.7 Inexact Rounded
  451. sqtx2436 squareroot 30.00E-2 -> 0.55 Inexact Rounded
  452. sqtx2437 squareroot 30E-3 -> 0.17 Inexact Rounded
  453. sqtx2438 squareroot 30E+1 -> 17 Inexact Rounded
  454. sqtx2439 squareroot 30E+2 -> 55 Inexact Rounded
  455. sqtx2440 squareroot 30E+3 -> 1.7E+2 Inexact Rounded
  456. sqtx2441 squareroot 0.31 -> 0.56 Inexact Rounded
  457. sqtx2442 squareroot 0.031 -> 0.18 Inexact Rounded
  458. sqtx2443 squareroot 31.0E-1 -> 1.8 Inexact Rounded
  459. sqtx2444 squareroot 31.00E-2 -> 0.56 Inexact Rounded
  460. sqtx2445 squareroot 31E-3 -> 0.18 Inexact Rounded
  461. sqtx2446 squareroot 31E+1 -> 18 Inexact Rounded
  462. sqtx2447 squareroot 31E+2 -> 56 Inexact Rounded
  463. sqtx2448 squareroot 31E+3 -> 1.8E+2 Inexact Rounded
  464. sqtx2449 squareroot 0.32 -> 0.57 Inexact Rounded
  465. sqtx2450 squareroot 0.032 -> 0.18 Inexact Rounded
  466. sqtx2451 squareroot 32.0E-1 -> 1.8 Inexact Rounded
  467. sqtx2452 squareroot 32.00E-2 -> 0.57 Inexact Rounded
  468. sqtx2453 squareroot 32E-3 -> 0.18 Inexact Rounded
  469. sqtx2454 squareroot 32E+1 -> 18 Inexact Rounded
  470. sqtx2455 squareroot 32E+2 -> 57 Inexact Rounded
  471. sqtx2456 squareroot 32E+3 -> 1.8E+2 Inexact Rounded
  472. sqtx2457 squareroot 0.33 -> 0.57 Inexact Rounded
  473. sqtx2458 squareroot 0.033 -> 0.18 Inexact Rounded
  474. sqtx2459 squareroot 33.0E-1 -> 1.8 Inexact Rounded
  475. sqtx2460 squareroot 33.00E-2 -> 0.57 Inexact Rounded
  476. sqtx2461 squareroot 33E-3 -> 0.18 Inexact Rounded
  477. sqtx2462 squareroot 33E+1 -> 18 Inexact Rounded
  478. sqtx2463 squareroot 33E+2 -> 57 Inexact Rounded
  479. sqtx2464 squareroot 33E+3 -> 1.8E+2 Inexact Rounded
  480. sqtx2465 squareroot 0.34 -> 0.58 Inexact Rounded
  481. sqtx2466 squareroot 0.034 -> 0.18 Inexact Rounded
  482. sqtx2467 squareroot 34.0E-1 -> 1.8 Inexact Rounded
  483. sqtx2468 squareroot 34.00E-2 -> 0.58 Inexact Rounded
  484. sqtx2469 squareroot 34E-3 -> 0.18 Inexact Rounded
  485. sqtx2470 squareroot 34E+1 -> 18 Inexact Rounded
  486. sqtx2471 squareroot 34E+2 -> 58 Inexact Rounded
  487. sqtx2472 squareroot 34E+3 -> 1.8E+2 Inexact Rounded
  488. sqtx2473 squareroot 0.35 -> 0.59 Inexact Rounded
  489. sqtx2474 squareroot 0.035 -> 0.19 Inexact Rounded
  490. sqtx2475 squareroot 35.0E-1 -> 1.9 Inexact Rounded
  491. sqtx2476 squareroot 35.00E-2 -> 0.59 Inexact Rounded
  492. sqtx2477 squareroot 35E-3 -> 0.19 Inexact Rounded
  493. sqtx2478 squareroot 35E+1 -> 19 Inexact Rounded
  494. sqtx2479 squareroot 35E+2 -> 59 Inexact Rounded
  495. sqtx2480 squareroot 35E+3 -> 1.9E+2 Inexact Rounded
  496. sqtx2481 squareroot 0.36 -> 0.6
  497. sqtx2482 squareroot 0.036 -> 0.19 Inexact Rounded
  498. sqtx2483 squareroot 36.0E-1 -> 1.9 Inexact Rounded
  499. sqtx2484 squareroot 36.00E-2 -> 0.60
  500. sqtx2485 squareroot 36E-3 -> 0.19 Inexact Rounded
  501. sqtx2486 squareroot 36E+1 -> 19 Inexact Rounded
  502. sqtx2487 squareroot 36E+2 -> 6E+1
  503. sqtx2488 squareroot 36E+3 -> 1.9E+2 Inexact Rounded
  504. sqtx2489 squareroot 0.37 -> 0.61 Inexact Rounded
  505. sqtx2490 squareroot 0.037 -> 0.19 Inexact Rounded
  506. sqtx2491 squareroot 37.0E-1 -> 1.9 Inexact Rounded
  507. sqtx2492 squareroot 37.00E-2 -> 0.61 Inexact Rounded
  508. sqtx2493 squareroot 37E-3 -> 0.19 Inexact Rounded
  509. sqtx2494 squareroot 37E+1 -> 19 Inexact Rounded
  510. sqtx2495 squareroot 37E+2 -> 61 Inexact Rounded
  511. sqtx2496 squareroot 37E+3 -> 1.9E+2 Inexact Rounded
  512. sqtx2497 squareroot 0.38 -> 0.62 Inexact Rounded
  513. sqtx2498 squareroot 0.038 -> 0.19 Inexact Rounded
  514. sqtx2499 squareroot 38.0E-1 -> 1.9 Inexact Rounded
  515. sqtx2500 squareroot 38.00E-2 -> 0.62 Inexact Rounded
  516. sqtx2501 squareroot 38E-3 -> 0.19 Inexact Rounded
  517. sqtx2502 squareroot 38E+1 -> 19 Inexact Rounded
  518. sqtx2503 squareroot 38E+2 -> 62 Inexact Rounded
  519. sqtx2504 squareroot 38E+3 -> 1.9E+2 Inexact Rounded
  520. sqtx2505 squareroot 0.39 -> 0.62 Inexact Rounded
  521. sqtx2506 squareroot 0.039 -> 0.20 Inexact Rounded
  522. sqtx2507 squareroot 39.0E-1 -> 2.0 Inexact Rounded
  523. sqtx2508 squareroot 39.00E-2 -> 0.62 Inexact Rounded
  524. sqtx2509 squareroot 39E-3 -> 0.20 Inexact Rounded
  525. sqtx2510 squareroot 39E+1 -> 20 Inexact Rounded
  526. sqtx2511 squareroot 39E+2 -> 62 Inexact Rounded
  527. sqtx2512 squareroot 39E+3 -> 2.0E+2 Inexact Rounded
  528. sqtx2513 squareroot 0.40 -> 0.63 Inexact Rounded
  529. sqtx2514 squareroot 0.040 -> 0.20
  530. sqtx2515 squareroot 40.0E-1 -> 2.0
  531. sqtx2516 squareroot 40.00E-2 -> 0.63 Inexact Rounded
  532. sqtx2517 squareroot 40E-3 -> 0.20
  533. sqtx2518 squareroot 40E+1 -> 20
  534. sqtx2519 squareroot 40E+2 -> 63 Inexact Rounded
  535. sqtx2520 squareroot 40E+3 -> 2.0E+2
  536. sqtx2521 squareroot 0.41 -> 0.64 Inexact Rounded
  537. sqtx2522 squareroot 0.041 -> 0.20 Inexact Rounded
  538. sqtx2523 squareroot 41.0E-1 -> 2.0 Inexact Rounded
  539. sqtx2524 squareroot 41.00E-2 -> 0.64 Inexact Rounded
  540. sqtx2525 squareroot 41E-3 -> 0.20 Inexact Rounded
  541. sqtx2526 squareroot 41E+1 -> 20 Inexact Rounded
  542. sqtx2527 squareroot 41E+2 -> 64 Inexact Rounded
  543. sqtx2528 squareroot 41E+3 -> 2.0E+2 Inexact Rounded
  544. sqtx2529 squareroot 0.42 -> 0.65 Inexact Rounded
  545. sqtx2530 squareroot 0.042 -> 0.20 Inexact Rounded
  546. sqtx2531 squareroot 42.0E-1 -> 2.0 Inexact Rounded
  547. sqtx2532 squareroot 42.00E-2 -> 0.65 Inexact Rounded
  548. sqtx2533 squareroot 42E-3 -> 0.20 Inexact Rounded
  549. sqtx2534 squareroot 42E+1 -> 20 Inexact Rounded
  550. sqtx2535 squareroot 42E+2 -> 65 Inexact Rounded
  551. sqtx2536 squareroot 42E+3 -> 2.0E+2 Inexact Rounded
  552. sqtx2537 squareroot 0.43 -> 0.66 Inexact Rounded
  553. sqtx2538 squareroot 0.043 -> 0.21 Inexact Rounded
  554. sqtx2539 squareroot 43.0E-1 -> 2.1 Inexact Rounded
  555. sqtx2540 squareroot 43.00E-2 -> 0.66 Inexact Rounded
  556. sqtx2541 squareroot 43E-3 -> 0.21 Inexact Rounded
  557. sqtx2542 squareroot 43E+1 -> 21 Inexact Rounded
  558. sqtx2543 squareroot 43E+2 -> 66 Inexact Rounded
  559. sqtx2544 squareroot 43E+3 -> 2.1E+2 Inexact Rounded
  560. sqtx2545 squareroot 0.44 -> 0.66 Inexact Rounded
  561. sqtx2546 squareroot 0.044 -> 0.21 Inexact Rounded
  562. sqtx2547 squareroot 44.0E-1 -> 2.1 Inexact Rounded
  563. sqtx2548 squareroot 44.00E-2 -> 0.66 Inexact Rounded
  564. sqtx2549 squareroot 44E-3 -> 0.21 Inexact Rounded
  565. sqtx2550 squareroot 44E+1 -> 21 Inexact Rounded
  566. sqtx2551 squareroot 44E+2 -> 66 Inexact Rounded
  567. sqtx2552 squareroot 44E+3 -> 2.1E+2 Inexact Rounded
  568. sqtx2553 squareroot 0.45 -> 0.67 Inexact Rounded
  569. sqtx2554 squareroot 0.045 -> 0.21 Inexact Rounded
  570. sqtx2555 squareroot 45.0E-1 -> 2.1 Inexact Rounded
  571. sqtx2556 squareroot 45.00E-2 -> 0.67 Inexact Rounded
  572. sqtx2557 squareroot 45E-3 -> 0.21 Inexact Rounded
  573. sqtx2558 squareroot 45E+1 -> 21 Inexact Rounded
  574. sqtx2559 squareroot 45E+2 -> 67 Inexact Rounded
  575. sqtx2560 squareroot 45E+3 -> 2.1E+2 Inexact Rounded
  576. sqtx2561 squareroot 0.46 -> 0.68 Inexact Rounded
  577. sqtx2562 squareroot 0.046 -> 0.21 Inexact Rounded
  578. sqtx2563 squareroot 46.0E-1 -> 2.1 Inexact Rounded
  579. sqtx2564 squareroot 46.00E-2 -> 0.68 Inexact Rounded
  580. sqtx2565 squareroot 46E-3 -> 0.21 Inexact Rounded
  581. sqtx2566 squareroot 46E+1 -> 21 Inexact Rounded
  582. sqtx2567 squareroot 46E+2 -> 68 Inexact Rounded
  583. sqtx2568 squareroot 46E+3 -> 2.1E+2 Inexact Rounded
  584. sqtx2569 squareroot 0.47 -> 0.69 Inexact Rounded
  585. sqtx2570 squareroot 0.047 -> 0.22 Inexact Rounded
  586. sqtx2571 squareroot 47.0E-1 -> 2.2 Inexact Rounded
  587. sqtx2572 squareroot 47.00E-2 -> 0.69 Inexact Rounded
  588. sqtx2573 squareroot 47E-3 -> 0.22 Inexact Rounded
  589. sqtx2574 squareroot 47E+1 -> 22 Inexact Rounded
  590. sqtx2575 squareroot 47E+2 -> 69 Inexact Rounded
  591. sqtx2576 squareroot 47E+3 -> 2.2E+2 Inexact Rounded
  592. sqtx2577 squareroot 0.48 -> 0.69 Inexact Rounded
  593. sqtx2578 squareroot 0.048 -> 0.22 Inexact Rounded
  594. sqtx2579 squareroot 48.0E-1 -> 2.2 Inexact Rounded
  595. sqtx2580 squareroot 48.00E-2 -> 0.69 Inexact Rounded
  596. sqtx2581 squareroot 48E-3 -> 0.22 Inexact Rounded
  597. sqtx2582 squareroot 48E+1 -> 22 Inexact Rounded
  598. sqtx2583 squareroot 48E+2 -> 69 Inexact Rounded
  599. sqtx2584 squareroot 48E+3 -> 2.2E+2 Inexact Rounded
  600. sqtx2585 squareroot 0.49 -> 0.7
  601. sqtx2586 squareroot 0.049 -> 0.22 Inexact Rounded
  602. sqtx2587 squareroot 49.0E-1 -> 2.2 Inexact Rounded
  603. sqtx2588 squareroot 49.00E-2 -> 0.70
  604. sqtx2589 squareroot 49E-3 -> 0.22 Inexact Rounded
  605. sqtx2590 squareroot 49E+1 -> 22 Inexact Rounded
  606. sqtx2591 squareroot 49E+2 -> 7E+1
  607. sqtx2592 squareroot 49E+3 -> 2.2E+2 Inexact Rounded
  608. sqtx2593 squareroot 0.50 -> 0.71 Inexact Rounded
  609. sqtx2594 squareroot 0.050 -> 0.22 Inexact Rounded
  610. sqtx2595 squareroot 50.0E-1 -> 2.2 Inexact Rounded
  611. sqtx2596 squareroot 50.00E-2 -> 0.71 Inexact Rounded
  612. sqtx2597 squareroot 50E-3 -> 0.22 Inexact Rounded
  613. sqtx2598 squareroot 50E+1 -> 22 Inexact Rounded
  614. sqtx2599 squareroot 50E+2 -> 71 Inexact Rounded
  615. sqtx2600 squareroot 50E+3 -> 2.2E+2 Inexact Rounded
  616. sqtx2601 squareroot 0.51 -> 0.71 Inexact Rounded
  617. sqtx2602 squareroot 0.051 -> 0.23 Inexact Rounded
  618. sqtx2603 squareroot 51.0E-1 -> 2.3 Inexact Rounded
  619. sqtx2604 squareroot 51.00E-2 -> 0.71 Inexact Rounded
  620. sqtx2605 squareroot 51E-3 -> 0.23 Inexact Rounded
  621. sqtx2606 squareroot 51E+1 -> 23 Inexact Rounded
  622. sqtx2607 squareroot 51E+2 -> 71 Inexact Rounded
  623. sqtx2608 squareroot 51E+3 -> 2.3E+2 Inexact Rounded
  624. sqtx2609 squareroot 0.52 -> 0.72 Inexact Rounded
  625. sqtx2610 squareroot 0.052 -> 0.23 Inexact Rounded
  626. sqtx2611 squareroot 52.0E-1 -> 2.3 Inexact Rounded
  627. sqtx2612 squareroot 52.00E-2 -> 0.72 Inexact Rounded
  628. sqtx2613 squareroot 52E-3 -> 0.23 Inexact Rounded
  629. sqtx2614 squareroot 52E+1 -> 23 Inexact Rounded
  630. sqtx2615 squareroot 52E+2 -> 72 Inexact Rounded
  631. sqtx2616 squareroot 52E+3 -> 2.3E+2 Inexact Rounded
  632. sqtx2617 squareroot 0.53 -> 0.73 Inexact Rounded
  633. sqtx2618 squareroot 0.053 -> 0.23 Inexact Rounded
  634. sqtx2619 squareroot 53.0E-1 -> 2.3 Inexact Rounded
  635. sqtx2620 squareroot 53.00E-2 -> 0.73 Inexact Rounded
  636. sqtx2621 squareroot 53E-3 -> 0.23 Inexact Rounded
  637. sqtx2622 squareroot 53E+1 -> 23 Inexact Rounded
  638. sqtx2623 squareroot 53E+2 -> 73 Inexact Rounded
  639. sqtx2624 squareroot 53E+3 -> 2.3E+2 Inexact Rounded
  640. sqtx2625 squareroot 0.54 -> 0.73 Inexact Rounded
  641. sqtx2626 squareroot 0.054 -> 0.23 Inexact Rounded
  642. sqtx2627 squareroot 54.0E-1 -> 2.3 Inexact Rounded
  643. sqtx2628 squareroot 54.00E-2 -> 0.73 Inexact Rounded
  644. sqtx2629 squareroot 54E-3 -> 0.23 Inexact Rounded
  645. sqtx2630 squareroot 54E+1 -> 23 Inexact Rounded
  646. sqtx2631 squareroot 54E+2 -> 73 Inexact Rounded
  647. sqtx2632 squareroot 54E+3 -> 2.3E+2 Inexact Rounded
  648. sqtx2633 squareroot 0.55 -> 0.74 Inexact Rounded
  649. sqtx2634 squareroot 0.055 -> 0.23 Inexact Rounded
  650. sqtx2635 squareroot 55.0E-1 -> 2.3 Inexact Rounded
  651. sqtx2636 squareroot 55.00E-2 -> 0.74 Inexact Rounded
  652. sqtx2637 squareroot 55E-3 -> 0.23 Inexact Rounded
  653. sqtx2638 squareroot 55E+1 -> 23 Inexact Rounded
  654. sqtx2639 squareroot 55E+2 -> 74 Inexact Rounded
  655. sqtx2640 squareroot 55E+3 -> 2.3E+2 Inexact Rounded
  656. sqtx2641 squareroot 0.56 -> 0.75 Inexact Rounded
  657. sqtx2642 squareroot 0.056 -> 0.24 Inexact Rounded
  658. sqtx2643 squareroot 56.0E-1 -> 2.4 Inexact Rounded
  659. sqtx2644 squareroot 56.00E-2 -> 0.75 Inexact Rounded
  660. sqtx2645 squareroot 56E-3 -> 0.24 Inexact Rounded
  661. sqtx2646 squareroot 56E+1 -> 24 Inexact Rounded
  662. sqtx2647 squareroot 56E+2 -> 75 Inexact Rounded
  663. sqtx2648 squareroot 56E+3 -> 2.4E+2 Inexact Rounded
  664. sqtx2649 squareroot 0.57 -> 0.75 Inexact Rounded
  665. sqtx2650 squareroot 0.057 -> 0.24 Inexact Rounded
  666. sqtx2651 squareroot 57.0E-1 -> 2.4 Inexact Rounded
  667. sqtx2652 squareroot 57.00E-2 -> 0.75 Inexact Rounded
  668. sqtx2653 squareroot 57E-3 -> 0.24 Inexact Rounded
  669. sqtx2654 squareroot 57E+1 -> 24 Inexact Rounded
  670. sqtx2655 squareroot 57E+2 -> 75 Inexact Rounded
  671. sqtx2656 squareroot 57E+3 -> 2.4E+2 Inexact Rounded
  672. sqtx2657 squareroot 0.58 -> 0.76 Inexact Rounded
  673. sqtx2658 squareroot 0.058 -> 0.24 Inexact Rounded
  674. sqtx2659 squareroot 58.0E-1 -> 2.4 Inexact Rounded
  675. sqtx2660 squareroot 58.00E-2 -> 0.76 Inexact Rounded
  676. sqtx2661 squareroot 58E-3 -> 0.24 Inexact Rounded
  677. sqtx2662 squareroot 58E+1 -> 24 Inexact Rounded
  678. sqtx2663 squareroot 58E+2 -> 76 Inexact Rounded
  679. sqtx2664 squareroot 58E+3 -> 2.4E+2 Inexact Rounded
  680. sqtx2665 squareroot 0.59 -> 0.77 Inexact Rounded
  681. sqtx2666 squareroot 0.059 -> 0.24 Inexact Rounded
  682. sqtx2667 squareroot 59.0E-1 -> 2.4 Inexact Rounded
  683. sqtx2668 squareroot 59.00E-2 -> 0.77 Inexact Rounded
  684. sqtx2669 squareroot 59E-3 -> 0.24 Inexact Rounded
  685. sqtx2670 squareroot 59E+1 -> 24 Inexact Rounded
  686. sqtx2671 squareroot 59E+2 -> 77 Inexact Rounded
  687. sqtx2672 squareroot 59E+3 -> 2.4E+2 Inexact Rounded
  688. sqtx2673 squareroot 0.60 -> 0.77 Inexact Rounded
  689. sqtx2674 squareroot 0.060 -> 0.24 Inexact Rounded
  690. sqtx2675 squareroot 60.0E-1 -> 2.4 Inexact Rounded
  691. sqtx2676 squareroot 60.00E-2 -> 0.77 Inexact Rounded
  692. sqtx2677 squareroot 60E-3 -> 0.24 Inexact Rounded
  693. sqtx2678 squareroot 60E+1 -> 24 Inexact Rounded
  694. sqtx2679 squareroot 60E+2 -> 77 Inexact Rounded
  695. sqtx2680 squareroot 60E+3 -> 2.4E+2 Inexact Rounded
  696. sqtx2681 squareroot 0.61 -> 0.78 Inexact Rounded
  697. sqtx2682 squareroot 0.061 -> 0.25 Inexact Rounded
  698. sqtx2683 squareroot 61.0E-1 -> 2.5 Inexact Rounded
  699. sqtx2684 squareroot 61.00E-2 -> 0.78 Inexact Rounded
  700. sqtx2685 squareroot 61E-3 -> 0.25 Inexact Rounded
  701. sqtx2686 squareroot 61E+1 -> 25 Inexact Rounded
  702. sqtx2687 squareroot 61E+2 -> 78 Inexact Rounded
  703. sqtx2688 squareroot 61E+3 -> 2.5E+2 Inexact Rounded
  704. sqtx2689 squareroot 0.62 -> 0.79 Inexact Rounded
  705. sqtx2690 squareroot 0.062 -> 0.25 Inexact Rounded
  706. sqtx2691 squareroot 62.0E-1 -> 2.5 Inexact Rounded
  707. sqtx2692 squareroot 62.00E-2 -> 0.79 Inexact Rounded
  708. sqtx2693 squareroot 62E-3 -> 0.25 Inexact Rounded
  709. sqtx2694 squareroot 62E+1 -> 25 Inexact Rounded
  710. sqtx2695 squareroot 62E+2 -> 79 Inexact Rounded
  711. sqtx2696 squareroot 62E+3 -> 2.5E+2 Inexact Rounded
  712. sqtx2697 squareroot 0.63 -> 0.79 Inexact Rounded
  713. sqtx2698 squareroot 0.063 -> 0.25 Inexact Rounded
  714. sqtx2699 squareroot 63.0E-1 -> 2.5 Inexact Rounded
  715. sqtx2700 squareroot 63.00E-2 -> 0.79 Inexact Rounded
  716. sqtx2701 squareroot 63E-3 -> 0.25 Inexact Rounded
  717. sqtx2702 squareroot 63E+1 -> 25 Inexact Rounded
  718. sqtx2703 squareroot 63E+2 -> 79 Inexact Rounded
  719. sqtx2704 squareroot 63E+3 -> 2.5E+2 Inexact Rounded
  720. sqtx2705 squareroot 0.64 -> 0.8
  721. sqtx2706 squareroot 0.064 -> 0.25 Inexact Rounded
  722. sqtx2707 squareroot 64.0E-1 -> 2.5 Inexact Rounded
  723. sqtx2708 squareroot 64.00E-2 -> 0.80
  724. sqtx2709 squareroot 64E-3 -> 0.25 Inexact Rounded
  725. sqtx2710 squareroot 64E+1 -> 25 Inexact Rounded
  726. sqtx2711 squareroot 64E+2 -> 8E+1
  727. sqtx2712 squareroot 64E+3 -> 2.5E+2 Inexact Rounded
  728. sqtx2713 squareroot 0.65 -> 0.81 Inexact Rounded
  729. sqtx2714 squareroot 0.065 -> 0.25 Inexact Rounded
  730. sqtx2715 squareroot 65.0E-1 -> 2.5 Inexact Rounded
  731. sqtx2716 squareroot 65.00E-2 -> 0.81 Inexact Rounded
  732. sqtx2717 squareroot 65E-3 -> 0.25 Inexact Rounded
  733. sqtx2718 squareroot 65E+1 -> 25 Inexact Rounded
  734. sqtx2719 squareroot 65E+2 -> 81 Inexact Rounded
  735. sqtx2720 squareroot 65E+3 -> 2.5E+2 Inexact Rounded
  736. sqtx2721 squareroot 0.66 -> 0.81 Inexact Rounded
  737. sqtx2722 squareroot 0.066 -> 0.26 Inexact Rounded
  738. sqtx2723 squareroot 66.0E-1 -> 2.6 Inexact Rounded
  739. sqtx2724 squareroot 66.00E-2 -> 0.81 Inexact Rounded
  740. sqtx2725 squareroot 66E-3 -> 0.26 Inexact Rounded
  741. sqtx2726 squareroot 66E+1 -> 26 Inexact Rounded
  742. sqtx2727 squareroot 66E+2 -> 81 Inexact Rounded
  743. sqtx2728 squareroot 66E+3 -> 2.6E+2 Inexact Rounded
  744. sqtx2729 squareroot 0.67 -> 0.82 Inexact Rounded
  745. sqtx2730 squareroot 0.067 -> 0.26 Inexact Rounded
  746. sqtx2731 squareroot 67.0E-1 -> 2.6 Inexact Rounded
  747. sqtx2732 squareroot 67.00E-2 -> 0.82 Inexact Rounded
  748. sqtx2733 squareroot 67E-3 -> 0.26 Inexact Rounded
  749. sqtx2734 squareroot 67E+1 -> 26 Inexact Rounded
  750. sqtx2735 squareroot 67E+2 -> 82 Inexact Rounded
  751. sqtx2736 squareroot 67E+3 -> 2.6E+2 Inexact Rounded
  752. sqtx2737 squareroot 0.68 -> 0.82 Inexact Rounded
  753. sqtx2738 squareroot 0.068 -> 0.26 Inexact Rounded
  754. sqtx2739 squareroot 68.0E-1 -> 2.6 Inexact Rounded
  755. sqtx2740 squareroot 68.00E-2 -> 0.82 Inexact Rounded
  756. sqtx2741 squareroot 68E-3 -> 0.26 Inexact Rounded
  757. sqtx2742 squareroot 68E+1 -> 26 Inexact Rounded
  758. sqtx2743 squareroot 68E+2 -> 82 Inexact Rounded
  759. sqtx2744 squareroot 68E+3 -> 2.6E+2 Inexact Rounded
  760. sqtx2745 squareroot 0.69 -> 0.83 Inexact Rounded
  761. sqtx2746 squareroot 0.069 -> 0.26 Inexact Rounded
  762. sqtx2747 squareroot 69.0E-1 -> 2.6 Inexact Rounded
  763. sqtx2748 squareroot 69.00E-2 -> 0.83 Inexact Rounded
  764. sqtx2749 squareroot 69E-3 -> 0.26 Inexact Rounded
  765. sqtx2750 squareroot 69E+1 -> 26 Inexact Rounded
  766. sqtx2751 squareroot 69E+2 -> 83 Inexact Rounded
  767. sqtx2752 squareroot 69E+3 -> 2.6E+2 Inexact Rounded
  768. sqtx2753 squareroot 0.70 -> 0.84 Inexact Rounded
  769. sqtx2754 squareroot 0.070 -> 0.26 Inexact Rounded
  770. sqtx2755 squareroot 70.0E-1 -> 2.6 Inexact Rounded
  771. sqtx2756 squareroot 70.00E-2 -> 0.84 Inexact Rounded
  772. sqtx2757 squareroot 70E-3 -> 0.26 Inexact Rounded
  773. sqtx2758 squareroot 70E+1 -> 26 Inexact Rounded
  774. sqtx2759 squareroot 70E+2 -> 84 Inexact Rounded
  775. sqtx2760 squareroot 70E+3 -> 2.6E+2 Inexact Rounded
  776. sqtx2761 squareroot 0.71 -> 0.84 Inexact Rounded
  777. sqtx2762 squareroot 0.071 -> 0.27 Inexact Rounded
  778. sqtx2763 squareroot 71.0E-1 -> 2.7 Inexact Rounded
  779. sqtx2764 squareroot 71.00E-2 -> 0.84 Inexact Rounded
  780. sqtx2765 squareroot 71E-3 -> 0.27 Inexact Rounded
  781. sqtx2766 squareroot 71E+1 -> 27 Inexact Rounded
  782. sqtx2767 squareroot 71E+2 -> 84 Inexact Rounded
  783. sqtx2768 squareroot 71E+3 -> 2.7E+2 Inexact Rounded
  784. sqtx2769 squareroot 0.72 -> 0.85 Inexact Rounded
  785. sqtx2770 squareroot 0.072 -> 0.27 Inexact Rounded
  786. sqtx2771 squareroot 72.0E-1 -> 2.7 Inexact Rounded
  787. sqtx2772 squareroot 72.00E-2 -> 0.85 Inexact Rounded
  788. sqtx2773 squareroot 72E-3 -> 0.27 Inexact Rounded
  789. sqtx2774 squareroot 72E+1 -> 27 Inexact Rounded
  790. sqtx2775 squareroot 72E+2 -> 85 Inexact Rounded
  791. sqtx2776 squareroot 72E+3 -> 2.7E+2 Inexact Rounded
  792. sqtx2777 squareroot 0.73 -> 0.85 Inexact Rounded
  793. sqtx2778 squareroot 0.073 -> 0.27 Inexact Rounded
  794. sqtx2779 squareroot 73.0E-1 -> 2.7 Inexact Rounded
  795. sqtx2780 squareroot 73.00E-2 -> 0.85 Inexact Rounded
  796. sqtx2781 squareroot 73E-3 -> 0.27 Inexact Rounded
  797. sqtx2782 squareroot 73E+1 -> 27 Inexact Rounded
  798. sqtx2783 squareroot 73E+2 -> 85 Inexact Rounded
  799. sqtx2784 squareroot 73E+3 -> 2.7E+2 Inexact Rounded
  800. sqtx2785 squareroot 0.74 -> 0.86 Inexact Rounded
  801. sqtx2786 squareroot 0.074 -> 0.27 Inexact Rounded
  802. sqtx2787 squareroot 74.0E-1 -> 2.7 Inexact Rounded
  803. sqtx2788 squareroot 74.00E-2 -> 0.86 Inexact Rounded
  804. sqtx2789 squareroot 74E-3 -> 0.27 Inexact Rounded
  805. sqtx2790 squareroot 74E+1 -> 27 Inexact Rounded
  806. sqtx2791 squareroot 74E+2 -> 86 Inexact Rounded
  807. sqtx2792 squareroot 74E+3 -> 2.7E+2 Inexact Rounded
  808. sqtx2793 squareroot 0.75 -> 0.87 Inexact Rounded
  809. sqtx2794 squareroot 0.075 -> 0.27 Inexact Rounded
  810. sqtx2795 squareroot 75.0E-1 -> 2.7 Inexact Rounded
  811. sqtx2796 squareroot 75.00E-2 -> 0.87 Inexact Rounded
  812. sqtx2797 squareroot 75E-3 -> 0.27 Inexact Rounded
  813. sqtx2798 squareroot 75E+1 -> 27 Inexact Rounded
  814. sqtx2799 squareroot 75E+2 -> 87 Inexact Rounded
  815. sqtx2800 squareroot 75E+3 -> 2.7E+2 Inexact Rounded
  816. sqtx2801 squareroot 0.76 -> 0.87 Inexact Rounded
  817. sqtx2802 squareroot 0.076 -> 0.28 Inexact Rounded
  818. sqtx2803 squareroot 76.0E-1 -> 2.8 Inexact Rounded
  819. sqtx2804 squareroot 76.00E-2 -> 0.87 Inexact Rounded
  820. sqtx2805 squareroot 76E-3 -> 0.28 Inexact Rounded
  821. sqtx2806 squareroot 76E+1 -> 28 Inexact Rounded
  822. sqtx2807 squareroot 76E+2 -> 87 Inexact Rounded
  823. sqtx2808 squareroot 76E+3 -> 2.8E+2 Inexact Rounded
  824. sqtx2809 squareroot 0.77 -> 0.88 Inexact Rounded
  825. sqtx2810 squareroot 0.077 -> 0.28 Inexact Rounded
  826. sqtx2811 squareroot 77.0E-1 -> 2.8 Inexact Rounded
  827. sqtx2812 squareroot 77.00E-2 -> 0.88 Inexact Rounded
  828. sqtx2813 squareroot 77E-3 -> 0.28 Inexact Rounded
  829. sqtx2814 squareroot 77E+1 -> 28 Inexact Rounded
  830. sqtx2815 squareroot 77E+2 -> 88 Inexact Rounded
  831. sqtx2816 squareroot 77E+3 -> 2.8E+2 Inexact Rounded
  832. sqtx2817 squareroot 0.78 -> 0.88 Inexact Rounded
  833. sqtx2818 squareroot 0.078 -> 0.28 Inexact Rounded
  834. sqtx2819 squareroot 78.0E-1 -> 2.8 Inexact Rounded
  835. sqtx2820 squareroot 78.00E-2 -> 0.88 Inexact Rounded
  836. sqtx2821 squareroot 78E-3 -> 0.28 Inexact Rounded
  837. sqtx2822 squareroot 78E+1 -> 28 Inexact Rounded
  838. sqtx2823 squareroot 78E+2 -> 88 Inexact Rounded
  839. sqtx2824 squareroot 78E+3 -> 2.8E+2 Inexact Rounded
  840. sqtx2825 squareroot 0.79 -> 0.89 Inexact Rounded
  841. sqtx2826 squareroot 0.079 -> 0.28 Inexact Rounded
  842. sqtx2827 squareroot 79.0E-1 -> 2.8 Inexact Rounded
  843. sqtx2828 squareroot 79.00E-2 -> 0.89 Inexact Rounded
  844. sqtx2829 squareroot 79E-3 -> 0.28 Inexact Rounded
  845. sqtx2830 squareroot 79E+1 -> 28 Inexact Rounded
  846. sqtx2831 squareroot 79E+2 -> 89 Inexact Rounded
  847. sqtx2832 squareroot 79E+3 -> 2.8E+2 Inexact Rounded
  848. sqtx2833 squareroot 0.80 -> 0.89 Inexact Rounded
  849. sqtx2834 squareroot 0.080 -> 0.28 Inexact Rounded
  850. sqtx2835 squareroot 80.0E-1 -> 2.8 Inexact Rounded
  851. sqtx2836 squareroot 80.00E-2 -> 0.89 Inexact Rounded
  852. sqtx2837 squareroot 80E-3 -> 0.28 Inexact Rounded
  853. sqtx2838 squareroot 80E+1 -> 28 Inexact Rounded
  854. sqtx2839 squareroot 80E+2 -> 89 Inexact Rounded
  855. sqtx2840 squareroot 80E+3 -> 2.8E+2 Inexact Rounded
  856. sqtx2841 squareroot 0.81 -> 0.9
  857. sqtx2842 squareroot 0.081 -> 0.28 Inexact Rounded
  858. sqtx2843 squareroot 81.0E-1 -> 2.8 Inexact Rounded
  859. sqtx2844 squareroot 81.00E-2 -> 0.90
  860. sqtx2845 squareroot 81E-3 -> 0.28 Inexact Rounded
  861. sqtx2846 squareroot 81E+1 -> 28 Inexact Rounded
  862. sqtx2847 squareroot 81E+2 -> 9E+1
  863. sqtx2848 squareroot 81E+3 -> 2.8E+2 Inexact Rounded
  864. sqtx2849 squareroot 0.82 -> 0.91 Inexact Rounded
  865. sqtx2850 squareroot 0.082 -> 0.29 Inexact Rounded
  866. sqtx2851 squareroot 82.0E-1 -> 2.9 Inexact Rounded
  867. sqtx2852 squareroot 82.00E-2 -> 0.91 Inexact Rounded
  868. sqtx2853 squareroot 82E-3 -> 0.29 Inexact Rounded
  869. sqtx2854 squareroot 82E+1 -> 29 Inexact Rounded
  870. sqtx2855 squareroot 82E+2 -> 91 Inexact Rounded
  871. sqtx2856 squareroot 82E+3 -> 2.9E+2 Inexact Rounded
  872. sqtx2857 squareroot 0.83 -> 0.91 Inexact Rounded
  873. sqtx2858 squareroot 0.083 -> 0.29 Inexact Rounded
  874. sqtx2859 squareroot 83.0E-1 -> 2.9 Inexact Rounded
  875. sqtx2860 squareroot 83.00E-2 -> 0.91 Inexact Rounded
  876. sqtx2861 squareroot 83E-3 -> 0.29 Inexact Rounded
  877. sqtx2862 squareroot 83E+1 -> 29 Inexact Rounded
  878. sqtx2863 squareroot 83E+2 -> 91 Inexact Rounded
  879. sqtx2864 squareroot 83E+3 -> 2.9E+2 Inexact Rounded
  880. sqtx2865 squareroot 0.84 -> 0.92 Inexact Rounded
  881. sqtx2866 squareroot 0.084 -> 0.29 Inexact Rounded
  882. sqtx2867 squareroot 84.0E-1 -> 2.9 Inexact Rounded
  883. sqtx2868 squareroot 84.00E-2 -> 0.92 Inexact Rounded
  884. sqtx2869 squareroot 84E-3 -> 0.29 Inexact Rounded
  885. sqtx2870 squareroot 84E+1 -> 29 Inexact Rounded
  886. sqtx2871 squareroot 84E+2 -> 92 Inexact Rounded
  887. sqtx2872 squareroot 84E+3 -> 2.9E+2 Inexact Rounded
  888. sqtx2873 squareroot 0.85 -> 0.92 Inexact Rounded
  889. sqtx2874 squareroot 0.085 -> 0.29 Inexact Rounded
  890. sqtx2875 squareroot 85.0E-1 -> 2.9 Inexact Rounded
  891. sqtx2876 squareroot 85.00E-2 -> 0.92 Inexact Rounded
  892. sqtx2877 squareroot 85E-3 -> 0.29 Inexact Rounded
  893. sqtx2878 squareroot 85E+1 -> 29 Inexact Rounded
  894. sqtx2879 squareroot 85E+2 -> 92 Inexact Rounded
  895. sqtx2880 squareroot 85E+3 -> 2.9E+2 Inexact Rounded
  896. sqtx2881 squareroot 0.86 -> 0.93 Inexact Rounded
  897. sqtx2882 squareroot 0.086 -> 0.29 Inexact Rounded
  898. sqtx2883 squareroot 86.0E-1 -> 2.9 Inexact Rounded
  899. sqtx2884 squareroot 86.00E-2 -> 0.93 Inexact Rounded
  900. sqtx2885 squareroot 86E-3 -> 0.29 Inexact Rounded
  901. sqtx2886 squareroot 86E+1 -> 29 Inexact Rounded
  902. sqtx2887 squareroot 86E+2 -> 93 Inexact Rounded
  903. sqtx2888 squareroot 86E+3 -> 2.9E+2 Inexact Rounded
  904. sqtx2889 squareroot 0.87 -> 0.93 Inexact Rounded
  905. sqtx2890 squareroot 0.087 -> 0.29 Inexact Rounded
  906. sqtx2891 squareroot 87.0E-1 -> 2.9 Inexact Rounded
  907. sqtx2892 squareroot 87.00E-2 -> 0.93 Inexact Rounded
  908. sqtx2893 squareroot 87E-3 -> 0.29 Inexact Rounded
  909. sqtx2894 squareroot 87E+1 -> 29 Inexact Rounded
  910. sqtx2895 squareroot 87E+2 -> 93 Inexact Rounded
  911. sqtx2896 squareroot 87E+3 -> 2.9E+2 Inexact Rounded
  912. sqtx2897 squareroot 0.88 -> 0.94 Inexact Rounded
  913. sqtx2898 squareroot 0.088 -> 0.30 Inexact Rounded
  914. sqtx2899 squareroot 88.0E-1 -> 3.0 Inexact Rounded
  915. sqtx2900 squareroot 88.00E-2 -> 0.94 Inexact Rounded
  916. sqtx2901 squareroot 88E-3 -> 0.30 Inexact Rounded
  917. sqtx2902 squareroot 88E+1 -> 30 Inexact Rounded
  918. sqtx2903 squareroot 88E+2 -> 94 Inexact Rounded
  919. sqtx2904 squareroot 88E+3 -> 3.0E+2 Inexact Rounded
  920. sqtx2905 squareroot 0.89 -> 0.94 Inexact Rounded
  921. sqtx2906 squareroot 0.089 -> 0.30 Inexact Rounded
  922. sqtx2907 squareroot 89.0E-1 -> 3.0 Inexact Rounded
  923. sqtx2908 squareroot 89.00E-2 -> 0.94 Inexact Rounded
  924. sqtx2909 squareroot 89E-3 -> 0.30 Inexact Rounded
  925. sqtx2910 squareroot 89E+1 -> 30 Inexact Rounded
  926. sqtx2911 squareroot 89E+2 -> 94 Inexact Rounded
  927. sqtx2912 squareroot 89E+3 -> 3.0E+2 Inexact Rounded
  928. sqtx2913 squareroot 0.90 -> 0.95 Inexact Rounded
  929. sqtx2914 squareroot 0.090 -> 0.30
  930. sqtx2915 squareroot 90.0E-1 -> 3.0
  931. sqtx2916 squareroot 90.00E-2 -> 0.95 Inexact Rounded
  932. sqtx2917 squareroot 90E-3 -> 0.30
  933. sqtx2918 squareroot 90E+1 -> 30
  934. sqtx2919 squareroot 90E+2 -> 95 Inexact Rounded
  935. sqtx2920 squareroot 90E+3 -> 3.0E+2
  936. sqtx2921 squareroot 0.91 -> 0.95 Inexact Rounded
  937. sqtx2922 squareroot 0.091 -> 0.30 Inexact Rounded
  938. sqtx2923 squareroot 91.0E-1 -> 3.0 Inexact Rounded
  939. sqtx2924 squareroot 91.00E-2 -> 0.95 Inexact Rounded
  940. sqtx2925 squareroot 91E-3 -> 0.30 Inexact Rounded
  941. sqtx2926 squareroot 91E+1 -> 30 Inexact Rounded
  942. sqtx2927 squareroot 91E+2 -> 95 Inexact Rounded
  943. sqtx2928 squareroot 91E+3 -> 3.0E+2 Inexact Rounded
  944. sqtx2929 squareroot 0.92 -> 0.96 Inexact Rounded
  945. sqtx2930 squareroot 0.092 -> 0.30 Inexact Rounded
  946. sqtx2931 squareroot 92.0E-1 -> 3.0 Inexact Rounded
  947. sqtx2932 squareroot 92.00E-2 -> 0.96 Inexact Rounded
  948. sqtx2933 squareroot 92E-3 -> 0.30 Inexact Rounded
  949. sqtx2934 squareroot 92E+1 -> 30 Inexact Rounded
  950. sqtx2935 squareroot 92E+2 -> 96 Inexact Rounded
  951. sqtx2936 squareroot 92E+3 -> 3.0E+2 Inexact Rounded
  952. sqtx2937 squareroot 0.93 -> 0.96 Inexact Rounded
  953. sqtx2938 squareroot 0.093 -> 0.30 Inexact Rounded
  954. sqtx2939 squareroot 93.0E-1 -> 3.0 Inexact Rounded
  955. sqtx2940 squareroot 93.00E-2 -> 0.96 Inexact Rounded
  956. sqtx2941 squareroot 93E-3 -> 0.30 Inexact Rounded
  957. sqtx2942 squareroot 93E+1 -> 30 Inexact Rounded
  958. sqtx2943 squareroot 93E+2 -> 96 Inexact Rounded
  959. sqtx2944 squareroot 93E+3 -> 3.0E+2 Inexact Rounded
  960. sqtx2945 squareroot 0.94 -> 0.97 Inexact Rounded
  961. sqtx2946 squareroot 0.094 -> 0.31 Inexact Rounded
  962. sqtx2947 squareroot 94.0E-1 -> 3.1 Inexact Rounded
  963. sqtx2948 squareroot 94.00E-2 -> 0.97 Inexact Rounded
  964. sqtx2949 squareroot 94E-3 -> 0.31 Inexact Rounded
  965. sqtx2950 squareroot 94E+1 -> 31 Inexact Rounded
  966. sqtx2951 squareroot 94E+2 -> 97 Inexact Rounded
  967. sqtx2952 squareroot 94E+3 -> 3.1E+2 Inexact Rounded
  968. sqtx2953 squareroot 0.95 -> 0.97 Inexact Rounded
  969. sqtx2954 squareroot 0.095 -> 0.31 Inexact Rounded
  970. sqtx2955 squareroot 95.0E-1 -> 3.1 Inexact Rounded
  971. sqtx2956 squareroot 95.00E-2 -> 0.97 Inexact Rounded
  972. sqtx2957 squareroot 95E-3 -> 0.31 Inexact Rounded
  973. sqtx2958 squareroot 95E+1 -> 31 Inexact Rounded
  974. sqtx2959 squareroot 95E+2 -> 97 Inexact Rounded
  975. sqtx2960 squareroot 95E+3 -> 3.1E+2 Inexact Rounded
  976. sqtx2961 squareroot 0.96 -> 0.98 Inexact Rounded
  977. sqtx2962 squareroot 0.096 -> 0.31 Inexact Rounded
  978. sqtx2963 squareroot 96.0E-1 -> 3.1 Inexact Rounded
  979. sqtx2964 squareroot 96.00E-2 -> 0.98 Inexact Rounded
  980. sqtx2965 squareroot 96E-3 -> 0.31 Inexact Rounded
  981. sqtx2966 squareroot 96E+1 -> 31 Inexact Rounded
  982. sqtx2967 squareroot 96E+2 -> 98 Inexact Rounded
  983. sqtx2968 squareroot 96E+3 -> 3.1E+2 Inexact Rounded
  984. sqtx2969 squareroot 0.97 -> 0.98 Inexact Rounded
  985. sqtx2970 squareroot 0.097 -> 0.31 Inexact Rounded
  986. sqtx2971 squareroot 97.0E-1 -> 3.1 Inexact Rounded
  987. sqtx2972 squareroot 97.00E-2 -> 0.98 Inexact Rounded
  988. sqtx2973 squareroot 97E-3 -> 0.31 Inexact Rounded
  989. sqtx2974 squareroot 97E+1 -> 31 Inexact Rounded
  990. sqtx2975 squareroot 97E+2 -> 98 Inexact Rounded
  991. sqtx2976 squareroot 97E+3 -> 3.1E+2 Inexact Rounded
  992. sqtx2977 squareroot 0.98 -> 0.99 Inexact Rounded
  993. sqtx2978 squareroot 0.098 -> 0.31 Inexact Rounded
  994. sqtx2979 squareroot 98.0E-1 -> 3.1 Inexact Rounded
  995. sqtx2980 squareroot 98.00E-2 -> 0.99 Inexact Rounded
  996. sqtx2981 squareroot 98E-3 -> 0.31 Inexact Rounded
  997. sqtx2982 squareroot 98E+1 -> 31 Inexact Rounded
  998. sqtx2983 squareroot 98E+2 -> 99 Inexact Rounded
  999. sqtx2984 squareroot 98E+3 -> 3.1E+2 Inexact Rounded
  1000. sqtx2985 squareroot 0.99 -> 0.99 Inexact Rounded
  1001. sqtx2986 squareroot 0.099 -> 0.31 Inexact Rounded
  1002. sqtx2987 squareroot 99.0E-1 -> 3.1 Inexact Rounded
  1003. sqtx2988 squareroot 99.00E-2 -> 0.99 Inexact Rounded
  1004. sqtx2989 squareroot 99E-3 -> 0.31 Inexact Rounded
  1005. sqtx2990 squareroot 99E+1 -> 31 Inexact Rounded
  1006. sqtx2991 squareroot 99E+2 -> 99 Inexact Rounded
  1007. sqtx2992 squareroot 99E+3 -> 3.1E+2 Inexact Rounded
  1008. -- Precision 3 squareroot tests [exhaustive, f and f/10]
  1009. rounding: half_even
  1010. maxExponent: 999
  1011. minexponent: -999
  1012. precision: 3
  1013. sqtx3001 squareroot 0.1 -> 0.316 Inexact Rounded
  1014. sqtx3002 squareroot 0.01 -> 0.1
  1015. sqtx3003 squareroot 0.2 -> 0.447 Inexact Rounded
  1016. sqtx3004 squareroot 0.02 -> 0.141 Inexact Rounded
  1017. sqtx3005 squareroot 0.3 -> 0.548 Inexact Rounded
  1018. sqtx3006 squareroot 0.03 -> 0.173 Inexact Rounded
  1019. sqtx