Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r58096 | brett.cannon | 2007-09-10 23:38:27 +0200 (Mon, 10 Sep 2007) | 4 lines

  Fix a possible segfault from recursing too deep to get the repr of a list.

  Closes issue #1096.
........
  r58097 | bill.janssen | 2007-09-10 23:51:02 +0200 (Mon, 10 Sep 2007) | 33 lines

  More work on SSL support.

  * Much expanded test suite:

    All protocols tested against all other protocols.
    All protocols tested with all certificate options.
    Tests for bad key and bad cert.
    Test of STARTTLS functionality.
    Test of RAND_* functions.

  * Fixes for threading/malloc bug.

  * Issue 1065 fixed:

    sslsocket class renamed to SSLSocket.
    sslerror class renamed to SSLError.
    Function "wrap_socket" now used to wrap an existing socket.

  * Issue 1583946 finally fixed:

    Support for subjectAltName added.
    Subject name now returned as proper DN list of RDNs.

  * SSLError exported from socket as "sslerror".

  * RAND_* functions properly exported from ssl.py.

  * Documentation improved:

    Example of how to create a self-signed certificate.
    Better indexing.
........
  r58098 | guido.van.rossum | 2007-09-11 00:02:25 +0200 (Tue, 11 Sep 2007) | 9 lines

  Patch # 1140 (my code, approved by Effbot).

  Make sure the type of the return value of re.sub(x, y, z) is the type
  of y+x (i.e. unicode if either is unicode, str if they are both str)
  even if there are no substitutions or if x==z (which triggered various
  special cases in join_list()).

  Could be backported to 2.5; no need to port to 3.0.
........
  r58099 | guido.van.rossum | 2007-09-11 00:36:02 +0200 (Tue, 11 Sep 2007) | 8 lines

  Patch # 1026 by Benjamin Aranguren (with Alex Martelli):
  Backport abc.py and isinstance/issubclass overloading to 2.6.

  I had to backport test_typechecks.py myself, and make one small change
  to abc.py to avoid duplicate work when x.__class__ and type(x) are the
  same.
........
  r58100 | bill.janssen | 2007-09-11 01:41:24 +0200 (Tue, 11 Sep 2007) | 3 lines

  A better way of finding an open port to test with.
........
  r58101 | bill.janssen | 2007-09-11 03:09:19 +0200 (Tue, 11 Sep 2007) | 4 lines

  Make sure test_ssl doesn't reference the ssl module in a
  context where it can't be imported.
........
  r58102 | bill.janssen | 2007-09-11 04:42:07 +0200 (Tue, 11 Sep 2007) | 3 lines

  Fix some documentation bugs.
........
  r58103 | nick.coghlan | 2007-09-11 16:01:18 +0200 (Tue, 11 Sep 2007) | 1 line

  Always use the -E flag when spawning subprocesses in test_cmd_line (Issue 1056)
........
  r58106 | thomas.heller | 2007-09-11 21:17:48 +0200 (Tue, 11 Sep 2007) | 3 lines

  Disable some tests that fail on the 'ppc Debian unstable' buildbot to
  find out if they cause the segfault on the 'alpha Debian' machine.
........
  r58108 | brett.cannon | 2007-09-11 23:02:28 +0200 (Tue, 11 Sep 2007) | 6 lines

  Generators had their throw() method allowing string exceptions.  That's a
  no-no.

  Fixes issue #1147.  Need to fix 2.5 to raise a proper warning if a string
  exception is passed in.
........
  r58112 | georg.brandl | 2007-09-12 20:03:51 +0200 (Wed, 12 Sep 2007) | 3 lines

  New documentation page for the bdb module.
  (This doesn't need to be merged to Py3k.)
........
  r58114 | georg.brandl | 2007-09-12 20:05:57 +0200 (Wed, 12 Sep 2007) | 2 lines

  Bug #1152: use non-deprecated name in example.
........
  r58115 | georg.brandl | 2007-09-12 20:08:33 +0200 (Wed, 12 Sep 2007) | 2 lines

  Fix #1122: wrong return type documented for various _Size() functions.
........
  r58117 | georg.brandl | 2007-09-12 20:10:56 +0200 (Wed, 12 Sep 2007) | 2 lines

  Fix #1139: PyFile_Encoding really is PyFile_SetEncoding.
........
  r58119 | georg.brandl | 2007-09-12 20:29:18 +0200 (Wed, 12 Sep 2007) | 2 lines

  bug #1154: release memory allocated by "es" PyArg_ParseTuple format specifier.
........
  r58121 | bill.janssen | 2007-09-12 20:52:05 +0200 (Wed, 12 Sep 2007) | 1 line

  root certificate for https://svn.python.org/, used in test_ssl
........
  r58122 | georg.brandl | 2007-09-12 21:00:07 +0200 (Wed, 12 Sep 2007) | 3 lines

  Bug #1153: repr.repr() now doesn't require set and dictionary items
  to be orderable to properly represent them.
........
  r58125 | georg.brandl | 2007-09-12 21:29:28 +0200 (Wed, 12 Sep 2007) | 4 lines

  #1120: put explicit version in the shebang lines of pydoc, idle
  and smtpd.py scripts that are installed by setup.py. That way, they
  work when only "make altinstall" is used.
........
  r58139 | mark.summerfield | 2007-09-13 16:54:30 +0200 (Thu, 13 Sep 2007) | 9 lines

  Replaced variable o with obj in operator.rst because o is easy to
  confuse.

  Added a note about Python 3's collections.Mapping etc., above section
  that describes isMappingType() etc.

  Added xrefs between os, os.path, fileinput, and open().
........
  r58143 | facundo.batista | 2007-09-13 20:13:15 +0200 (Thu, 13 Sep 2007) | 7 lines


  Merged the decimal-branch (revisions 54886 to 58140). Decimal is now
  fully updated to the latests Decimal Specification (v1.66) and the
  latests test cases (v2.56).

  Thanks to Mark Dickinson for all his help during this process.
........
  r58145 | facundo.batista | 2007-09-13 20:42:09 +0200 (Thu, 13 Sep 2007) | 7 lines


  Put the parameter watchexp back in (changed watchexp from an int
  to a bool).  Also second argument to watchexp is now converted
  to Decimal, just as with all the other two-argument operations.

  Thanks Mark Dickinson.
........
  r58147 | andrew.kuchling | 2007-09-14 00:49:34 +0200 (Fri, 14 Sep 2007) | 1 line

  Add various items
........
  r58148 | andrew.kuchling | 2007-09-14 00:50:10 +0200 (Fri, 14 Sep 2007) | 1 line

  Make target unique
........
  r58154 | facundo.batista | 2007-09-14 20:58:34 +0200 (Fri, 14 Sep 2007) | 3 lines


  Included the new functions, and new descriptions.
........
  r58155 | thomas.heller | 2007-09-14 21:40:35 +0200 (Fri, 14 Sep 2007) | 2 lines

  ctypes.util.find_library uses dump(1) instead of objdump(1) on Solaris.
  Fixes issue #1777530; will backport to release25-maint.
........
  r58159 | facundo.batista | 2007-09-14 23:29:52 +0200 (Fri, 14 Sep 2007) | 3 lines


  Some additions (examples and a bit on the tutorial).
........
  r58160 | georg.brandl | 2007-09-15 18:53:36 +0200 (Sat, 15 Sep 2007) | 2 lines

  Remove bdb from the "undocumented modules" list.
........
  r58164 | bill.janssen | 2007-09-17 00:06:00 +0200 (Mon, 17 Sep 2007) | 15 lines

  Add support for asyncore server-side SSL support.  This requires
  adding the 'makefile' method to ssl.SSLSocket, and importing the
  requisite fakefile class from socket.py, and making the appropriate
  changes to it to make it use the SSL connection.

  Added sample HTTPS server to test_ssl.py, and test that uses it.

  Change SSL tests to use https://svn.python.org/, instead of
  www.sf.net and pop.gmail.com.

  Added utility function to ssl module, get_server_certificate,
  to wrap up the several things to be done to pull a certificate
  from a remote server.
........
  r58173 | bill.janssen | 2007-09-17 01:16:46 +0200 (Mon, 17 Sep 2007) | 1 line

  use binary mode when reading files for testAsyncore to make Windows happy
........
  r58175 | raymond.hettinger | 2007-09-17 02:55:00 +0200 (Mon, 17 Sep 2007) | 7 lines

  Sync-up named tuples with the latest version of the ASPN recipe.
  Allows optional commas in the field-name spec (help when named tuples are used in conjuction with sql queries).
  Adds the __fields__ attribute for introspection and to support conversion to dictionary form.
  Adds a  __replace__() method similar to str.replace() but using a named field as a target.
  Clean-up spelling and presentation in doc-strings.
........
  r58176 | brett.cannon | 2007-09-17 05:28:34 +0200 (Mon, 17 Sep 2007) | 5 lines

  Add a bunch of GIL release/acquire points in tp_print implementations and for
  PyObject_Print().

  Closes issue #1164.
........
  r58177 | sean.reifschneider | 2007-09-17 07:45:04 +0200 (Mon, 17 Sep 2007) | 2 lines

  issue1597011: Fix for bz2 module corner-case error due to error checking bug.
........
  r58180 | facundo.batista | 2007-09-17 18:26:50 +0200 (Mon, 17 Sep 2007) | 3 lines


  Decimal is updated, :)
........
  r58181 | facundo.batista | 2007-09-17 19:30:13 +0200 (Mon, 17 Sep 2007) | 5 lines


  The methods always return Decimal classes, even if they're
  executed through a subclass (thanks Mark Dickinson).
  Added a bit of testing for this.
........
  r58183 | sean.reifschneider | 2007-09-17 22:53:21 +0200 (Mon, 17 Sep 2007) | 2 lines

  issue1082: Fixing platform and system for Vista.
........
  r58185 | andrew.kuchling | 2007-09-18 03:36:16 +0200 (Tue, 18 Sep 2007) | 1 line

  Add item; sort properly
........
  r58186 | raymond.hettinger | 2007-09-18 05:33:19 +0200 (Tue, 18 Sep 2007) | 1 line

  Handle corner cased on 0-tuples and 1-tuples.  Add verbose option so people can see how it works.
........
  r58192 | georg.brandl | 2007-09-18 09:24:40 +0200 (Tue, 18 Sep 2007) | 2 lines

  A bit of reordering, also show more subheadings in the lang ref index.
........
  r58193 | facundo.batista | 2007-09-18 18:53:18 +0200 (Tue, 18 Sep 2007) | 4 lines


  Speed up of the various division operations (remainder, divide,
  divideint and divmod). Thanks Mark Dickinson.
........
  r58197 | raymond.hettinger | 2007-09-19 00:18:02 +0200 (Wed, 19 Sep 2007) | 1 line

  Cleanup docs for NamedTuple.
........
diff --git a/Lib/test/decimaltestdata/powersqrt.decTest b/Lib/test/decimaltestdata/powersqrt.decTest
new file mode 100644
index 0000000..36e5cbb
--- /dev/null
+++ b/Lib/test/decimaltestdata/powersqrt.decTest
@@ -0,0 +1,2970 @@
+------------------------------------------------------------------------

+-- powersqrt.decTest -- decimal square root, using power              --

+-- Copyright (c) IBM Corporation, 2004, 2007.  All rights reserved.   --

+------------------------------------------------------------------------

+-- Please see the document "General Decimal Arithmetic Testcases"     --

+-- at http://www2.hursley.ibm.com/decimal for the description of      --

+-- these testcases.                                                   --

+--                                                                    --

+-- These testcases are experimental ('beta' versions), and they       --

+-- may contain errors.  They are offered on an as-is basis.  In       --

+-- particular, achieving the same results as the tests here is not    --

+-- a guarantee that an implementation complies with any Standard      --

+-- or specification.  The tests are not exhaustive.                   --

+--                                                                    --

+-- Please send comments, suggestions, and corrections to the author:  --

+--   Mike Cowlishaw, IBM Fellow                                       --

+--   IBM UK, PO Box 31, Birmingham Road, Warwick CV34 5JL, UK         --

+--   mfc@uk.ibm.com                                                   --

+------------------------------------------------------------------------

+version: 2.56

+

+-- These testcases are taken from squareroot.decTest but are

+-- evaluated using the power operator.  The differences in results

+-- (153 out of 2856) fall into the following categories:

+--

+--    x    ** 0.5 (x>0) has no preferred exponent, and is Inexact

+--                (and hence full precision); almost all differences are

+--                in this category

+--    0.00 ** 0.5 becomes 0 (not 0.0), etc.

+--   -0    ** 0.5 becomes 0 (never -0)

+--    Some exact subnormals become inexact and hence underflows

+

+extended:    1

+precision:   9

+rounding:    half_even

+maxExponent: 384

+minexponent: -383

+

+-- basics

+pwsx001  power 1        0.5 -> 1.00000000 Inexact Rounded

+pwsx002  power -1       0.5 -> NaN Invalid_operation

+pwsx003  power 1.00     0.5 -> 1.00000000 Inexact Rounded

+pwsx004  power -1.00    0.5 -> NaN Invalid_operation

+pwsx005  power 0        0.5 -> 0

+pwsx006  power 00.0     0.5 -> 0

+pwsx007  power 0.00     0.5 -> 0

+pwsx008  power 00.00    0.5 -> 0

+pwsx009  power 00.000   0.5 -> 0

+pwsx010  power 00.0000  0.5 -> 0

+pwsx011  power 00       0.5 -> 0

+

+pwsx012  power -2       0.5 -> NaN Invalid_operation

+pwsx013  power 2        0.5 -> 1.41421356 Inexact Rounded

+pwsx014  power -2.00    0.5 -> NaN Invalid_operation

+pwsx015  power 2.00     0.5 -> 1.41421356 Inexact Rounded

+pwsx016  power -0       0.5 -> 0

+pwsx017  power -0.0     0.5 -> 0

+pwsx018  power -00.00   0.5 -> 0

+pwsx019  power -00.000  0.5 -> 0

+pwsx020  power -0.0000  0.5 -> 0

+pwsx021  power -0E+9    0.5 -> 0

+pwsx022  power -0E+10   0.5 -> 0

+pwsx023  power -0E+11   0.5 -> 0

+pwsx024  power -0E+12   0.5 -> 0

+pwsx025  power -00      0.5 -> 0

+pwsx026  power 0E+5     0.5 -> 0

+pwsx027  power 4.0      0.5 -> 2.00000000 Inexact Rounded

+pwsx028  power 4.00     0.5 -> 2.00000000 Inexact Rounded

+

+pwsx030  power +0.1             0.5 -> 0.316227766 Inexact Rounded

+pwsx031  power -0.1             0.5 -> NaN Invalid_operation

+pwsx032  power +0.01            0.5 -> 0.100000000 Inexact Rounded

+pwsx033  power -0.01            0.5 -> NaN Invalid_operation

+pwsx034  power +0.001           0.5 -> 0.0316227766 Inexact Rounded

+pwsx035  power -0.001           0.5 -> NaN Invalid_operation

+pwsx036  power +0.000001        0.5 -> 0.00100000000 Inexact Rounded

+pwsx037  power -0.000001        0.5 -> NaN Invalid_operation

+pwsx038  power +0.000000000001  0.5 -> 0.00000100000000 Inexact Rounded

+pwsx039  power -0.000000000001  0.5 -> NaN Invalid_operation

+

+pwsx041  power 1.1         0.5 -> 1.04880885 Inexact Rounded

+pwsx042  power 1.10        0.5 -> 1.04880885 Inexact Rounded

+pwsx043  power 1.100       0.5 -> 1.04880885 Inexact Rounded

+pwsx044  power 1.110       0.5 -> 1.05356538 Inexact Rounded

+pwsx045  power -1.1        0.5 -> NaN Invalid_operation

+pwsx046  power -1.10       0.5 -> NaN Invalid_operation

+pwsx047  power -1.100      0.5 -> NaN Invalid_operation

+pwsx048  power -1.110      0.5 -> NaN Invalid_operation

+pwsx049  power 9.9         0.5 -> 3.14642654 Inexact Rounded

+pwsx050  power 9.90        0.5 -> 3.14642654 Inexact Rounded

+pwsx051  power 9.900       0.5 -> 3.14642654 Inexact Rounded

+pwsx052  power 9.990       0.5 -> 3.16069613 Inexact Rounded

+pwsx053  power -9.9        0.5 -> NaN Invalid_operation

+pwsx054  power -9.90       0.5 -> NaN Invalid_operation

+pwsx055  power -9.900      0.5 -> NaN Invalid_operation

+pwsx056  power -9.990      0.5 -> NaN Invalid_operation

+

+pwsx060  power  1            0.5 -> 1.00000000 Inexact Rounded

+pwsx061  power  1.0          0.5 -> 1.00000000 Inexact Rounded

+pwsx062  power  1.00         0.5 -> 1.00000000 Inexact Rounded

+pwsx063  power  10.0         0.5 -> 3.16227766 Inexact Rounded

+pwsx064  power  10.0         0.5 -> 3.16227766 Inexact Rounded

+pwsx065  power  10.0         0.5 -> 3.16227766 Inexact Rounded

+pwsx066  power  10.00        0.5 -> 3.16227766 Inexact Rounded

+pwsx067  power  100          0.5 -> 10.0000000 Inexact Rounded

+pwsx068  power  100.0        0.5 -> 10.0000000 Inexact Rounded

+pwsx069  power  100.00       0.5 -> 10.0000000 Inexact Rounded

+pwsx070  power  1.1000E+3    0.5 -> 33.1662479 Inexact Rounded

+pwsx071  power  1.10000E+3   0.5 -> 33.1662479 Inexact Rounded

+pwsx072  power -10.0         0.5 -> NaN Invalid_operation

+pwsx073  power -10.00        0.5 -> NaN Invalid_operation

+pwsx074  power -100.0        0.5 -> NaN Invalid_operation

+pwsx075  power -100.00       0.5 -> NaN Invalid_operation

+pwsx076  power -1.1000E+3    0.5 -> NaN Invalid_operation

+pwsx077  power -1.10000E+3   0.5 -> NaN Invalid_operation

+

+-- famous squares

+pwsx080  power     1   0.5 -> 1.00000000 Inexact Rounded

+pwsx081  power     4   0.5 -> 2.00000000 Inexact Rounded

+pwsx082  power     9   0.5 -> 3.00000000 Inexact Rounded

+pwsx083  power    16   0.5 -> 4.00000000 Inexact Rounded

+pwsx084  power    25   0.5 -> 5.00000000 Inexact Rounded

+pwsx085  power    36   0.5 -> 6.00000000 Inexact Rounded

+pwsx086  power    49   0.5 -> 7.00000000 Inexact Rounded

+pwsx087  power    64   0.5 -> 8.00000000 Inexact Rounded

+pwsx088  power    81   0.5 -> 9.00000000 Inexact Rounded

+pwsx089  power   100   0.5 -> 10.0000000 Inexact Rounded

+pwsx090  power   121   0.5 -> 11.0000000 Inexact Rounded

+pwsx091  power   144   0.5 -> 12.0000000 Inexact Rounded

+pwsx092  power   169   0.5 -> 13.0000000 Inexact Rounded

+pwsx093  power   256   0.5 -> 16.0000000 Inexact Rounded

+pwsx094  power  1024   0.5 -> 32.0000000 Inexact Rounded

+pwsx095  power  4096   0.5 -> 64.0000000 Inexact Rounded

+pwsx100  power   0.01  0.5 -> 0.100000000 Inexact Rounded

+pwsx101  power   0.04  0.5 -> 0.200000000 Inexact Rounded

+pwsx102  power   0.09  0.5 -> 0.300000000 Inexact Rounded

+pwsx103  power   0.16  0.5 -> 0.400000000 Inexact Rounded

+pwsx104  power   0.25  0.5 -> 0.500000000 Inexact Rounded

+pwsx105  power   0.36  0.5 -> 0.600000000 Inexact Rounded

+pwsx106  power   0.49  0.5 -> 0.700000000 Inexact Rounded

+pwsx107  power   0.64  0.5 -> 0.800000000 Inexact Rounded

+pwsx108  power   0.81  0.5 -> 0.900000000 Inexact Rounded

+pwsx109  power   1.00  0.5 -> 1.00000000 Inexact Rounded

+pwsx110  power   1.21  0.5 -> 1.10000000 Inexact Rounded

+pwsx111  power   1.44  0.5 -> 1.20000000 Inexact Rounded

+pwsx112  power   1.69  0.5 -> 1.30000000 Inexact Rounded

+pwsx113  power   2.56  0.5 -> 1.60000000 Inexact Rounded

+pwsx114  power  10.24  0.5 -> 3.20000000 Inexact Rounded

+pwsx115  power  40.96  0.5 -> 6.40000000 Inexact Rounded

+

+-- Precision 1 squareroot tests [exhaustive, plus exponent adjusts]

+rounding:    half_even

+maxExponent: 999

+minexponent: -999

+precision:   1

+pwsx1201  power 0.1  0.5 -> 0.3  Inexact Rounded

+pwsx1202  power 0.01  0.5 -> 0.1 Inexact Rounded

+pwsx1203  power 1.0E-1  0.5 -> 0.3  Inexact Rounded

+pwsx1204  power 1.00E-2  0.5 -> 0.1  Inexact Rounded

+pwsx1205  power 1E-3  0.5 -> 0.03  Inexact Rounded

+pwsx1206  power 1E+1  0.5 -> 3  Inexact Rounded

+pwsx1207  power 1E+2  0.5 -> 1E+1 Inexact Rounded

+pwsx1208  power 1E+3  0.5 -> 3E+1  Inexact Rounded

+pwsx1209  power 0.2  0.5 -> 0.4  Inexact Rounded

+pwsx1210  power 0.02  0.5 -> 0.1  Inexact Rounded

+pwsx1211  power 2.0E-1  0.5 -> 0.4  Inexact Rounded

+pwsx1212  power 2.00E-2  0.5 -> 0.1  Inexact Rounded

+pwsx1213  power 2E-3  0.5 -> 0.04  Inexact Rounded

+pwsx1214  power 2E+1  0.5 -> 4  Inexact Rounded

+pwsx1215  power 2E+2  0.5 -> 1E+1  Inexact Rounded

+pwsx1216  power 2E+3  0.5 -> 4E+1  Inexact Rounded

+pwsx1217  power 0.3  0.5 -> 0.5  Inexact Rounded

+pwsx1218  power 0.03  0.5 -> 0.2  Inexact Rounded

+pwsx1219  power 3.0E-1  0.5 -> 0.5  Inexact Rounded

+pwsx1220  power 3.00E-2  0.5 -> 0.2  Inexact Rounded

+pwsx1221  power 3E-3  0.5 -> 0.05  Inexact Rounded

+pwsx1222  power 3E+1  0.5 -> 5  Inexact Rounded

+pwsx1223  power 3E+2  0.5 -> 2E+1  Inexact Rounded

+pwsx1224  power 3E+3  0.5 -> 5E+1  Inexact Rounded

+pwsx1225  power 0.4  0.5 -> 0.6  Inexact Rounded

+pwsx1226  power 0.04  0.5 -> 0.2 Inexact Rounded

+pwsx1227  power 4.0E-1  0.5 -> 0.6  Inexact Rounded

+pwsx1228  power 4.00E-2  0.5 -> 0.2  Inexact Rounded

+pwsx1229  power 4E-3  0.5 -> 0.06  Inexact Rounded

+pwsx1230  power 4E+1  0.5 -> 6  Inexact Rounded

+pwsx1231  power 4E+2  0.5 -> 2E+1 Inexact Rounded

+pwsx1232  power 4E+3  0.5 -> 6E+1  Inexact Rounded

+pwsx1233  power 0.5  0.5 -> 0.7  Inexact Rounded

+pwsx1234  power 0.05  0.5 -> 0.2  Inexact Rounded

+pwsx1235  power 5.0E-1  0.5 -> 0.7  Inexact Rounded

+pwsx1236  power 5.00E-2  0.5 -> 0.2  Inexact Rounded

+pwsx1237  power 5E-3  0.5 -> 0.07  Inexact Rounded

+pwsx1238  power 5E+1  0.5 -> 7  Inexact Rounded

+pwsx1239  power 5E+2  0.5 -> 2E+1  Inexact Rounded

+pwsx1240  power 5E+3  0.5 -> 7E+1  Inexact Rounded

+pwsx1241  power 0.6  0.5 -> 0.8  Inexact Rounded

+pwsx1242  power 0.06  0.5 -> 0.2  Inexact Rounded

+pwsx1243  power 6.0E-1  0.5 -> 0.8  Inexact Rounded

+pwsx1244  power 6.00E-2  0.5 -> 0.2  Inexact Rounded

+pwsx1245  power 6E-3  0.5 -> 0.08  Inexact Rounded

+pwsx1246  power 6E+1  0.5 -> 8  Inexact Rounded

+pwsx1247  power 6E+2  0.5 -> 2E+1  Inexact Rounded

+pwsx1248  power 6E+3  0.5 -> 8E+1  Inexact Rounded

+pwsx1249  power 0.7  0.5 -> 0.8  Inexact Rounded

+pwsx1250  power 0.07  0.5 -> 0.3  Inexact Rounded

+pwsx1251  power 7.0E-1  0.5 -> 0.8  Inexact Rounded

+pwsx1252  power 7.00E-2  0.5 -> 0.3  Inexact Rounded

+pwsx1253  power 7E-3  0.5 -> 0.08  Inexact Rounded

+pwsx1254  power 7E+1  0.5 -> 8  Inexact Rounded

+pwsx1255  power 7E+2  0.5 -> 3E+1  Inexact Rounded

+pwsx1256  power 7E+3  0.5 -> 8E+1  Inexact Rounded

+pwsx1257  power 0.8  0.5 -> 0.9  Inexact Rounded

+pwsx1258  power 0.08  0.5 -> 0.3  Inexact Rounded

+pwsx1259  power 8.0E-1  0.5 -> 0.9  Inexact Rounded

+pwsx1260  power 8.00E-2  0.5 -> 0.3  Inexact Rounded

+pwsx1261  power 8E-3  0.5 -> 0.09  Inexact Rounded

+pwsx1262  power 8E+1  0.5 -> 9  Inexact Rounded

+pwsx1263  power 8E+2  0.5 -> 3E+1  Inexact Rounded

+pwsx1264  power 8E+3  0.5 -> 9E+1  Inexact Rounded

+pwsx1265  power 0.9  0.5 -> 0.9  Inexact Rounded

+pwsx1266  power 0.09  0.5 -> 0.3 Inexact Rounded

+pwsx1267  power 9.0E-1  0.5 -> 0.9  Inexact Rounded

+pwsx1268  power 9.00E-2  0.5 -> 0.3  Inexact Rounded

+pwsx1269  power 9E-3  0.5 -> 0.09  Inexact Rounded

+pwsx1270  power 9E+1  0.5 -> 9  Inexact Rounded

+pwsx1271  power 9E+2  0.5 -> 3E+1 Inexact Rounded

+pwsx1272  power 9E+3  0.5 -> 9E+1  Inexact Rounded

+

+-- Precision 2 squareroot tests [exhaustive, plus exponent adjusts]

+rounding:    half_even

+maxExponent: 999

+minexponent: -999

+precision:   2

+pwsx2201  power 0.1  0.5 -> 0.32  Inexact Rounded

+pwsx2202  power 0.01  0.5 -> 0.10 Inexact Rounded

+pwsx2203  power 1.0E-1  0.5 -> 0.32  Inexact Rounded

+pwsx2204  power 1.00E-2  0.5 -> 0.10 Inexact Rounded

+pwsx2205  power 1E-3  0.5 -> 0.032  Inexact Rounded

+pwsx2206  power 1E+1  0.5 -> 3.2  Inexact Rounded

+pwsx2207  power 1E+2  0.5 -> 10 Inexact Rounded

+pwsx2208  power 1E+3  0.5 -> 32  Inexact Rounded

+pwsx2209  power 0.2  0.5 -> 0.45  Inexact Rounded

+pwsx2210  power 0.02  0.5 -> 0.14  Inexact Rounded

+pwsx2211  power 2.0E-1  0.5 -> 0.45  Inexact Rounded

+pwsx2212  power 2.00E-2  0.5 -> 0.14  Inexact Rounded

+pwsx2213  power 2E-3  0.5 -> 0.045  Inexact Rounded

+pwsx2214  power 2E+1  0.5 -> 4.5  Inexact Rounded

+pwsx2215  power 2E+2  0.5 -> 14  Inexact Rounded

+pwsx2216  power 2E+3  0.5 -> 45  Inexact Rounded

+pwsx2217  power 0.3  0.5 -> 0.55  Inexact Rounded

+pwsx2218  power 0.03  0.5 -> 0.17  Inexact Rounded

+pwsx2219  power 3.0E-1  0.5 -> 0.55  Inexact Rounded

+pwsx2220  power 3.00E-2  0.5 -> 0.17  Inexact Rounded

+pwsx2221  power 3E-3  0.5 -> 0.055  Inexact Rounded

+pwsx2222  power 3E+1  0.5 -> 5.5  Inexact Rounded

+pwsx2223  power 3E+2  0.5 -> 17  Inexact Rounded

+pwsx2224  power 3E+3  0.5 -> 55  Inexact Rounded

+pwsx2225  power 0.4  0.5 -> 0.63  Inexact Rounded

+pwsx2226  power 0.04  0.5 -> 0.20 Inexact Rounded

+pwsx2227  power 4.0E-1  0.5 -> 0.63  Inexact Rounded

+pwsx2228  power 4.00E-2  0.5 -> 0.20 Inexact Rounded

+pwsx2229  power 4E-3  0.5 -> 0.063  Inexact Rounded

+pwsx2230  power 4E+1  0.5 -> 6.3  Inexact Rounded

+pwsx2231  power 4E+2  0.5 -> 20 Inexact Rounded

+pwsx2232  power 4E+3  0.5 -> 63  Inexact Rounded

+pwsx2233  power 0.5  0.5 -> 0.71  Inexact Rounded

+pwsx2234  power 0.05  0.5 -> 0.22  Inexact Rounded

+pwsx2235  power 5.0E-1  0.5 -> 0.71  Inexact Rounded

+pwsx2236  power 5.00E-2  0.5 -> 0.22  Inexact Rounded

+pwsx2237  power 5E-3  0.5 -> 0.071  Inexact Rounded

+pwsx2238  power 5E+1  0.5 -> 7.1  Inexact Rounded

+pwsx2239  power 5E+2  0.5 -> 22  Inexact Rounded

+pwsx2240  power 5E+3  0.5 -> 71  Inexact Rounded

+pwsx2241  power 0.6  0.5 -> 0.77  Inexact Rounded

+pwsx2242  power 0.06  0.5 -> 0.24  Inexact Rounded

+pwsx2243  power 6.0E-1  0.5 -> 0.77  Inexact Rounded

+pwsx2244  power 6.00E-2  0.5 -> 0.24  Inexact Rounded

+pwsx2245  power 6E-3  0.5 -> 0.077  Inexact Rounded

+pwsx2246  power 6E+1  0.5 -> 7.7  Inexact Rounded

+pwsx2247  power 6E+2  0.5 -> 24  Inexact Rounded

+pwsx2248  power 6E+3  0.5 -> 77  Inexact Rounded

+pwsx2249  power 0.7  0.5 -> 0.84  Inexact Rounded

+pwsx2250  power 0.07  0.5 -> 0.26  Inexact Rounded

+pwsx2251  power 7.0E-1  0.5 -> 0.84  Inexact Rounded

+pwsx2252  power 7.00E-2  0.5 -> 0.26  Inexact Rounded

+pwsx2253  power 7E-3  0.5 -> 0.084  Inexact Rounded

+pwsx2254  power 7E+1  0.5 -> 8.4  Inexact Rounded

+pwsx2255  power 7E+2  0.5 -> 26  Inexact Rounded

+pwsx2256  power 7E+3  0.5 -> 84  Inexact Rounded

+pwsx2257  power 0.8  0.5 -> 0.89  Inexact Rounded

+pwsx2258  power 0.08  0.5 -> 0.28  Inexact Rounded

+pwsx2259  power 8.0E-1  0.5 -> 0.89  Inexact Rounded

+pwsx2260  power 8.00E-2  0.5 -> 0.28  Inexact Rounded

+pwsx2261  power 8E-3  0.5 -> 0.089  Inexact Rounded

+pwsx2262  power 8E+1  0.5 -> 8.9  Inexact Rounded

+pwsx2263  power 8E+2  0.5 -> 28  Inexact Rounded

+pwsx2264  power 8E+3  0.5 -> 89  Inexact Rounded

+pwsx2265  power 0.9  0.5 -> 0.95  Inexact Rounded

+pwsx2266  power 0.09  0.5 -> 0.30  Inexact Rounded

+pwsx2267  power 9.0E-1  0.5 -> 0.95  Inexact Rounded

+pwsx2268  power 9.00E-2  0.5 -> 0.30 Inexact Rounded

+pwsx2269  power 9E-3  0.5 -> 0.095  Inexact Rounded

+pwsx2270  power 9E+1  0.5 -> 9.5  Inexact Rounded

+pwsx2271  power 9E+2  0.5 -> 30 Inexact Rounded

+pwsx2272  power 9E+3  0.5 -> 95  Inexact Rounded

+pwsx2273  power 0.10  0.5 -> 0.32  Inexact Rounded

+pwsx2274  power 0.010  0.5 -> 0.10 Inexact Rounded

+pwsx2275  power 10.0E-1  0.5 -> 1.0 Inexact Rounded

+pwsx2276  power 10.00E-2  0.5 -> 0.32  Inexact Rounded

+pwsx2277  power 10E-3  0.5 -> 0.10 Inexact Rounded

+pwsx2278  power 10E+1  0.5 -> 10 Inexact Rounded

+pwsx2279  power 10E+2  0.5 -> 32  Inexact Rounded

+pwsx2280  power 10E+3  0.5 -> 1.0E+2 Inexact Rounded

+pwsx2281  power 0.11  0.5 -> 0.33  Inexact Rounded

+pwsx2282  power 0.011  0.5 -> 0.10  Inexact Rounded

+pwsx2283  power 11.0E-1  0.5 -> 1.0  Inexact Rounded

+pwsx2284  power 11.00E-2  0.5 -> 0.33  Inexact Rounded

+pwsx2285  power 11E-3  0.5 -> 0.10  Inexact Rounded

+pwsx2286  power 11E+1  0.5 -> 10  Inexact Rounded

+pwsx2287  power 11E+2  0.5 -> 33  Inexact Rounded

+pwsx2288  power 11E+3  0.5 -> 1.0E+2  Inexact Rounded

+pwsx2289  power 0.12  0.5 -> 0.35  Inexact Rounded

+pwsx2290  power 0.012  0.5 -> 0.11  Inexact Rounded

+pwsx2291  power 12.0E-1  0.5 -> 1.1  Inexact Rounded

+pwsx2292  power 12.00E-2  0.5 -> 0.35  Inexact Rounded

+pwsx2293  power 12E-3  0.5 -> 0.11  Inexact Rounded

+pwsx2294  power 12E+1  0.5 -> 11  Inexact Rounded

+pwsx2295  power 12E+2  0.5 -> 35  Inexact Rounded

+pwsx2296  power 12E+3  0.5 -> 1.1E+2  Inexact Rounded

+pwsx2297  power 0.13  0.5 -> 0.36  Inexact Rounded

+pwsx2298  power 0.013  0.5 -> 0.11  Inexact Rounded

+pwsx2299  power 13.0E-1  0.5 -> 1.1  Inexact Rounded

+pwsx2300  power 13.00E-2  0.5 -> 0.36  Inexact Rounded

+pwsx2301  power 13E-3  0.5 -> 0.11  Inexact Rounded

+pwsx2302  power 13E+1  0.5 -> 11  Inexact Rounded

+pwsx2303  power 13E+2  0.5 -> 36  Inexact Rounded

+pwsx2304  power 13E+3  0.5 -> 1.1E+2  Inexact Rounded

+pwsx2305  power 0.14  0.5 -> 0.37  Inexact Rounded

+pwsx2306  power 0.014  0.5 -> 0.12  Inexact Rounded

+pwsx2307  power 14.0E-1  0.5 -> 1.2  Inexact Rounded

+pwsx2308  power 14.00E-2  0.5 -> 0.37  Inexact Rounded

+pwsx2309  power 14E-3  0.5 -> 0.12  Inexact Rounded

+pwsx2310  power 14E+1  0.5 -> 12  Inexact Rounded

+pwsx2311  power 14E+2  0.5 -> 37  Inexact Rounded

+pwsx2312  power 14E+3  0.5 -> 1.2E+2  Inexact Rounded

+pwsx2313  power 0.15  0.5 -> 0.39  Inexact Rounded

+pwsx2314  power 0.015  0.5 -> 0.12  Inexact Rounded

+pwsx2315  power 15.0E-1  0.5 -> 1.2  Inexact Rounded

+pwsx2316  power 15.00E-2  0.5 -> 0.39  Inexact Rounded

+pwsx2317  power 15E-3  0.5 -> 0.12  Inexact Rounded

+pwsx2318  power 15E+1  0.5 -> 12  Inexact Rounded

+pwsx2319  power 15E+2  0.5 -> 39  Inexact Rounded

+pwsx2320  power 15E+3  0.5 -> 1.2E+2  Inexact Rounded

+pwsx2321  power 0.16  0.5 -> 0.40 Inexact Rounded

+pwsx2322  power 0.016  0.5 -> 0.13  Inexact Rounded

+pwsx2323  power 16.0E-1  0.5 -> 1.3  Inexact Rounded

+pwsx2324  power 16.00E-2  0.5 -> 0.40 Inexact Rounded

+pwsx2325  power 16E-3  0.5 -> 0.13  Inexact Rounded

+pwsx2326  power 16E+1  0.5 -> 13  Inexact Rounded

+pwsx2327  power 16E+2  0.5 -> 40 Inexact Rounded

+pwsx2328  power 16E+3  0.5 -> 1.3E+2  Inexact Rounded

+pwsx2329  power 0.17  0.5 -> 0.41  Inexact Rounded

+pwsx2330  power 0.017  0.5 -> 0.13  Inexact Rounded

+pwsx2331  power 17.0E-1  0.5 -> 1.3  Inexact Rounded

+pwsx2332  power 17.00E-2  0.5 -> 0.41  Inexact Rounded

+pwsx2333  power 17E-3  0.5 -> 0.13  Inexact Rounded

+pwsx2334  power 17E+1  0.5 -> 13  Inexact Rounded

+pwsx2335  power 17E+2  0.5 -> 41  Inexact Rounded

+pwsx2336  power 17E+3  0.5 -> 1.3E+2  Inexact Rounded

+pwsx2337  power 0.18  0.5 -> 0.42  Inexact Rounded

+pwsx2338  power 0.018  0.5 -> 0.13  Inexact Rounded

+pwsx2339  power 18.0E-1  0.5 -> 1.3  Inexact Rounded

+pwsx2340  power 18.00E-2  0.5 -> 0.42  Inexact Rounded

+pwsx2341  power 18E-3  0.5 -> 0.13  Inexact Rounded

+pwsx2342  power 18E+1  0.5 -> 13  Inexact Rounded

+pwsx2343  power 18E+2  0.5 -> 42  Inexact Rounded

+pwsx2344  power 18E+3  0.5 -> 1.3E+2  Inexact Rounded

+pwsx2345  power 0.19  0.5 -> 0.44  Inexact Rounded

+pwsx2346  power 0.019  0.5 -> 0.14  Inexact Rounded

+pwsx2347  power 19.0E-1  0.5 -> 1.4  Inexact Rounded

+pwsx2348  power 19.00E-2  0.5 -> 0.44  Inexact Rounded

+pwsx2349  power 19E-3  0.5 -> 0.14  Inexact Rounded

+pwsx2350  power 19E+1  0.5 -> 14  Inexact Rounded

+pwsx2351  power 19E+2  0.5 -> 44  Inexact Rounded

+pwsx2352  power 19E+3  0.5 -> 1.4E+2  Inexact Rounded

+pwsx2353  power 0.20  0.5 -> 0.45  Inexact Rounded

+pwsx2354  power 0.020  0.5 -> 0.14  Inexact Rounded

+pwsx2355  power 20.0E-1  0.5 -> 1.4  Inexact Rounded

+pwsx2356  power 20.00E-2  0.5 -> 0.45  Inexact Rounded

+pwsx2357  power 20E-3  0.5 -> 0.14  Inexact Rounded

+pwsx2358  power 20E+1  0.5 -> 14  Inexact Rounded

+pwsx2359  power 20E+2  0.5 -> 45  Inexact Rounded

+pwsx2360  power 20E+3  0.5 -> 1.4E+2  Inexact Rounded

+pwsx2361  power 0.21  0.5 -> 0.46  Inexact Rounded

+pwsx2362  power 0.021  0.5 -> 0.14  Inexact Rounded

+pwsx2363  power 21.0E-1  0.5 -> 1.4  Inexact Rounded

+pwsx2364  power 21.00E-2  0.5 -> 0.46  Inexact Rounded

+pwsx2365  power 21E-3  0.5 -> 0.14  Inexact Rounded

+pwsx2366  power 21E+1  0.5 -> 14  Inexact Rounded

+pwsx2367  power 21E+2  0.5 -> 46  Inexact Rounded

+pwsx2368  power 21E+3  0.5 -> 1.4E+2  Inexact Rounded

+pwsx2369  power 0.22  0.5 -> 0.47  Inexact Rounded

+pwsx2370  power 0.022  0.5 -> 0.15  Inexact Rounded

+pwsx2371  power 22.0E-1  0.5 -> 1.5  Inexact Rounded

+pwsx2372  power 22.00E-2  0.5 -> 0.47  Inexact Rounded

+pwsx2373  power 22E-3  0.5 -> 0.15  Inexact Rounded

+pwsx2374  power 22E+1  0.5 -> 15  Inexact Rounded

+pwsx2375  power 22E+2  0.5 -> 47  Inexact Rounded

+pwsx2376  power 22E+3  0.5 -> 1.5E+2  Inexact Rounded

+pwsx2377  power 0.23  0.5 -> 0.48  Inexact Rounded

+pwsx2378  power 0.023  0.5 -> 0.15  Inexact Rounded

+pwsx2379  power 23.0E-1  0.5 -> 1.5  Inexact Rounded

+pwsx2380  power 23.00E-2  0.5 -> 0.48  Inexact Rounded

+pwsx2381  power 23E-3  0.5 -> 0.15  Inexact Rounded

+pwsx2382  power 23E+1  0.5 -> 15  Inexact Rounded

+pwsx2383  power 23E+2  0.5 -> 48  Inexact Rounded

+pwsx2384  power 23E+3  0.5 -> 1.5E+2  Inexact Rounded

+pwsx2385  power 0.24  0.5 -> 0.49  Inexact Rounded

+pwsx2386  power 0.024  0.5 -> 0.15  Inexact Rounded

+pwsx2387  power 24.0E-1  0.5 -> 1.5  Inexact Rounded

+pwsx2388  power 24.00E-2  0.5 -> 0.49  Inexact Rounded

+pwsx2389  power 24E-3  0.5 -> 0.15  Inexact Rounded

+pwsx2390  power 24E+1  0.5 -> 15  Inexact Rounded

+pwsx2391  power 24E+2  0.5 -> 49  Inexact Rounded

+pwsx2392  power 24E+3  0.5 -> 1.5E+2  Inexact Rounded

+pwsx2393  power 0.25  0.5 -> 0.50 Inexact Rounded

+pwsx2394  power 0.025  0.5 -> 0.16  Inexact Rounded

+pwsx2395  power 25.0E-1  0.5 -> 1.6  Inexact Rounded

+pwsx2396  power 25.00E-2  0.5 -> 0.50 Inexact Rounded

+pwsx2397  power 25E-3  0.5 -> 0.16  Inexact Rounded

+pwsx2398  power 25E+1  0.5 -> 16  Inexact Rounded

+pwsx2399  power 25E+2  0.5 -> 50 Inexact Rounded

+pwsx2400  power 25E+3  0.5 -> 1.6E+2  Inexact Rounded

+pwsx2401  power 0.26  0.5 -> 0.51  Inexact Rounded

+pwsx2402  power 0.026  0.5 -> 0.16  Inexact Rounded

+pwsx2403  power 26.0E-1  0.5 -> 1.6  Inexact Rounded

+pwsx2404  power 26.00E-2  0.5 -> 0.51  Inexact Rounded

+pwsx2405  power 26E-3  0.5 -> 0.16  Inexact Rounded

+pwsx2406  power 26E+1  0.5 -> 16  Inexact Rounded

+pwsx2407  power 26E+2  0.5 -> 51  Inexact Rounded

+pwsx2408  power 26E+3  0.5 -> 1.6E+2  Inexact Rounded

+pwsx2409  power 0.27  0.5 -> 0.52  Inexact Rounded

+pwsx2410  power 0.027  0.5 -> 0.16  Inexact Rounded

+pwsx2411  power 27.0E-1  0.5 -> 1.6  Inexact Rounded

+pwsx2412  power 27.00E-2  0.5 -> 0.52  Inexact Rounded

+pwsx2413  power 27E-3  0.5 -> 0.16  Inexact Rounded

+pwsx2414  power 27E+1  0.5 -> 16  Inexact Rounded

+pwsx2415  power 27E+2  0.5 -> 52  Inexact Rounded

+pwsx2416  power 27E+3  0.5 -> 1.6E+2  Inexact Rounded

+pwsx2417  power 0.28  0.5 -> 0.53  Inexact Rounded

+pwsx2418  power 0.028  0.5 -> 0.17  Inexact Rounded

+pwsx2419  power 28.0E-1  0.5 -> 1.7  Inexact Rounded

+pwsx2420  power 28.00E-2  0.5 -> 0.53  Inexact Rounded

+pwsx2421  power 28E-3  0.5 -> 0.17  Inexact Rounded

+pwsx2422  power 28E+1  0.5 -> 17  Inexact Rounded

+pwsx2423  power 28E+2  0.5 -> 53  Inexact Rounded

+pwsx2424  power 28E+3  0.5 -> 1.7E+2  Inexact Rounded

+pwsx2425  power 0.29  0.5 -> 0.54  Inexact Rounded

+pwsx2426  power 0.029  0.5 -> 0.17  Inexact Rounded

+pwsx2427  power 29.0E-1  0.5 -> 1.7  Inexact Rounded

+pwsx2428  power 29.00E-2  0.5 -> 0.54  Inexact Rounded

+pwsx2429  power 29E-3  0.5 -> 0.17  Inexact Rounded

+pwsx2430  power 29E+1  0.5 -> 17  Inexact Rounded

+pwsx2431  power 29E+2  0.5 -> 54  Inexact Rounded

+pwsx2432  power 29E+3  0.5 -> 1.7E+2  Inexact Rounded

+pwsx2433  power 0.30  0.5 -> 0.55  Inexact Rounded

+pwsx2434  power 0.030  0.5 -> 0.17  Inexact Rounded

+pwsx2435  power 30.0E-1  0.5 -> 1.7  Inexact Rounded

+pwsx2436  power 30.00E-2  0.5 -> 0.55  Inexact Rounded

+pwsx2437  power 30E-3  0.5 -> 0.17  Inexact Rounded

+pwsx2438  power 30E+1  0.5 -> 17  Inexact Rounded

+pwsx2439  power 30E+2  0.5 -> 55  Inexact Rounded

+pwsx2440  power 30E+3  0.5 -> 1.7E+2  Inexact Rounded

+pwsx2441  power 0.31  0.5 -> 0.56  Inexact Rounded

+pwsx2442  power 0.031  0.5 -> 0.18  Inexact Rounded

+pwsx2443  power 31.0E-1  0.5 -> 1.8  Inexact Rounded

+pwsx2444  power 31.00E-2  0.5 -> 0.56  Inexact Rounded

+pwsx2445  power 31E-3  0.5 -> 0.18  Inexact Rounded

+pwsx2446  power 31E+1  0.5 -> 18  Inexact Rounded

+pwsx2447  power 31E+2  0.5 -> 56  Inexact Rounded

+pwsx2448  power 31E+3  0.5 -> 1.8E+2  Inexact Rounded

+pwsx2449  power 0.32  0.5 -> 0.57  Inexact Rounded

+pwsx2450  power 0.032  0.5 -> 0.18  Inexact Rounded

+pwsx2451  power 32.0E-1  0.5 -> 1.8  Inexact Rounded

+pwsx2452  power 32.00E-2  0.5 -> 0.57  Inexact Rounded

+pwsx2453  power 32E-3  0.5 -> 0.18  Inexact Rounded

+pwsx2454  power 32E+1  0.5 -> 18  Inexact Rounded

+pwsx2455  power 32E+2  0.5 -> 57  Inexact Rounded

+pwsx2456  power 32E+3  0.5 -> 1.8E+2  Inexact Rounded

+pwsx2457  power 0.33  0.5 -> 0.57  Inexact Rounded

+pwsx2458  power 0.033  0.5 -> 0.18  Inexact Rounded

+pwsx2459  power 33.0E-1  0.5 -> 1.8  Inexact Rounded

+pwsx2460  power 33.00E-2  0.5 -> 0.57  Inexact Rounded

+pwsx2461  power 33E-3  0.5 -> 0.18  Inexact Rounded

+pwsx2462  power 33E+1  0.5 -> 18  Inexact Rounded

+pwsx2463  power 33E+2  0.5 -> 57  Inexact Rounded

+pwsx2464  power 33E+3  0.5 -> 1.8E+2  Inexact Rounded

+pwsx2465  power 0.34  0.5 -> 0.58  Inexact Rounded

+pwsx2466  power 0.034  0.5 -> 0.18  Inexact Rounded

+pwsx2467  power 34.0E-1  0.5 -> 1.8  Inexact Rounded

+pwsx2468  power 34.00E-2  0.5 -> 0.58  Inexact Rounded

+pwsx2469  power 34E-3  0.5 -> 0.18  Inexact Rounded

+pwsx2470  power 34E+1  0.5 -> 18  Inexact Rounded

+pwsx2471  power 34E+2  0.5 -> 58  Inexact Rounded

+pwsx2472  power 34E+3  0.5 -> 1.8E+2  Inexact Rounded

+pwsx2473  power 0.35  0.5 -> 0.59  Inexact Rounded

+pwsx2474  power 0.035  0.5 -> 0.19  Inexact Rounded

+pwsx2475  power 35.0E-1  0.5 -> 1.9  Inexact Rounded

+pwsx2476  power 35.00E-2  0.5 -> 0.59  Inexact Rounded

+pwsx2477  power 35E-3  0.5 -> 0.19  Inexact Rounded

+pwsx2478  power 35E+1  0.5 -> 19  Inexact Rounded

+pwsx2479  power 35E+2  0.5 -> 59  Inexact Rounded

+pwsx2480  power 35E+3  0.5 -> 1.9E+2  Inexact Rounded

+pwsx2481  power 0.36  0.5 -> 0.60 Inexact Rounded

+pwsx2482  power 0.036  0.5 -> 0.19  Inexact Rounded

+pwsx2483  power 36.0E-1  0.5 -> 1.9  Inexact Rounded

+pwsx2484  power 36.00E-2  0.5 -> 0.60 Inexact Rounded

+pwsx2485  power 36E-3  0.5 -> 0.19  Inexact Rounded

+pwsx2486  power 36E+1  0.5 -> 19  Inexact Rounded

+pwsx2487  power 36E+2  0.5 -> 60 Inexact Rounded

+pwsx2488  power 36E+3  0.5 -> 1.9E+2  Inexact Rounded

+pwsx2489  power 0.37  0.5 -> 0.61  Inexact Rounded

+pwsx2490  power 0.037  0.5 -> 0.19  Inexact Rounded

+pwsx2491  power 37.0E-1  0.5 -> 1.9  Inexact Rounded

+pwsx2492  power 37.00E-2  0.5 -> 0.61  Inexact Rounded

+pwsx2493  power 37E-3  0.5 -> 0.19  Inexact Rounded

+pwsx2494  power 37E+1  0.5 -> 19  Inexact Rounded

+pwsx2495  power 37E+2  0.5 -> 61  Inexact Rounded

+pwsx2496  power 37E+3  0.5 -> 1.9E+2  Inexact Rounded

+pwsx2497  power 0.38  0.5 -> 0.62  Inexact Rounded

+pwsx2498  power 0.038  0.5 -> 0.19  Inexact Rounded

+pwsx2499  power 38.0E-1  0.5 -> 1.9  Inexact Rounded

+pwsx2500  power 38.00E-2  0.5 -> 0.62  Inexact Rounded

+pwsx2501  power 38E-3  0.5 -> 0.19  Inexact Rounded

+pwsx2502  power 38E+1  0.5 -> 19  Inexact Rounded

+pwsx2503  power 38E+2  0.5 -> 62  Inexact Rounded

+pwsx2504  power 38E+3  0.5 -> 1.9E+2  Inexact Rounded

+pwsx2505  power 0.39  0.5 -> 0.62  Inexact Rounded

+pwsx2506  power 0.039  0.5 -> 0.20  Inexact Rounded

+pwsx2507  power 39.0E-1  0.5 -> 2.0  Inexact Rounded

+pwsx2508  power 39.00E-2  0.5 -> 0.62  Inexact Rounded

+pwsx2509  power 39E-3  0.5 -> 0.20  Inexact Rounded

+pwsx2510  power 39E+1  0.5 -> 20  Inexact Rounded

+pwsx2511  power 39E+2  0.5 -> 62  Inexact Rounded

+pwsx2512  power 39E+3  0.5 -> 2.0E+2  Inexact Rounded

+pwsx2513  power 0.40  0.5 -> 0.63  Inexact Rounded

+pwsx2514  power 0.040  0.5 -> 0.20 Inexact Rounded

+pwsx2515  power 40.0E-1  0.5 -> 2.0 Inexact Rounded

+pwsx2516  power 40.00E-2  0.5 -> 0.63  Inexact Rounded

+pwsx2517  power 40E-3  0.5 -> 0.20 Inexact Rounded

+pwsx2518  power 40E+1  0.5 -> 20 Inexact Rounded

+pwsx2519  power 40E+2  0.5 -> 63  Inexact Rounded

+pwsx2520  power 40E+3  0.5 -> 2.0E+2 Inexact Rounded

+pwsx2521  power 0.41  0.5 -> 0.64  Inexact Rounded

+pwsx2522  power 0.041  0.5 -> 0.20  Inexact Rounded

+pwsx2523  power 41.0E-1  0.5 -> 2.0  Inexact Rounded

+pwsx2524  power 41.00E-2  0.5 -> 0.64  Inexact Rounded

+pwsx2525  power 41E-3  0.5 -> 0.20  Inexact Rounded

+pwsx2526  power 41E+1  0.5 -> 20  Inexact Rounded

+pwsx2527  power 41E+2  0.5 -> 64  Inexact Rounded

+pwsx2528  power 41E+3  0.5 -> 2.0E+2  Inexact Rounded

+pwsx2529  power 0.42  0.5 -> 0.65  Inexact Rounded

+pwsx2530  power 0.042  0.5 -> 0.20  Inexact Rounded

+pwsx2531  power 42.0E-1  0.5 -> 2.0  Inexact Rounded

+pwsx2532  power 42.00E-2  0.5 -> 0.65  Inexact Rounded

+pwsx2533  power 42E-3  0.5 -> 0.20  Inexact Rounded

+pwsx2534  power 42E+1  0.5 -> 20  Inexact Rounded

+pwsx2535  power 42E+2  0.5 -> 65  Inexact Rounded

+pwsx2536  power 42E+3  0.5 -> 2.0E+2  Inexact Rounded

+pwsx2537  power 0.43  0.5 -> 0.66  Inexact Rounded

+pwsx2538  power 0.043  0.5 -> 0.21  Inexact Rounded

+pwsx2539  power 43.0E-1  0.5 -> 2.1  Inexact Rounded

+pwsx2540  power 43.00E-2  0.5 -> 0.66  Inexact Rounded

+pwsx2541  power 43E-3  0.5 -> 0.21  Inexact Rounded

+pwsx2542  power 43E+1  0.5 -> 21  Inexact Rounded

+pwsx2543  power 43E+2  0.5 -> 66  Inexact Rounded

+pwsx2544  power 43E+3  0.5 -> 2.1E+2  Inexact Rounded

+pwsx2545  power 0.44  0.5 -> 0.66  Inexact Rounded

+pwsx2546  power 0.044  0.5 -> 0.21  Inexact Rounded

+pwsx2547  power 44.0E-1  0.5 -> 2.1  Inexact Rounded

+pwsx2548  power 44.00E-2  0.5 -> 0.66  Inexact Rounded

+pwsx2549  power 44E-3  0.5 -> 0.21  Inexact Rounded

+pwsx2550  power 44E+1  0.5 -> 21  Inexact Rounded

+pwsx2551  power 44E+2  0.5 -> 66  Inexact Rounded

+pwsx2552  power 44E+3  0.5 -> 2.1E+2  Inexact Rounded

+pwsx2553  power 0.45  0.5 -> 0.67  Inexact Rounded

+pwsx2554  power 0.045  0.5 -> 0.21  Inexact Rounded

+pwsx2555  power 45.0E-1  0.5 -> 2.1  Inexact Rounded

+pwsx2556  power 45.00E-2  0.5 -> 0.67  Inexact Rounded

+pwsx2557  power 45E-3  0.5 -> 0.21  Inexact Rounded

+pwsx2558  power 45E+1  0.5 -> 21  Inexact Rounded

+pwsx2559  power 45E+2  0.5 -> 67  Inexact Rounded

+pwsx2560  power 45E+3  0.5 -> 2.1E+2  Inexact Rounded

+pwsx2561  power 0.46  0.5 -> 0.68  Inexact Rounded

+pwsx2562  power 0.046  0.5 -> 0.21  Inexact Rounded

+pwsx2563  power 46.0E-1  0.5 -> 2.1  Inexact Rounded

+pwsx2564  power 46.00E-2  0.5 -> 0.68  Inexact Rounded

+pwsx2565  power 46E-3  0.5 -> 0.21  Inexact Rounded

+pwsx2566  power 46E+1  0.5 -> 21  Inexact Rounded

+pwsx2567  power 46E+2  0.5 -> 68  Inexact Rounded

+pwsx2568  power 46E+3  0.5 -> 2.1E+2  Inexact Rounded

+pwsx2569  power 0.47  0.5 -> 0.69  Inexact Rounded

+pwsx2570  power 0.047  0.5 -> 0.22  Inexact Rounded

+pwsx2571  power 47.0E-1  0.5 -> 2.2  Inexact Rounded

+pwsx2572  power 47.00E-2  0.5 -> 0.69  Inexact Rounded

+pwsx2573  power 47E-3  0.5 -> 0.22  Inexact Rounded

+pwsx2574  power 47E+1  0.5 -> 22  Inexact Rounded

+pwsx2575  power 47E+2  0.5 -> 69  Inexact Rounded

+pwsx2576  power 47E+3  0.5 -> 2.2E+2  Inexact Rounded

+pwsx2577  power 0.48  0.5 -> 0.69  Inexact Rounded

+pwsx2578  power 0.048  0.5 -> 0.22  Inexact Rounded

+pwsx2579  power 48.0E-1  0.5 -> 2.2  Inexact Rounded

+pwsx2580  power 48.00E-2  0.5 -> 0.69  Inexact Rounded

+pwsx2581  power 48E-3  0.5 -> 0.22  Inexact Rounded

+pwsx2582  power 48E+1  0.5 -> 22  Inexact Rounded

+pwsx2583  power 48E+2  0.5 -> 69  Inexact Rounded

+pwsx2584  power 48E+3  0.5 -> 2.2E+2  Inexact Rounded

+pwsx2585  power 0.49  0.5 -> 0.70 Inexact Rounded

+pwsx2586  power 0.049  0.5 -> 0.22  Inexact Rounded

+pwsx2587  power 49.0E-1  0.5 -> 2.2  Inexact Rounded

+pwsx2588  power 49.00E-2  0.5 -> 0.70 Inexact Rounded

+pwsx2589  power 49E-3  0.5 -> 0.22  Inexact Rounded

+pwsx2590  power 49E+1  0.5 -> 22  Inexact Rounded

+pwsx2591  power 49E+2  0.5 -> 70 Inexact Rounded

+pwsx2592  power 49E+3  0.5 -> 2.2E+2  Inexact Rounded

+pwsx2593  power 0.50  0.5 -> 0.71  Inexact Rounded

+pwsx2594  power 0.050  0.5 -> 0.22  Inexact Rounded

+pwsx2595  power 50.0E-1  0.5 -> 2.2  Inexact Rounded

+pwsx2596  power 50.00E-2  0.5 -> 0.71  Inexact Rounded

+pwsx2597  power 50E-3  0.5 -> 0.22  Inexact Rounded

+pwsx2598  power 50E+1  0.5 -> 22  Inexact Rounded

+pwsx2599  power 50E+2  0.5 -> 71  Inexact Rounded

+pwsx2600  power 50E+3  0.5 -> 2.2E+2  Inexact Rounded

+pwsx2601  power 0.51  0.5 -> 0.71  Inexact Rounded

+pwsx2602  power 0.051  0.5 -> 0.23  Inexact Rounded

+pwsx2603  power 51.0E-1  0.5 -> 2.3  Inexact Rounded

+pwsx2604  power 51.00E-2  0.5 -> 0.71  Inexact Rounded

+pwsx2605  power 51E-3  0.5 -> 0.23  Inexact Rounded

+pwsx2606  power 51E+1  0.5 -> 23  Inexact Rounded

+pwsx2607  power 51E+2  0.5 -> 71  Inexact Rounded

+pwsx2608  power 51E+3  0.5 -> 2.3E+2  Inexact Rounded

+pwsx2609  power 0.52  0.5 -> 0.72  Inexact Rounded

+pwsx2610  power 0.052  0.5 -> 0.23  Inexact Rounded

+pwsx2611  power 52.0E-1  0.5 -> 2.3  Inexact Rounded

+pwsx2612  power 52.00E-2  0.5 -> 0.72  Inexact Rounded

+pwsx2613  power 52E-3  0.5 -> 0.23  Inexact Rounded

+pwsx2614  power 52E+1  0.5 -> 23  Inexact Rounded

+pwsx2615  power 52E+2  0.5 -> 72  Inexact Rounded

+pwsx2616  power 52E+3  0.5 -> 2.3E+2  Inexact Rounded

+pwsx2617  power 0.53  0.5 -> 0.73  Inexact Rounded

+pwsx2618  power 0.053  0.5 -> 0.23  Inexact Rounded

+pwsx2619  power 53.0E-1  0.5 -> 2.3  Inexact Rounded

+pwsx2620  power 53.00E-2  0.5 -> 0.73  Inexact Rounded

+pwsx2621  power 53E-3  0.5 -> 0.23  Inexact Rounded

+pwsx2622  power 53E+1  0.5 -> 23  Inexact Rounded

+pwsx2623  power 53E+2  0.5 -> 73  Inexact Rounded

+pwsx2624  power 53E+3  0.5 -> 2.3E+2  Inexact Rounded

+pwsx2625  power 0.54  0.5 -> 0.73  Inexact Rounded

+pwsx2626  power 0.054  0.5 -> 0.23  Inexact Rounded

+pwsx2627  power 54.0E-1  0.5 -> 2.3  Inexact Rounded

+pwsx2628  power 54.00E-2  0.5 -> 0.73  Inexact Rounded

+pwsx2629  power 54E-3  0.5 -> 0.23  Inexact Rounded

+pwsx2630  power 54E+1  0.5 -> 23  Inexact Rounded

+pwsx2631  power 54E+2  0.5 -> 73  Inexact Rounded

+pwsx2632  power 54E+3  0.5 -> 2.3E+2  Inexact Rounded

+pwsx2633  power 0.55  0.5 -> 0.74  Inexact Rounded

+pwsx2634  power 0.055  0.5 -> 0.23  Inexact Rounded

+pwsx2635  power 55.0E-1  0.5 -> 2.3  Inexact Rounded

+pwsx2636  power 55.00E-2  0.5 -> 0.74  Inexact Rounded

+pwsx2637  power 55E-3  0.5 -> 0.23  Inexact Rounded

+pwsx2638  power 55E+1  0.5 -> 23  Inexact Rounded

+pwsx2639  power 55E+2  0.5 -> 74  Inexact Rounded

+pwsx2640  power 55E+3  0.5 -> 2.3E+2  Inexact Rounded

+pwsx2641  power 0.56  0.5 -> 0.75  Inexact Rounded

+pwsx2642  power 0.056  0.5 -> 0.24  Inexact Rounded

+pwsx2643  power 56.0E-1  0.5 -> 2.4  Inexact Rounded

+pwsx2644  power 56.00E-2  0.5 -> 0.75  Inexact Rounded

+pwsx2645  power 56E-3  0.5 -> 0.24  Inexact Rounded

+pwsx2646  power 56E+1  0.5 -> 24  Inexact Rounded

+pwsx2647  power 56E+2  0.5 -> 75  Inexact Rounded

+pwsx2648  power 56E+3  0.5 -> 2.4E+2  Inexact Rounded

+pwsx2649  power 0.57  0.5 -> 0.75  Inexact Rounded

+pwsx2650  power 0.057  0.5 -> 0.24  Inexact Rounded

+pwsx2651  power 57.0E-1  0.5 -> 2.4  Inexact Rounded

+pwsx2652  power 57.00E-2  0.5 -> 0.75  Inexact Rounded

+pwsx2653  power 57E-3  0.5 -> 0.24  Inexact Rounded

+pwsx2654  power 57E+1  0.5 -> 24  Inexact Rounded

+pwsx2655  power 57E+2  0.5 -> 75  Inexact Rounded

+pwsx2656  power 57E+3  0.5 -> 2.4E+2  Inexact Rounded

+pwsx2657  power 0.58  0.5 -> 0.76  Inexact Rounded

+pwsx2658  power 0.058  0.5 -> 0.24  Inexact Rounded

+pwsx2659  power 58.0E-1  0.5 -> 2.4  Inexact Rounded

+pwsx2660  power 58.00E-2  0.5 -> 0.76  Inexact Rounded

+pwsx2661  power 58E-3  0.5 -> 0.24  Inexact Rounded

+pwsx2662  power 58E+1  0.5 -> 24  Inexact Rounded

+pwsx2663  power 58E+2  0.5 -> 76  Inexact Rounded

+pwsx2664  power 58E+3  0.5 -> 2.4E+2  Inexact Rounded

+pwsx2665  power 0.59  0.5 -> 0.77  Inexact Rounded

+pwsx2666  power 0.059  0.5 -> 0.24  Inexact Rounded

+pwsx2667  power 59.0E-1  0.5 -> 2.4  Inexact Rounded

+pwsx2668  power 59.00E-2  0.5 -> 0.77  Inexact Rounded

+pwsx2669  power 59E-3  0.5 -> 0.24  Inexact Rounded

+pwsx2670  power 59E+1  0.5 -> 24  Inexact Rounded

+pwsx2671  power 59E+2  0.5 -> 77  Inexact Rounded

+pwsx2672  power 59E+3  0.5 -> 2.4E+2  Inexact Rounded

+pwsx2673  power 0.60  0.5 -> 0.77  Inexact Rounded

+pwsx2674  power 0.060  0.5 -> 0.24  Inexact Rounded

+pwsx2675  power 60.0E-1  0.5 -> 2.4  Inexact Rounded

+pwsx2676  power 60.00E-2  0.5 -> 0.77  Inexact Rounded

+pwsx2677  power 60E-3  0.5 -> 0.24  Inexact Rounded

+pwsx2678  power 60E+1  0.5 -> 24  Inexact Rounded

+pwsx2679  power 60E+2  0.5 -> 77  Inexact Rounded

+pwsx2680  power 60E+3  0.5 -> 2.4E+2  Inexact Rounded

+pwsx2681  power 0.61  0.5 -> 0.78  Inexact Rounded

+pwsx2682  power 0.061  0.5 -> 0.25  Inexact Rounded

+pwsx2683  power 61.0E-1  0.5 -> 2.5  Inexact Rounded

+pwsx2684  power 61.00E-2  0.5 -> 0.78  Inexact Rounded

+pwsx2685  power 61E-3  0.5 -> 0.25  Inexact Rounded

+pwsx2686  power 61E+1  0.5 -> 25  Inexact Rounded

+pwsx2687  power 61E+2  0.5 -> 78  Inexact Rounded

+pwsx2688  power 61E+3  0.5 -> 2.5E+2  Inexact Rounded

+pwsx2689  power 0.62  0.5 -> 0.79  Inexact Rounded

+pwsx2690  power 0.062  0.5 -> 0.25  Inexact Rounded

+pwsx2691  power 62.0E-1  0.5 -> 2.5  Inexact Rounded

+pwsx2692  power 62.00E-2  0.5 -> 0.79  Inexact Rounded

+pwsx2693  power 62E-3  0.5 -> 0.25  Inexact Rounded

+pwsx2694  power 62E+1  0.5 -> 25  Inexact Rounded

+pwsx2695  power 62E+2  0.5 -> 79  Inexact Rounded

+pwsx2696  power 62E+3  0.5 -> 2.5E+2  Inexact Rounded

+pwsx2697  power 0.63  0.5 -> 0.79  Inexact Rounded

+pwsx2698  power 0.063  0.5 -> 0.25  Inexact Rounded

+pwsx2699  power 63.0E-1  0.5 -> 2.5  Inexact Rounded

+pwsx2700  power 63.00E-2  0.5 -> 0.79  Inexact Rounded

+pwsx2701  power 63E-3  0.5 -> 0.25  Inexact Rounded

+pwsx2702  power 63E+1  0.5 -> 25  Inexact Rounded

+pwsx2703  power 63E+2  0.5 -> 79  Inexact Rounded

+pwsx2704  power 63E+3  0.5 -> 2.5E+2  Inexact Rounded

+pwsx2705  power 0.64  0.5 -> 0.80 Inexact Rounded

+pwsx2706  power 0.064  0.5 -> 0.25  Inexact Rounded

+pwsx2707  power 64.0E-1  0.5 -> 2.5  Inexact Rounded

+pwsx2708  power 64.00E-2  0.5 -> 0.80 Inexact Rounded

+pwsx2709  power 64E-3  0.5 -> 0.25  Inexact Rounded

+pwsx2710  power 64E+1  0.5 -> 25  Inexact Rounded

+pwsx2711  power 64E+2  0.5 -> 80 Inexact Rounded

+pwsx2712  power 64E+3  0.5 -> 2.5E+2  Inexact Rounded

+pwsx2713  power 0.65  0.5 -> 0.81  Inexact Rounded

+pwsx2714  power 0.065  0.5 -> 0.25  Inexact Rounded

+pwsx2715  power 65.0E-1  0.5 -> 2.5  Inexact Rounded

+pwsx2716  power 65.00E-2  0.5 -> 0.81  Inexact Rounded

+pwsx2717  power 65E-3  0.5 -> 0.25  Inexact Rounded

+pwsx2718  power 65E+1  0.5 -> 25  Inexact Rounded

+pwsx2719  power 65E+2  0.5 -> 81  Inexact Rounded

+pwsx2720  power 65E+3  0.5 -> 2.5E+2  Inexact Rounded

+pwsx2721  power 0.66  0.5 -> 0.81  Inexact Rounded

+pwsx2722  power 0.066  0.5 -> 0.26  Inexact Rounded

+pwsx2723  power 66.0E-1  0.5 -> 2.6  Inexact Rounded

+pwsx2724  power 66.00E-2  0.5 -> 0.81  Inexact Rounded

+pwsx2725  power 66E-3  0.5 -> 0.26  Inexact Rounded

+pwsx2726  power 66E+1  0.5 -> 26  Inexact Rounded

+pwsx2727  power 66E+2  0.5 -> 81  Inexact Rounded

+pwsx2728  power 66E+3  0.5 -> 2.6E+2  Inexact Rounded

+pwsx2729  power 0.67  0.5 -> 0.82  Inexact Rounded

+pwsx2730  power 0.067  0.5 -> 0.26  Inexact Rounded

+pwsx2731  power 67.0E-1  0.5 -> 2.6  Inexact Rounded

+pwsx2732  power 67.00E-2  0.5 -> 0.82  Inexact Rounded

+pwsx2733  power 67E-3  0.5 -> 0.26  Inexact Rounded

+pwsx2734  power 67E+1  0.5 -> 26  Inexact Rounded

+pwsx2735  power 67E+2  0.5 -> 82  Inexact Rounded

+pwsx2736  power 67E+3  0.5 -> 2.6E+2  Inexact Rounded

+pwsx2737  power 0.68  0.5 -> 0.82  Inexact Rounded

+pwsx2738  power 0.068  0.5 -> 0.26  Inexact Rounded

+pwsx2739  power 68.0E-1  0.5 -> 2.6  Inexact Rounded

+pwsx2740  power 68.00E-2  0.5 -> 0.82  Inexact Rounded

+pwsx2741  power 68E-3  0.5 -> 0.26  Inexact Rounded

+pwsx2742  power 68E+1  0.5 -> 26  Inexact Rounded

+pwsx2743  power 68E+2  0.5 -> 82  Inexact Rounded

+pwsx2744  power 68E+3  0.5 -> 2.6E+2  Inexact Rounded

+pwsx2745  power 0.69  0.5 -> 0.83  Inexact Rounded

+pwsx2746  power 0.069  0.5 -> 0.26  Inexact Rounded

+pwsx2747  power 69.0E-1  0.5 -> 2.6  Inexact Rounded

+pwsx2748  power 69.00E-2  0.5 -> 0.83  Inexact Rounded

+pwsx2749  power 69E-3  0.5 -> 0.26  Inexact Rounded

+pwsx2750  power 69E+1  0.5 -> 26  Inexact Rounded

+pwsx2751  power 69E+2  0.5 -> 83  Inexact Rounded

+pwsx2752  power 69E+3  0.5 -> 2.6E+2  Inexact Rounded

+pwsx2753  power 0.70  0.5 -> 0.84  Inexact Rounded

+pwsx2754  power 0.070  0.5 -> 0.26  Inexact Rounded

+pwsx2755  power 70.0E-1  0.5 -> 2.6  Inexact Rounded

+pwsx2756  power 70.00E-2  0.5 -> 0.84  Inexact Rounded

+pwsx2757  power 70E-3  0.5 -> 0.26  Inexact Rounded

+pwsx2758  power 70E+1  0.5 -> 26  Inexact Rounded

+pwsx2759  power 70E+2  0.5 -> 84  Inexact Rounded

+pwsx2760  power 70E+3  0.5 -> 2.6E+2  Inexact Rounded

+pwsx2761  power 0.71  0.5 -> 0.84  Inexact Rounded

+pwsx2762  power 0.071  0.5 -> 0.27  Inexact Rounded

+pwsx2763  power 71.0E-1  0.5 -> 2.7  Inexact Rounded

+pwsx2764  power 71.00E-2  0.5 -> 0.84  Inexact Rounded

+pwsx2765  power 71E-3  0.5 -> 0.27  Inexact Rounded

+pwsx2766  power 71E+1  0.5 -> 27  Inexact Rounded

+pwsx2767  power 71E+2  0.5 -> 84  Inexact Rounded

+pwsx2768  power 71E+3  0.5 -> 2.7E+2  Inexact Rounded

+pwsx2769  power 0.72  0.5 -> 0.85  Inexact Rounded

+pwsx2770  power 0.072  0.5 -> 0.27  Inexact Rounded

+pwsx2771  power 72.0E-1  0.5 -> 2.7  Inexact Rounded

+pwsx2772  power 72.00E-2  0.5 -> 0.85  Inexact Rounded

+pwsx2773  power 72E-3  0.5 -> 0.27  Inexact Rounded

+pwsx2774  power 72E+1  0.5 -> 27  Inexact Rounded

+pwsx2775  power 72E+2  0.5 -> 85  Inexact Rounded

+pwsx2776  power 72E+3  0.5 -> 2.7E+2  Inexact Rounded

+pwsx2777  power 0.73  0.5 -> 0.85  Inexact Rounded

+pwsx2778  power 0.073  0.5 -> 0.27  Inexact Rounded

+pwsx2779  power 73.0E-1  0.5 -> 2.7  Inexact Rounded

+pwsx2780  power 73.00E-2  0.5 -> 0.85  Inexact Rounded

+pwsx2781  power 73E-3  0.5 -> 0.27  Inexact Rounded

+pwsx2782  power 73E+1  0.5 -> 27  Inexact Rounded

+pwsx2783  power 73E+2  0.5 -> 85  Inexact Rounded

+pwsx2784  power 73E+3  0.5 -> 2.7E+2  Inexact Rounded

+pwsx2785  power 0.74  0.5 -> 0.86  Inexact Rounded

+pwsx2786  power 0.074  0.5 -> 0.27  Inexact Rounded

+pwsx2787  power 74.0E-1  0.5 -> 2.7  Inexact Rounded

+pwsx2788  power 74.00E-2  0.5 -> 0.86  Inexact Rounded

+pwsx2789  power 74E-3  0.5 -> 0.27  Inexact Rounded

+pwsx2790  power 74E+1  0.5 -> 27  Inexact Rounded

+pwsx2791  power 74E+2  0.5 -> 86  Inexact Rounded

+pwsx2792  power 74E+3  0.5 -> 2.7E+2  Inexact Rounded

+pwsx2793  power 0.75  0.5 -> 0.87  Inexact Rounded

+pwsx2794  power 0.075  0.5 -> 0.27  Inexact Rounded

+pwsx2795  power 75.0E-1  0.5 -> 2.7  Inexact Rounded

+pwsx2796  power 75.00E-2  0.5 -> 0.87  Inexact Rounded

+pwsx2797  power 75E-3  0.5 -> 0.27  Inexact Rounded

+pwsx2798  power 75E+1  0.5 -> 27  Inexact Rounded

+pwsx2799  power 75E+2  0.5 -> 87  Inexact Rounded

+pwsx2800  power 75E+3  0.5 -> 2.7E+2  Inexact Rounded

+pwsx2801  power 0.76  0.5 -> 0.87  Inexact Rounded

+pwsx2802  power 0.076  0.5 -> 0.28  Inexact Rounded

+pwsx2803  power 76.0E-1  0.5 -> 2.8  Inexact Rounded

+pwsx2804  power 76.00E-2  0.5 -> 0.87  Inexact Rounded

+pwsx2805  power 76E-3  0.5 -> 0.28  Inexact Rounded

+pwsx2806  power 76E+1  0.5 -> 28  Inexact Rounded

+pwsx2807  power 76E+2  0.5 -> 87  Inexact Rounded

+pwsx2808  power 76E+3  0.5 -> 2.8E+2  Inexact Rounded

+pwsx2809  power 0.77  0.5 -> 0.88  Inexact Rounded

+pwsx2810  power 0.077  0.5 -> 0.28  Inexact Rounded

+pwsx2811  power 77.0E-1  0.5 -> 2.8  Inexact Rounded

+pwsx2812  power 77.00E-2  0.5 -> 0.88  Inexact Rounded

+pwsx2813  power 77E-3  0.5 -> 0.28  Inexact Rounded

+pwsx2814  power 77E+1  0.5 -> 28  Inexact Rounded

+pwsx2815  power 77E+2  0.5 -> 88  Inexact Rounded

+pwsx2816  power 77E+3  0.5 -> 2.8E+2  Inexact Rounded

+pwsx2817  power 0.78  0.5 -> 0.88  Inexact Rounded

+pwsx2818  power 0.078  0.5 -> 0.28  Inexact Rounded

+pwsx2819  power 78.0E-1  0.5 -> 2.8  Inexact Rounded

+pwsx2820  power 78.00E-2  0.5 -> 0.88  Inexact Rounded

+pwsx2821  power 78E-3  0.5 -> 0.28  Inexact Rounded

+pwsx2822  power 78E+1  0.5 -> 28  Inexact Rounded

+pwsx2823  power 78E+2  0.5 -> 88  Inexact Rounded

+pwsx2824  power 78E+3  0.5 -> 2.8E+2  Inexact Rounded

+pwsx2825  power 0.79  0.5 -> 0.89  Inexact Rounded

+pwsx2826  power 0.079  0.5 -> 0.28  Inexact Rounded

+pwsx2827  power 79.0E-1  0.5 -> 2.8  Inexact Rounded

+pwsx2828  power 79.00E-2  0.5 -> 0.89  Inexact Rounded

+pwsx2829  power 79E-3  0.5 -> 0.28  Inexact Rounded

+pwsx2830  power 79E+1  0.5 -> 28  Inexact Rounded

+pwsx2831  power 79E+2  0.5 -> 89  Inexact Rounded

+pwsx2832  power 79E+3  0.5 -> 2.8E+2  Inexact Rounded

+pwsx2833  power 0.80  0.5 -> 0.89  Inexact Rounded

+pwsx2834  power 0.080  0.5 -> 0.28  Inexact Rounded

+pwsx2835  power 80.0E-1  0.5 -> 2.8  Inexact Rounded

+pwsx2836  power 80.00E-2  0.5 -> 0.89  Inexact Rounded

+pwsx2837  power 80E-3  0.5 -> 0.28  Inexact Rounded

+pwsx2838  power 80E+1  0.5 -> 28  Inexact Rounded

+pwsx2839  power 80E+2  0.5 -> 89  Inexact Rounded

+pwsx2840  power 80E+3  0.5 -> 2.8E+2  Inexact Rounded

+pwsx2841  power 0.81  0.5 -> 0.90 Inexact Rounded

+pwsx2842  power 0.081  0.5 -> 0.28  Inexact Rounded

+pwsx2843  power 81.0E-1  0.5 -> 2.8  Inexact Rounded

+pwsx2844  power 81.00E-2  0.5 -> 0.90 Inexact Rounded

+pwsx2845  power 81E-3  0.5 -> 0.28  Inexact Rounded

+pwsx2846  power 81E+1  0.5 -> 28  Inexact Rounded

+pwsx2847  power 81E+2  0.5 -> 90 Inexact Rounded

+pwsx2848  power 81E+3  0.5 -> 2.8E+2  Inexact Rounded

+pwsx2849  power 0.82  0.5 -> 0.91  Inexact Rounded

+pwsx2850  power 0.082  0.5 -> 0.29  Inexact Rounded

+pwsx2851  power 82.0E-1  0.5 -> 2.9  Inexact Rounded

+pwsx2852  power 82.00E-2  0.5 -> 0.91  Inexact Rounded

+pwsx2853  power 82E-3  0.5 -> 0.29  Inexact Rounded

+pwsx2854  power 82E+1  0.5 -> 29  Inexact Rounded

+pwsx2855  power 82E+2  0.5 -> 91  Inexact Rounded

+pwsx2856  power 82E+3  0.5 -> 2.9E+2  Inexact Rounded

+pwsx2857  power 0.83  0.5 -> 0.91  Inexact Rounded

+pwsx2858  power 0.083  0.5 -> 0.29  Inexact Rounded

+pwsx2859  power 83.0E-1  0.5 -> 2.9  Inexact Rounded

+pwsx2860  power 83.00E-2  0.5 -> 0.91  Inexact Rounded

+pwsx2861  power 83E-3  0.5 -> 0.29  Inexact Rounded

+pwsx2862  power 83E+1  0.5 -> 29  Inexact Rounded

+pwsx2863  power 83E+2  0.5 -> 91  Inexact Rounded

+pwsx2864  power 83E+3  0.5 -> 2.9E+2  Inexact Rounded

+pwsx2865  power 0.84  0.5 -> 0.92  Inexact Rounded

+pwsx2866  power 0.084  0.5 -> 0.29  Inexact Rounded

+pwsx2867  power 84.0E-1  0.5 -> 2.9  Inexact Rounded

+pwsx2868  power 84.00E-2  0.5 -> 0.92  Inexact Rounded

+pwsx2869  power 84E-3  0.5 -> 0.29  Inexact Rounded

+pwsx2870  power 84E+1  0.5 -> 29  Inexact Rounded

+pwsx2871  power 84E+2  0.5 -> 92  Inexact Rounded

+pwsx2872  power 84E+3  0.5 -> 2.9E+2  Inexact Rounded

+pwsx2873  power 0.85  0.5 -> 0.92  Inexact Rounded

+pwsx2874  power 0.085  0.5 -> 0.29  Inexact Rounded

+pwsx2875  power 85.0E-1  0.5 -> 2.9  Inexact Rounded

+pwsx2876  power 85.00E-2  0.5 -> 0.92  Inexact Rounded

+pwsx2877  power 85E-3  0.5 -> 0.29  Inexact Rounded

+pwsx2878  power 85E+1  0.5 -> 29  Inexact Rounded

+pwsx2879  power 85E+2  0.5 -> 92  Inexact Rounded

+pwsx2880  power 85E+3  0.5 -> 2.9E+2  Inexact Rounded

+pwsx2881  power 0.86  0.5 -> 0.93  Inexact Rounded

+pwsx2882  power 0.086  0.5 -> 0.29  Inexact Rounded

+pwsx2883  power 86.0E-1  0.5 -> 2.9  Inexact Rounded

+pwsx2884  power 86.00E-2  0.5 -> 0.93  Inexact Rounded

+pwsx2885  power 86E-3  0.5 -> 0.29  Inexact Rounded

+pwsx2886  power 86E+1  0.5 -> 29  Inexact Rounded

+pwsx2887  power 86E+2  0.5 -> 93  Inexact Rounded

+pwsx2888  power 86E+3  0.5 -> 2.9E+2  Inexact Rounded

+pwsx2889  power 0.87  0.5 -> 0.93  Inexact Rounded

+pwsx2890  power 0.087  0.5 -> 0.29  Inexact Rounded

+pwsx2891  power 87.0E-1  0.5 -> 2.9  Inexact Rounded

+pwsx2892  power 87.00E-2  0.5 -> 0.93  Inexact Rounded

+pwsx2893  power 87E-3  0.5 -> 0.29  Inexact Rounded

+pwsx2894  power 87E+1  0.5 -> 29  Inexact Rounded

+pwsx2895  power 87E+2  0.5 -> 93  Inexact Rounded

+pwsx2896  power 87E+3  0.5 -> 2.9E+2  Inexact Rounded

+pwsx2897  power 0.88  0.5 -> 0.94  Inexact Rounded

+pwsx2898  power 0.088  0.5 -> 0.30  Inexact Rounded

+pwsx2899  power 88.0E-1  0.5 -> 3.0  Inexact Rounded

+pwsx2900  power 88.00E-2  0.5 -> 0.94  Inexact Rounded

+pwsx2901  power 88E-3  0.5 -> 0.30  Inexact Rounded

+pwsx2902  power 88E+1  0.5 -> 30  Inexact Rounded

+pwsx2903  power 88E+2  0.5 -> 94  Inexact Rounded

+pwsx2904  power 88E+3  0.5 -> 3.0E+2  Inexact Rounded

+pwsx2905  power 0.89  0.5 -> 0.94  Inexact Rounded

+pwsx2906  power 0.089  0.5 -> 0.30  Inexact Rounded

+pwsx2907  power 89.0E-1  0.5 -> 3.0  Inexact Rounded

+pwsx2908  power 89.00E-2  0.5 -> 0.94  Inexact Rounded

+pwsx2909  power 89E-3  0.5 -> 0.30  Inexact Rounded

+pwsx2910  power 89E+1  0.5 -> 30  Inexact Rounded

+pwsx2911  power 89E+2  0.5 -> 94  Inexact Rounded

+pwsx2912  power 89E+3  0.5 -> 3.0E+2  Inexact Rounded

+pwsx2913  power 0.90  0.5 -> 0.95  Inexact Rounded

+pwsx2914  power 0.090  0.5 -> 0.30 Inexact Rounded

+pwsx2915  power 90.0E-1  0.5 -> 3.0 Inexact Rounded

+pwsx2916  power 90.00E-2  0.5 -> 0.95  Inexact Rounded

+pwsx2917  power 90E-3  0.5 -> 0.30 Inexact Rounded

+pwsx2918  power 90E+1  0.5 -> 30 Inexact Rounded

+pwsx2919  power 90E+2  0.5 -> 95  Inexact Rounded

+pwsx2920  power 90E+3  0.5 -> 3.0E+2 Inexact Rounded

+pwsx2921  power 0.91  0.5 -> 0.95  Inexact Rounded

+pwsx2922  power 0.091  0.5 -> 0.30  Inexact Rounded

+pwsx2923  power 91.0E-1  0.5 -> 3.0  Inexact Rounded

+pwsx2924  power 91.00E-2  0.5 -> 0.95  Inexact Rounded

+pwsx2925  power 91E-3  0.5 -> 0.30  Inexact Rounded

+pwsx2926  power 91E+1  0.5 -> 30  Inexact Rounded

+pwsx2927  power 91E+2  0.5 -> 95  Inexact Rounded

+pwsx2928  power 91E+3  0.5 -> 3.0E+2  Inexact Rounded

+pwsx2929  power 0.92  0.5 -> 0.96  Inexact Rounded

+pwsx2930  power 0.092  0.5 -> 0.30  Inexact Rounded

+pwsx2931  power 92.0E-1  0.5 -> 3.0  Inexact Rounded

+pwsx2932  power 92.00E-2  0.5 -> 0.96  Inexact Rounded

+pwsx2933  power 92E-3  0.5 -> 0.30  Inexact Rounded

+pwsx2934  power 92E+1  0.5 -> 30  Inexact Rounded

+pwsx2935  power 92E+2  0.5 -> 96  Inexact Rounded

+pwsx2936  power 92E+3  0.5 -> 3.0E+2  Inexact Rounded

+pwsx2937  power 0.93  0.5 -> 0.96  Inexact Rounded

+pwsx2938  power 0.093  0.5 -> 0.30  Inexact Rounded

+pwsx2939  power 93.0E-1  0.5 -> 3.0  Inexact Rounded

+pwsx2940  power 93.00E-2  0.5 -> 0.96  Inexact Rounded

+pwsx2941  power 93E-3  0.5 -> 0.30  Inexact Rounded

+pwsx2942  power 93E+1  0.5 -> 30  Inexact Rounded

+pwsx2943  power 93E+2  0.5 -> 96  Inexact Rounded

+pwsx2944  power 93E+3  0.5 -> 3.0E+2  Inexact Rounded

+pwsx2945  power 0.94  0.5 -> 0.97  Inexact Rounded

+pwsx2946  power 0.094  0.5 -> 0.31  Inexact Rounded

+pwsx2947  power 94.0E-1  0.5 -> 3.1  Inexact Rounded

+pwsx2948  power 94.00E-2  0.5 -> 0.97  Inexact Rounded

+pwsx2949  power 94E-3  0.5 -> 0.31  Inexact Rounded

+pwsx2950  power 94E+1  0.5 -> 31  Inexact Rounded

+pwsx2951  power 94E+2  0.5 -> 97  Inexact Rounded

+pwsx2952  power 94E+3  0.5 -> 3.1E+2  Inexact Rounded

+pwsx2953  power 0.95  0.5 -> 0.97  Inexact Rounded

+pwsx2954  power 0.095  0.5 -> 0.31  Inexact Rounded

+pwsx2955  power 95.0E-1  0.5 -> 3.1  Inexact Rounded

+pwsx2956  power 95.00E-2  0.5 -> 0.97  Inexact Rounded

+pwsx2957  power 95E-3  0.5 -> 0.31  Inexact Rounded

+pwsx2958  power 95E+1  0.5 -> 31  Inexact Rounded

+pwsx2959  power 95E+2  0.5 -> 97  Inexact Rounded

+pwsx2960  power 95E+3  0.5 -> 3.1E+2  Inexact Rounded

+pwsx2961  power 0.96  0.5 -> 0.98  Inexact Rounded

+pwsx2962  power 0.096  0.5 -> 0.31  Inexact Rounded

+pwsx2963  power 96.0E-1  0.5 -> 3.1  Inexact Rounded

+pwsx2964  power 96.00E-2  0.5 -> 0.98  Inexact Rounded

+pwsx2965  power 96E-3  0.5 -> 0.31  Inexact Rounded

+pwsx2966  power 96E+1  0.5 -> 31  Inexact Rounded

+pwsx2967  power 96E+2  0.5 -> 98  Inexact Rounded

+pwsx2968  power 96E+3  0.5 -> 3.1E+2  Inexact Rounded

+pwsx2969  power 0.97  0.5 -> 0.98  Inexact Rounded

+pwsx2970  power 0.097  0.5 -> 0.31  Inexact Rounded

+pwsx2971  power 97.0E-1  0.5 -> 3.1  Inexact Rounded

+pwsx2972  power 97.00E-2  0.5 -> 0.98  Inexact Rounded

+pwsx2973  power 97E-3  0.5 -> 0.31  Inexact Rounded

+pwsx2974  power 97E+1  0.5 -> 31  Inexact Rounded

+pwsx2975  power 97E+2  0.5 -> 98  Inexact Rounded

+pwsx2976  power 97E+3  0.5 -> 3.1E+2  Inexact Rounded

+pwsx2977  power 0.98  0.5 -> 0.99  Inexact Rounded

+pwsx2978  power 0.098  0.5 -> 0.31  Inexact Rounded

+pwsx2979  power 98.0E-1  0.5 -> 3.1  Inexact Rounded

+pwsx2980  power 98.00E-2  0.5 -> 0.99  Inexact Rounded

+pwsx2981  power 98E-3  0.5 -> 0.31  Inexact Rounded

+pwsx2982  power 98E+1  0.5 -> 31  Inexact Rounded

+pwsx2983  power 98E+2  0.5 -> 99  Inexact Rounded

+pwsx2984  power 98E+3  0.5 -> 3.1E+2  Inexact Rounded

+pwsx2985  power 0.99  0.5 -> 0.99  Inexact Rounded

+pwsx2986  power 0.099  0.5 -> 0.31  Inexact Rounded

+pwsx2987  power 99.0E-1  0.5 -> 3.1  Inexact Rounded

+pwsx2988  power 99.00E-2  0.5 -> 0.99  Inexact Rounded

+pwsx2989  power 99E-3  0.5 -> 0.31  Inexact Rounded

+pwsx2990  power 99E+1  0.5 -> 31  Inexact Rounded

+pwsx2991  power 99E+2  0.5 -> 99  Inexact Rounded

+pwsx2992  power 99E+3  0.5 -> 3.1E+2  Inexact Rounded

+

+-- Precision 3 squareroot tests [exhaustive, f and f/10]

+rounding:    half_even

+maxExponent: 999

+minexponent: -999

+precision:   3

+pwsx3001  power 0.1  0.5 -> 0.316  Inexact Rounded

+pwsx3002  power 0.01  0.5 -> 0.100  Inexact Rounded

+pwsx3003  power 0.2  0.5 -> 0.447  Inexact Rounded

+pwsx3004  power 0.02  0.5 -> 0.141  Inexact Rounded

+pwsx3005  power 0.3  0.5 -> 0.548  Inexact Rounded

+pwsx3006  power 0.03  0.5 -> 0.173  Inexact Rounded

+pwsx3007  power 0.4  0.5 -> 0.632  Inexact Rounded

+pwsx3008  power 0.04  0.5 -> 0.200  Inexact Rounded

+pwsx3009  power 0.5  0.5 -> 0.707  Inexact Rounded

+pwsx3010  power 0.05  0.5 -> 0.224  Inexact Rounded

+pwsx3011  power 0.6  0.5 -> 0.775  Inexact Rounded

+pwsx3012  power 0.06  0.5 -> 0.245  Inexact Rounded

+pwsx3013  power 0.7  0.5 -> 0.837  Inexact Rounded

+pwsx3014  power 0.07  0.5 -> 0.265  Inexact Rounded

+pwsx3015  power 0.8  0.5 -> 0.894  Inexact Rounded

+pwsx3016  power 0.08  0.5 -> 0.283  Inexact Rounded

+pwsx3017  power 0.9  0.5 -> 0.949  Inexact Rounded

+pwsx3018  power 0.09  0.5 -> 0.300  Inexact Rounded

+pwsx3019  power 0.11  0.5 -> 0.332  Inexact Rounded

+pwsx3020  power 0.011  0.5 -> 0.105  Inexact Rounded

+pwsx3021  power 0.12  0.5 -> 0.346  Inexact Rounded

+pwsx3022  power 0.012  0.5 -> 0.110  Inexact Rounded

+pwsx3023  power 0.13  0.5 -> 0.361  Inexact Rounded

+pwsx3024  power 0.013  0.5 -> 0.114  Inexact Rounded

+pwsx3025  power 0.14  0.5 -> 0.374  Inexact Rounded

+pwsx3026  power 0.014  0.5 -> 0.118  Inexact Rounded

+pwsx3027  power 0.15  0.5 -> 0.387  Inexact Rounded

+pwsx3028  power 0.015  0.5 -> 0.122  Inexact Rounded

+pwsx3029  power 0.16  0.5 -> 0.400  Inexact Rounded

+pwsx3030  power 0.016  0.5 -> 0.126  Inexact Rounded

+pwsx3031  power 0.17  0.5 -> 0.412  Inexact Rounded

+pwsx3032  power 0.017  0.5 -> 0.130  Inexact Rounded

+pwsx3033  power 0.18  0.5 -> 0.424  Inexact Rounded

+pwsx3034  power 0.018  0.5 -> 0.134  Inexact Rounded

+pwsx3035  power 0.19  0.5 -> 0.436  Inexact Rounded

+pwsx3036  power 0.019  0.5 -> 0.138  Inexact Rounded

+pwsx3037  power 0.21  0.5 -> 0.458  Inexact Rounded

+pwsx3038  power 0.021  0.5 -> 0.145  Inexact Rounded

+pwsx3039  power 0.22  0.5 -> 0.469  Inexact Rounded

+pwsx3040  power 0.022  0.5 -> 0.148  Inexact Rounded

+pwsx3041  power 0.23  0.5 -> 0.480  Inexact Rounded

+pwsx3042  power 0.023  0.5 -> 0.152  Inexact Rounded

+pwsx3043  power 0.24  0.5 -> 0.490  Inexact Rounded

+pwsx3044  power 0.024  0.5 -> 0.155  Inexact Rounded

+pwsx3045  power 0.25  0.5 -> 0.500  Inexact Rounded

+pwsx3046  power 0.025  0.5 -> 0.158  Inexact Rounded

+pwsx3047  power 0.26  0.5 -> 0.510  Inexact Rounded

+pwsx3048  power 0.026  0.5 -> 0.161  Inexact Rounded

+pwsx3049  power 0.27  0.5 -> 0.520  Inexact Rounded

+pwsx3050  power 0.027  0.5 -> 0.164  Inexact Rounded

+pwsx3051  power 0.28  0.5 -> 0.529  Inexact Rounded

+pwsx3052  power 0.028  0.5 -> 0.167  Inexact Rounded

+pwsx3053  power 0.29  0.5 -> 0.539  Inexact Rounded

+pwsx3054  power 0.029  0.5 -> 0.170  Inexact Rounded

+pwsx3055  power 0.31  0.5 -> 0.557  Inexact Rounded

+pwsx3056  power 0.031  0.5 -> 0.176  Inexact Rounded

+pwsx3057  power 0.32  0.5 -> 0.566  Inexact Rounded

+pwsx3058  power 0.032  0.5 -> 0.179  Inexact Rounded

+pwsx3059  power 0.33  0.5 -> 0.574  Inexact Rounded

+pwsx3060  power 0.033  0.5 -> 0.182  Inexact Rounded

+pwsx3061  power 0.34  0.5 -> 0.583  Inexact Rounded

+pwsx3062  power 0.034  0.5 -> 0.184  Inexact Rounded

+pwsx3063  power 0.35  0.5 -> 0.592  Inexact Rounded

+pwsx3064  power 0.035  0.5 -> 0.187  Inexact Rounded

+pwsx3065  power 0.36  0.5 -> 0.600  Inexact Rounded

+pwsx3066  power 0.036  0.5 -> 0.190  Inexact Rounded

+pwsx3067  power 0.37  0.5 -> 0.608  Inexact Rounded

+pwsx3068  power 0.037  0.5 -> 0.192  Inexact Rounded

+pwsx3069  power 0.38  0.5 -> 0.616  Inexact Rounded

+pwsx3070  power 0.038  0.5 -> 0.195  Inexact Rounded

+pwsx3071  power 0.39  0.5 -> 0.624  Inexact Rounded

+pwsx3072  power 0.039  0.5 -> 0.197  Inexact Rounded

+pwsx3073  power 0.41  0.5 -> 0.640  Inexact Rounded

+pwsx3074  power 0.041  0.5 -> 0.202  Inexact Rounded

+pwsx3075  power 0.42  0.5 -> 0.648  Inexact Rounded

+pwsx3076  power 0.042  0.5 -> 0.205  Inexact Rounded

+pwsx3077  power 0.43  0.5 -> 0.656  Inexact Rounded

+pwsx3078  power 0.043  0.5 -> 0.207  Inexact Rounded

+pwsx3079  power 0.44  0.5 -> 0.663  Inexact Rounded

+pwsx3080  power 0.044  0.5 -> 0.210  Inexact Rounded

+pwsx3081  power 0.45  0.5 -> 0.671  Inexact Rounded

+pwsx3082  power 0.045  0.5 -> 0.212  Inexact Rounded

+pwsx3083  power 0.46  0.5 -> 0.678  Inexact Rounded

+pwsx3084  power 0.046  0.5 -> 0.214  Inexact Rounded

+pwsx3085  power 0.47  0.5 -> 0.686  Inexact Rounded

+pwsx3086  power 0.047  0.5 -> 0.217  Inexact Rounded

+pwsx3087  power 0.48  0.5 -> 0.693  Inexact Rounded

+pwsx3088  power 0.048  0.5 -> 0.219  Inexact Rounded

+pwsx3089  power 0.49  0.5 -> 0.700  Inexact Rounded

+pwsx3090  power 0.049  0.5 -> 0.221  Inexact Rounded

+pwsx3091  power 0.51  0.5 -> 0.714  Inexact Rounded

+pwsx3092  power 0.051  0.5 -> 0.226  Inexact Rounded

+pwsx3093  power 0.52  0.5 -> 0.721  Inexact Rounded

+pwsx3094  power 0.052  0.5 -> 0.228  Inexact Rounded

+pwsx3095  power 0.53  0.5 -> 0.728  Inexact Rounded

+pwsx3096  power 0.053  0.5 -> 0.230  Inexact Rounded

+pwsx3097  power 0.54  0.5 -> 0.735  Inexact Rounded

+pwsx3098  power 0.054  0.5 -> 0.232  Inexact Rounded

+pwsx3099  power 0.55  0.5 -> 0.742  Inexact Rounded

+pwsx3100  power 0.055  0.5 -> 0.235  Inexact Rounded

+pwsx3101  power 0.56  0.5 -> 0.748  Inexact Rounded

+pwsx3102  power 0.056  0.5 -> 0.237  Inexact Rounded

+pwsx3103  power 0.57  0.5 -> 0.755  Inexact Rounded

+pwsx3104  power 0.057  0.5 -> 0.239  Inexact Rounded

+pwsx3105  power 0.58  0.5 -> 0.762  Inexact Rounded

+pwsx3106  power 0.058  0.5 -> 0.241  Inexact Rounded

+pwsx3107  power 0.59  0.5 -> 0.768  Inexact Rounded

+pwsx3108  power 0.059  0.5 -> 0.243  Inexact Rounded

+pwsx3109  power 0.61  0.5 -> 0.781  Inexact Rounded

+pwsx3110  power 0.061  0.5 -> 0.247  Inexact Rounded

+pwsx3111  power 0.62  0.5 -> 0.787  Inexact Rounded

+pwsx3112  power 0.062  0.5 -> 0.249  Inexact Rounded

+pwsx3113  power 0.63  0.5 -> 0.794  Inexact Rounded

+pwsx3114  power 0.063  0.5 -> 0.251  Inexact Rounded

+pwsx3115  power 0.64  0.5 -> 0.800  Inexact Rounded

+pwsx3116  power 0.064  0.5 -> 0.253  Inexact Rounded

+pwsx3117  power 0.65  0.5 -> 0.806  Inexact Rounded

+pwsx3118  power 0.065  0.5 -> 0.255  Inexact Rounded

+pwsx3119  power 0.66  0.5 -> 0.812  Inexact Rounded

+pwsx3120  power 0.066  0.5 -> 0.257  Inexact Rounded

+pwsx3121  power 0.67  0.5 -> 0.819  Inexact Rounded

+pwsx3122  power 0.067  0.5 -> 0.259  Inexact Rounded

+pwsx3123  power 0.68  0.5 -> 0.825  Inexact Rounded

+pwsx3124  power 0.068  0.5 -> 0.261  Inexact Rounded

+pwsx3125  power 0.69  0.5 -> 0.831  Inexact Rounded

+pwsx3126  power 0.069  0.5 -> 0.263  Inexact Rounded

+pwsx3127  power 0.71  0.5 -> 0.843  Inexact Rounded

+pwsx3128  power 0.071  0.5 -> 0.266  Inexact Rounded

+pwsx3129  power 0.72  0.5 -> 0.849  Inexact Rounded

+pwsx3130  power 0.072  0.5 -> 0.268  Inexact Rounded

+pwsx3131  power 0.73  0.5 -> 0.854  Inexact Rounded

+pwsx3132  power 0.073  0.5 -> 0.270  Inexact Rounded

+pwsx3133  power 0.74  0.5 -> 0.860  Inexact Rounded

+pwsx3134  power 0.074  0.5 -> 0.272  Inexact Rounded

+pwsx3135  power 0.75  0.5 -> 0.866  Inexact Rounded

+pwsx3136  power 0.075  0.5 -> 0.274  Inexact Rounded

+pwsx3137  power 0.76  0.5 -> 0.872  Inexact Rounded

+pwsx3138  power 0.076  0.5 -> 0.276  Inexact Rounded

+pwsx3139  power 0.77  0.5 -> 0.877  Inexact Rounded

+pwsx3140  power 0.077  0.5 -> 0.277  Inexact Rounded

+pwsx3141  power 0.78  0.5 -> 0.883  Inexact Rounded

+pwsx3142  power 0.078  0.5 -> 0.279  Inexact Rounded

+pwsx3143  power 0.79  0.5 -> 0.889  Inexact Rounded

+pwsx3144  power 0.079  0.5 -> 0.281  Inexact Rounded

+pwsx3145  power 0.81  0.5 -> 0.900  Inexact Rounded

+pwsx3146  power 0.081  0.5 -> 0.285  Inexact Rounded

+pwsx3147  power 0.82  0.5 -> 0.906  Inexact Rounded

+pwsx3148  power 0.082  0.5 -> 0.286  Inexact Rounded

+pwsx3149  power 0.83  0.5 -> 0.911  Inexact Rounded

+pwsx3150  power 0.083  0.5 -> 0.288  Inexact Rounded

+pwsx3151  power 0.84  0.5 -> 0.917  Inexact Rounded

+pwsx3152  power 0.084  0.5 -> 0.290  Inexact Rounded

+pwsx3153  power 0.85  0.5 -> 0.922  Inexact Rounded

+pwsx3154  power 0.085  0.5 -> 0.292  Inexact Rounded

+pwsx3155  power 0.86  0.5 -> 0.927  Inexact Rounded

+pwsx3156  power 0.086  0.5 -> 0.293  Inexact Rounded

+pwsx3157  power 0.87  0.5 -> 0.933  Inexact Rounded

+pwsx3158  power 0.087  0.5 -> 0.295  Inexact Rounded

+pwsx3159  power 0.88  0.5 -> 0.938  Inexact Rounded

+pwsx3160  power 0.088  0.5 -> 0.297  Inexact Rounded

+pwsx3161  power 0.89  0.5 -> 0.943  Inexact Rounded

+pwsx3162  power 0.089  0.5 -> 0.298  Inexact Rounded

+pwsx3163  power 0.91  0.5 -> 0.954  Inexact Rounded

+pwsx3164  power 0.091  0.5 -> 0.302  Inexact Rounded

+pwsx3165  power 0.92  0.5 -> 0.959  Inexact Rounded

+pwsx3166  power 0.092  0.5 -> 0.303  Inexact Rounded

+pwsx3167  power 0.93  0.5 -> 0.964  Inexact Rounded

+pwsx3168  power 0.093  0.5 -> 0.305  Inexact Rounded

+pwsx3169  power 0.94  0.5 -> 0.970  Inexact Rounded

+pwsx3170  power 0.094  0.5 -> 0.307  Inexact Rounded

+pwsx3171  power 0.95  0.5 -> 0.975  Inexact Rounded

+pwsx3172  power 0.095  0.5 -> 0.308  Inexact Rounded

+pwsx3173  power 0.96  0.5 -> 0.980  Inexact Rounded

+pwsx3174  power 0.096  0.5 -> 0.310  Inexact Rounded

+pwsx3175  power 0.97  0.5 -> 0.985  Inexact Rounded

+pwsx3176  power 0.097  0.5 -> 0.311  Inexact Rounded

+pwsx3177  power 0.98  0.5 -> 0.990  Inexact Rounded

+pwsx3178  power 0.098  0.5 -> 0.313  Inexact Rounded

+pwsx3179  power 0.99  0.5 -> 0.995  Inexact Rounded

+pwsx3180  power 0.099  0.5 -> 0.315  Inexact Rounded

+pwsx3181  power 0.101  0.5 -> 0.318  Inexact Rounded

+pwsx3182  power 0.0101  0.5 -> 0.100  Inexact Rounded

+pwsx3183  power 0.102  0.5 -> 0.319  Inexact Rounded

+pwsx3184  power 0.0102  0.5 -> 0.101  Inexact Rounded

+pwsx3185  power 0.103  0.5 -> 0.321  Inexact Rounded

+pwsx3186  power 0.0103  0.5 -> 0.101  Inexact Rounded

+pwsx3187  power 0.104  0.5 -> 0.322  Inexact Rounded

+pwsx3188  power 0.0104  0.5 -> 0.102  Inexact Rounded

+pwsx3189  power 0.105  0.5 -> 0.324  Inexact Rounded

+pwsx3190  power 0.0105  0.5 -> 0.102  Inexact Rounded

+pwsx3191  power 0.106  0.5 -> 0.326  Inexact Rounded

+pwsx3192  power 0.0106  0.5 -> 0.103  Inexact Rounded

+pwsx3193  power 0.107  0.5 -> 0.327  Inexact Rounded

+pwsx3194  power 0.0107  0.5 -> 0.103  Inexact Rounded

+pwsx3195  power 0.108  0.5 -> 0.329  Inexact Rounded

+pwsx3196  power 0.0108  0.5 -> 0.104  Inexact Rounded

+pwsx3197  power 0.109  0.5 -> 0.330  Inexact Rounded

+pwsx3198  power 0.0109  0.5 -> 0.104  Inexact Rounded

+pwsx3199  power 0.111  0.5 -> 0.333  Inexact Rounded

+pwsx3200  power 0.0111  0.5 -> 0.105  Inexact Rounded

+pwsx3201  power 0.112  0.5 -> 0.335  Inexact Rounded

+pwsx3202  power 0.0112  0.5 -> 0.106  Inexact Rounded

+pwsx3203  power 0.113  0.5 -> 0.336  Inexact Rounded

+pwsx3204  power 0.0113  0.5 -> 0.106  Inexact Rounded

+pwsx3205  power 0.114  0.5 -> 0.338  Inexact Rounded

+pwsx3206  power 0.0114  0.5 -> 0.107  Inexact Rounded

+pwsx3207  power 0.115  0.5 -> 0.339  Inexact Rounded

+pwsx3208  power 0.0115  0.5 -> 0.107  Inexact Rounded

+pwsx3209  power 0.116  0.5 -> 0.341  Inexact Rounded

+pwsx3210  power 0.0116  0.5 -> 0.108  Inexact Rounded

+pwsx3211  power 0.117  0.5 -> 0.342  Inexact Rounded

+pwsx3212  power 0.0117  0.5 -> 0.108  Inexact Rounded

+pwsx3213  power 0.118  0.5 -> 0.344  Inexact Rounded

+pwsx3214  power 0.0118  0.5 -> 0.109  Inexact Rounded

+pwsx3215  power 0.119  0.5 -> 0.345  Inexact Rounded

+pwsx3216  power 0.0119  0.5 -> 0.109  Inexact Rounded

+pwsx3217  power 0.121  0.5 -> 0.348  Inexact Rounded

+pwsx3218  power 0.0121  0.5 -> 0.110  Inexact Rounded

+pwsx3219  power 0.122  0.5 -> 0.349  Inexact Rounded

+pwsx3220  power 0.0122  0.5 -> 0.110  Inexact Rounded

+pwsx3221  power 0.123  0.5 -> 0.351  Inexact Rounded

+pwsx3222  power 0.0123  0.5 -> 0.111  Inexact Rounded

+pwsx3223  power 0.124  0.5 -> 0.352  Inexact Rounded

+pwsx3224  power 0.0124  0.5 -> 0.111  Inexact Rounded

+pwsx3225  power 0.125  0.5 -> 0.354  Inexact Rounded

+pwsx3226  power 0.0125  0.5 -> 0.112  Inexact Rounded

+pwsx3227  power 0.126  0.5 -> 0.355  Inexact Rounded

+pwsx3228  power 0.0126  0.5 -> 0.112  Inexact Rounded

+pwsx3229  power 0.127  0.5 -> 0.356  Inexact Rounded

+pwsx3230  power 0.0127  0.5 -> 0.113  Inexact Rounded

+pwsx3231  power 0.128  0.5 -> 0.358  Inexact Rounded

+pwsx3232  power 0.0128  0.5 -> 0.113  Inexact Rounded

+pwsx3233  power 0.129  0.5 -> 0.359  Inexact Rounded

+pwsx3234  power 0.0129  0.5 -> 0.114  Inexact Rounded

+pwsx3235  power 0.131  0.5 -> 0.362  Inexact Rounded

+pwsx3236  power 0.0131  0.5 -> 0.114  Inexact Rounded

+pwsx3237  power 0.132  0.5 -> 0.363  Inexact Rounded

+pwsx3238  power 0.0132  0.5 -> 0.115  Inexact Rounded

+pwsx3239  power 0.133  0.5 -> 0.365  Inexact Rounded

+pwsx3240  power 0.0133  0.5 -> 0.115  Inexact Rounded

+pwsx3241  power 0.134  0.5 -> 0.366  Inexact Rounded

+pwsx3242  power 0.0134  0.5 -> 0.116  Inexact Rounded

+pwsx3243  power 0.135  0.5 -> 0.367  Inexact Rounded

+pwsx3244  power 0.0135  0.5 -> 0.116  Inexact Rounded

+pwsx3245  power 0.136  0.5 -> 0.369  Inexact Rounded

+pwsx3246  power 0.0136  0.5 -> 0.117  Inexact Rounded

+pwsx3247  power 0.137  0.5 -> 0.370  Inexact Rounded

+pwsx3248  power 0.0137  0.5 -> 0.117  Inexact Rounded

+pwsx3249  power 0.138  0.5 -> 0.371  Inexact Rounded

+pwsx3250  power 0.0138  0.5 -> 0.117  Inexact Rounded

+pwsx3251  power 0.139  0.5 -> 0.373  Inexact Rounded

+pwsx3252  power 0.0139  0.5 -> 0.118  Inexact Rounded

+pwsx3253  power 0.141  0.5 -> 0.375  Inexact Rounded

+pwsx3254  power 0.0141  0.5 -> 0.119  Inexact Rounded

+pwsx3255  power 0.142  0.5 -> 0.377  Inexact Rounded

+pwsx3256  power 0.0142  0.5 -> 0.119  Inexact Rounded

+pwsx3257  power 0.143  0.5 -> 0.378  Inexact Rounded

+pwsx3258  power 0.0143  0.5 -> 0.120  Inexact Rounded

+pwsx3259  power 0.144  0.5 -> 0.379  Inexact Rounded

+pwsx3260  power 0.0144  0.5 -> 0.120  Inexact Rounded

+pwsx3261  power 0.145  0.5 -> 0.381  Inexact Rounded

+pwsx3262  power 0.0145  0.5 -> 0.120  Inexact Rounded

+pwsx3263  power 0.146  0.5 -> 0.382  Inexact Rounded

+pwsx3264  power 0.0146  0.5 -> 0.121  Inexact Rounded

+pwsx3265  power 0.147  0.5 -> 0.383  Inexact Rounded

+pwsx3266  power 0.0147  0.5 -> 0.121  Inexact Rounded

+pwsx3267  power 0.148  0.5 -> 0.385  Inexact Rounded

+pwsx3268  power 0.0148  0.5 -> 0.122  Inexact Rounded

+pwsx3269  power 0.149  0.5 -> 0.386  Inexact Rounded

+pwsx3270  power 0.0149  0.5 -> 0.122  Inexact Rounded

+pwsx3271  power 0.151  0.5 -> 0.389  Inexact Rounded

+pwsx3272  power 0.0151  0.5 -> 0.123  Inexact Rounded

+pwsx3273  power 0.152  0.5 -> 0.390  Inexact Rounded

+pwsx3274  power 0.0152  0.5 -> 0.123  Inexact Rounded

+pwsx3275  power 0.153  0.5 -> 0.391  Inexact Rounded

+pwsx3276  power 0.0153  0.5 -> 0.124  Inexact Rounded

+pwsx3277  power 0.154  0.5 -> 0.392  Inexact Rounded

+pwsx3278  power 0.0154  0.5 -> 0.124  Inexact Rounded

+pwsx3279  power 0.155  0.5 -> 0.394  Inexact Rounded

+pwsx3280  power 0.0155  0.5 -> 0.124  Inexact Rounded

+pwsx3281  power 0.156  0.5 -> 0.395  Inexact Rounded

+pwsx3282  power 0.0156  0.5 -> 0.125  Inexact Rounded

+pwsx3283  power 0.157  0.5 -> 0.396  Inexact Rounded

+pwsx3284  power 0.0157  0.5 -> 0.125  Inexact Rounded

+pwsx3285  power 0.158  0.5 -> 0.397  Inexact Rounded

+pwsx3286  power 0.0158  0.5 -> 0.126  Inexact Rounded

+pwsx3287  power 0.159  0.5 -> 0.399  Inexact Rounded

+pwsx3288  power 0.0159  0.5 -> 0.126  Inexact Rounded

+pwsx3289  power 0.161  0.5 -> 0.401  Inexact Rounded

+pwsx3290  power 0.0161  0.5 -> 0.127  Inexact Rounded

+pwsx3291  power 0.162  0.5 -> 0.402  Inexact Rounded

+pwsx3292  power 0.0162  0.5 -> 0.127  Inexact Rounded

+pwsx3293  power 0.163  0.5 -> 0.404  Inexact Rounded

+pwsx3294  power 0.0163  0.5 -> 0.128  Inexact Rounded

+pwsx3295  power 0.164  0.5 -> 0.405  Inexact Rounded

+pwsx3296  power 0.0164  0.5 -> 0.128  Inexact Rounded

+pwsx3297  power 0.165  0.5 -> 0.406  Inexact Rounded

+pwsx3298  power 0.0165  0.5 -> 0.128  Inexact Rounded

+pwsx3299  power 0.166  0.5 -> 0.407  Inexact Rounded

+pwsx3300  power 0.0166  0.5 -> 0.129  Inexact Rounded

+pwsx3301  power 0.167  0.5 -> 0.409  Inexact Rounded

+pwsx3302  power 0.0167  0.5 -> 0.129  Inexact Rounded

+pwsx3303  power 0.168  0.5 -> 0.410  Inexact Rounded

+pwsx3304  power 0.0168  0.5 -> 0.130  Inexact Rounded

+pwsx3305  power 0.169  0.5 -> 0.411  Inexact Rounded

+pwsx3306  power 0.0169  0.5 -> 0.130  Inexact Rounded

+pwsx3307  power 0.171  0.5 -> 0.414  Inexact Rounded

+pwsx3308  power 0.0171  0.5 -> 0.131  Inexact Rounded

+pwsx3309  power 0.172  0.5 -> 0.415  Inexact Rounded

+pwsx3310  power 0.0172  0.5 -> 0.131  Inexact Rounded

+pwsx3311  power 0.173  0.5 -> 0.416  Inexact Rounded

+pwsx3312  power 0.0173  0.5 -> 0.132  Inexact Rounded

+pwsx3313  power 0.174  0.5 -> 0.417  Inexact Rounded

+pwsx3314  power 0.0174  0.5 -> 0.132  Inexact Rounded

+pwsx3315  power 0.175  0.5 -> 0.418  Inexact Rounded

+pwsx3316  power 0.0175  0.5 -> 0.132  Inexact Rounded

+pwsx3317  power 0.176  0.5 -> 0.420  Inexact Rounded

+pwsx3318  power 0.0176  0.5 -> 0.133  Inexact Rounded

+pwsx3319  power 0.177  0.5 -> 0.421  Inexact Rounded

+pwsx3320  power 0.0177  0.5 -> 0.133  Inexact Rounded

+pwsx3321  power 0.178  0.5 -> 0.422  Inexact Rounded

+pwsx3322  power 0.0178  0.5 -> 0.133  Inexact Rounded

+pwsx3323  power 0.179  0.5 -> 0.423  Inexact Rounded

+pwsx3324  power 0.0179  0.5 -> 0.134  Inexact Rounded

+pwsx3325  power 0.181  0.5 -> 0.425  Inexact Rounded

+pwsx3326  power 0.0181  0.5 -> 0.135  Inexact Rounded

+pwsx3327  power 0.182  0.5 -> 0.427  Inexact Rounded

+pwsx3328  power 0.0182  0.5 -> 0.135  Inexact Rounded

+pwsx3329  power 0.183  0.5 -> 0.428  Inexact Rounded

+pwsx3330  power 0.0183  0.5 -> 0.135  Inexact Rounded

+pwsx3331  power 0.184  0.5 -> 0.429  Inexact Rounded

+pwsx3332  power 0.0184  0.5 -> 0.136  Inexact Rounded

+pwsx3333  power 0.185  0.5 -> 0.430  Inexact Rounded

+pwsx3334  power 0.0185  0.5 -> 0.136  Inexact Rounded

+pwsx3335  power 0.186  0.5 -> 0.431  Inexact Rounded

+pwsx3336  power 0.0186  0.5 -> 0.136  Inexact Rounded

+pwsx3337  power 0.187  0.5 -> 0.432  Inexact Rounded

+pwsx3338  power 0.0187  0.5 -> 0.137  Inexact Rounded

+pwsx3339  power 0.188  0.5 -> 0.434  Inexact Rounded

+pwsx3340  power 0.0188  0.5 -> 0.137  Inexact Rounded

+pwsx3341  power 0.189  0.5 -> 0.435  Inexact Rounded

+pwsx3342  power 0.0189  0.5 -> 0.137  Inexact Rounded

+pwsx3343  power 0.191  0.5 -> 0.437  Inexact Rounded

+pwsx3344  power 0.0191  0.5 -> 0.138  Inexact Rounded

+pwsx3345  power 0.192  0.5 -> 0.438  Inexact Rounded

+pwsx3346  power 0.0192  0.5 -> 0.139  Inexact Rounded

+pwsx3347  power 0.193  0.5 -> 0.439  Inexact Rounded

+pwsx3348  power 0.0193  0.5 -> 0.139  Inexact Rounded

+pwsx3349  power 0.194  0.5 -> 0.440  Inexact Rounded

+pwsx3350  power 0.0194  0.5 -> 0.139  Inexact Rounded

+pwsx3351  power 0.195  0.5 -> 0.442  Inexact Rounded

+pwsx3352  power 0.0195  0.5 -> 0.140  Inexact Rounded

+pwsx3353  power 0.196  0.5 -> 0.443  Inexact Rounded

+pwsx3354  power 0.0196  0.5 -> 0.140  Inexact Rounded

+pwsx3355  power 0.197  0.5 -> 0.444  Inexact Rounded

+pwsx3356  power 0.0197  0.5 -> 0.140  Inexact Rounded

+pwsx3357  power 0.198  0.5 -> 0.445  Inexact Rounded

+pwsx3358  power 0.0198  0.5 -> 0.141  Inexact Rounded

+pwsx3359  power 0.199  0.5 -> 0.446  Inexact Rounded

+pwsx3360  power 0.0199  0.5 -> 0.141  Inexact Rounded

+pwsx3361  power 0.201  0.5 -> 0.448  Inexact Rounded

+pwsx3362  power 0.0201  0.5 -> 0.142  Inexact Rounded

+pwsx3363  power 0.202  0.5 -> 0.449  Inexact Rounded

+pwsx3364  power 0.0202  0.5 -> 0.142  Inexact Rounded

+pwsx3365  power 0.203  0.5 -> 0.451  Inexact Rounded

+pwsx3366  power 0.0203  0.5 -> 0.142  Inexact Rounded

+pwsx3367  power 0.204  0.5 -> 0.452  Inexact Rounded

+pwsx3368  power 0.0204  0.5 -> 0.143  Inexact Rounded

+pwsx3369  power 0.205  0.5 -> 0.453  Inexact Rounded

+pwsx3370  power 0.0205  0.5 -> 0.143  Inexact Rounded

+pwsx3371  power 0.206  0.5 -> 0.454  Inexact Rounded

+pwsx3372  power 0.0206  0.5 -> 0.144  Inexact Rounded

+pwsx3373  power 0.207  0.5 -> 0.455  Inexact Rounded

+pwsx3374  power 0.0207  0.5 -> 0.144  Inexact Rounded

+pwsx3375  power 0.208  0.5 -> 0.456  Inexact Rounded

+pwsx3376  power 0.0208  0.5 -> 0.144  Inexact Rounded

+pwsx3377  power 0.209  0.5 -> 0.457  Inexact Rounded

+pwsx3378  power 0.0209  0.5 -> 0.145  Inexact Rounded

+pwsx3379  power 0.211  0.5 -> 0.459  Inexact Rounded

+pwsx3380  power 0.0211  0.5 -> 0.145  Inexact Rounded

+pwsx3381  power 0.212  0.5 -> 0.460  Inexact Rounded

+pwsx3382  power 0.0212  0.5 -> 0.146  Inexact Rounded

+pwsx3383  power 0.213  0.5 -> 0.462  Inexact Rounded

+pwsx3384  power 0.0213  0.5 -> 0.146  Inexact Rounded

+pwsx3385  power 0.214  0.5 -> 0.463  Inexact Rounded

+pwsx3386  power 0.0214  0.5 -> 0.146  Inexact Rounded

+pwsx3387  power 0.215  0.5 -> 0.464  Inexact Rounded

+pwsx3388  power 0.0215  0.5 -> 0.147  Inexact Rounded

+pwsx3389  power 0.216  0.5 -> 0.465  Inexact Rounded

+pwsx3390  power 0.0216  0.5 -> 0.147  Inexact Rounded

+pwsx3391  power 0.217  0.5 -> 0.466  Inexact Rounded

+pwsx3392  power 0.0217  0.5 -> 0.147  Inexact Rounded

+pwsx3393  power 0.218  0.5 -> 0.467  Inexact Rounded

+pwsx3394  power 0.0218  0.5 -> 0.148  Inexact Rounded

+pwsx3395  power 0.219  0.5 -> 0.468  Inexact Rounded

+pwsx3396  power 0.0219  0.5 -> 0.148  Inexact Rounded

+pwsx3397  power 0.221  0.5 -> 0.470  Inexact Rounded

+pwsx3398  power 0.0221  0.5 -> 0.149  Inexact Rounded

+pwsx3399  power 0.222  0.5 -> 0.471  Inexact Rounded

+pwsx3400  power 0.0222  0.5 -> 0.149  Inexact Rounded

+pwsx3401  power 0.223  0.5 -> 0.472  Inexact Rounded

+pwsx3402  power 0.0223  0.5 -> 0.149  Inexact Rounded

+pwsx3403  power 0.224  0.5 -> 0.473  Inexact Rounded

+pwsx3404  power 0.0224  0.5 -> 0.150  Inexact Rounded

+pwsx3405  power 0.225  0.5 -> 0.474  Inexact Rounded

+pwsx3406  power 0.0225  0.5 -> 0.150  Inexact Rounded

+pwsx3407  power 0.226  0.5 -> 0.475  Inexact Rounded

+pwsx3408  power 0.0226  0.5 -> 0.150  Inexact Rounded

+pwsx3409  power 0.227  0.5 -> 0.476  Inexact Rounded

+pwsx3410  power 0.0227  0.5 -> 0.151  Inexact Rounded

+pwsx3411  power 0.228  0.5 -> 0.477  Inexact Rounded

+pwsx3412  power 0.0228  0.5 -> 0.151  Inexact Rounded

+pwsx3413  power 0.229  0.5 -> 0.479  Inexact Rounded

+pwsx3414  power 0.0229  0.5 -> 0.151  Inexact Rounded

+pwsx3415  power 0.231  0.5 -> 0.481  Inexact Rounded

+pwsx3416  power 0.0231  0.5 -> 0.152  Inexact Rounded

+pwsx3417  power 0.232  0.5 -> 0.482  Inexact Rounded

+pwsx3418  power 0.0232  0.5 -> 0.152  Inexact Rounded

+pwsx3419  power 0.233  0.5 -> 0.483  Inexact Rounded

+pwsx3420  power 0.0233  0.5 -> 0.153  Inexact Rounded

+pwsx3421  power 0.234  0.5 -> 0.484  Inexact Rounded

+pwsx3422  power 0.0234  0.5 -> 0.153  Inexact Rounded

+pwsx3423  power 0.235  0.5 -> 0.485  Inexact Rounded

+pwsx3424  power 0.0235  0.5 -> 0.153  Inexact Rounded

+pwsx3425  power 0.236  0.5 -> 0.486  Inexact Rounded

+pwsx3426  power 0.0236  0.5 -> 0.154  Inexact Rounded

+pwsx3427  power 0.237  0.5 -> 0.487  Inexact Rounded

+pwsx3428  power 0.0237  0.5 -> 0.154  Inexact Rounded

+pwsx3429  power 0.238  0.5 -> 0.488  Inexact Rounded

+pwsx3430  power 0.0238  0.5 -> 0.154  Inexact Rounded

+pwsx3431  power 0.239  0.5 -> 0.489  Inexact Rounded

+pwsx3432  power 0.0239  0.5 -> 0.155  Inexact Rounded

+pwsx3433  power 0.241  0.5 -> 0.491  Inexact Rounded

+pwsx3434  power 0.0241  0.5 -> 0.155  Inexact Rounded

+pwsx3435  power 0.242  0.5 -> 0.492  Inexact Rounded

+pwsx3436  power 0.0242  0.5 -> 0.156  Inexact Rounded

+pwsx3437  power 0.243  0.5 -> 0.493  Inexact Rounded

+pwsx3438  power 0.0243  0.5 -> 0.156  Inexact Rounded

+pwsx3439  power 0.244  0.5 -> 0.494  Inexact Rounded

+pwsx3440  power 0.0244  0.5 -> 0.156  Inexact Rounded

+pwsx3441  power 0.245  0.5 -> 0.495  Inexact Rounded

+pwsx3442  power 0.0245  0.5 -> 0.157  Inexact Rounded

+pwsx3443  power 0.246  0.5 -> 0.496  Inexact Rounded

+pwsx3444  power 0.0246  0.5 -> 0.157  Inexact Rounded

+pwsx3445  power 0.247  0.5 -> 0.497  Inexact Rounded

+pwsx3446  power 0.0247  0.5 -> 0.157  Inexact Rounded

+pwsx3447  power 0.248  0.5 -> 0.498  Inexact Rounded

+pwsx3448  power 0.0248  0.5 -> 0.157  Inexact Rounded

+pwsx3449  power 0.249  0.5 -> 0.499  Inexact Rounded

+pwsx3450  power 0.0249  0.5 -> 0.158  Inexact Rounded

+pwsx3451  power 0.251  0.5 -> 0.501  Inexact Rounded

+pwsx3452  power 0.0251  0.5 -> 0.158  Inexact Rounded

+pwsx3453  power 0.252  0.5 -> 0.502  Inexact Rounded

+pwsx3454  power 0.0252  0.5 -> 0.159  Inexact Rounded

+pwsx3455  power 0.253  0.5 -> 0.503  Inexact Rounded

+pwsx3456  power 0.0253  0.5 -> 0.159  Inexact Rounded

+pwsx3457  power 0.254  0.5 -> 0.504  Inexact Rounded

+pwsx3458  power 0.0254  0.5 -> 0.159  Inexact Rounded

+pwsx3459  power 0.255  0.5 -> 0.505  Inexact Rounded

+pwsx3460  power 0.0255  0.5 -> 0.160  Inexact Rounded

+pwsx3461  power 0.256  0.5 -> 0.506  Inexact Rounded

+pwsx3462  power 0.0256  0.5 -> 0.160  Inexact Rounded

+pwsx3463  power 0.257  0.5 -> 0.507  Inexact Rounded

+pwsx3464  power 0.0257  0.5 -> 0.160  Inexact Rounded

+pwsx3465  power 0.258  0.5 -> 0.508  Inexact Rounded

+pwsx3466  power 0.0258  0.5 -> 0.161  Inexact Rounded

+pwsx3467  power 0.259  0.5 -> 0.509  Inexact Rounded

+pwsx3468  power 0.0259  0.5 -> 0.161  Inexact Rounded

+pwsx3469  power 0.261  0.5 -> 0.511  Inexact Rounded

+pwsx3470  power 0.0261  0.5 -> 0.162  Inexact Rounded

+pwsx3471  power 0.262  0.5 -> 0.512  Inexact Rounded

+pwsx3472  power 0.0262  0.5 -> 0.162  Inexact Rounded

+pwsx3473  power 0.263  0.5 -> 0.513  Inexact Rounded

+pwsx3474  power 0.0263  0.5 -> 0.162  Inexact Rounded

+pwsx3475  power 0.264  0.5 -> 0.514  Inexact Rounded

+pwsx3476  power 0.0264  0.5 -> 0.162  Inexact Rounded

+pwsx3477  power 0.265  0.5 -> 0.515  Inexact Rounded

+pwsx3478  power 0.0265  0.5 -> 0.163  Inexact Rounded

+pwsx3479  power 0.266  0.5 -> 0.516  Inexact Rounded

+pwsx3480  power 0.0266  0.5 -> 0.163  Inexact Rounded

+pwsx3481  power 0.267  0.5 -> 0.517  Inexact Rounded

+pwsx3482  power 0.0267  0.5 -> 0.163  Inexact Rounded

+pwsx3483  power 0.268  0.5 -> 0.518  Inexact Rounded

+pwsx3484  power 0.0268  0.5 -> 0.164  Inexact Rounded

+pwsx3485  power 0.269  0.5 -> 0.519  Inexact Rounded

+pwsx3486  power 0.0269  0.5 -> 0.164  Inexact Rounded

+pwsx3487  power 0.271  0.5 -> 0.521  Inexact Rounded

+pwsx3488  power 0.0271  0.5 -> 0.165  Inexact Rounded

+pwsx3489  power 0.272  0.5 -> 0.522  Inexact Rounded

+pwsx3490  power 0.0272  0.5 -> 0.165  Inexact Rounded

+pwsx3491  power 0.273  0.5 -> 0.522  Inexact Rounded

+pwsx3492  power 0.0273  0.5 -> 0.165  Inexact Rounded

+pwsx3493  power 0.274  0.5 -> 0.523  Inexact Rounded

+pwsx3494  power 0.0274  0.5 -> 0.166  Inexact Rounded

+pwsx3495  power 0.275  0.5 -> 0.524  Inexact Rounded

+pwsx3496  power 0.0275  0.5 -> 0.166  Inexact Rounded

+pwsx3497  power 0.276  0.5 -> 0.525  Inexact Rounded

+pwsx3498  power 0.0276  0.5 -> 0.166  Inexact Rounded

+pwsx3499  power 0.277  0.5 -> 0.526  Inexact Rounded

+pwsx3500  power 0.0277  0.5 -> 0.166  Inexact Rounded

+pwsx3501  power 0.278  0.5 -> 0.527  Inexact Rounded

+pwsx3502  power 0.0278  0.5 -> 0.167  Inexact Rounded

+pwsx3503  power 0.279  0.5 -> 0.528  Inexact Rounded

+pwsx3504  power 0.0279  0.5 -> 0.167  Inexact Rounded

+pwsx3505  power 0.281  0.5 -> 0.530  Inexact Rounded

+pwsx3506  power 0.0281  0.5 -> 0.168  Inexact Rounded

+pwsx3507  power 0.282  0.5 -> 0.531  Inexact Rounded

+pwsx3508  power 0.0282  0.5 -> 0.168  Inexact Rounded

+pwsx3509  power 0.283  0.5 -> 0.532  Inexact Rounded

+pwsx3510  power 0.0283  0.5 -> 0.168  Inexact Rounded

+pwsx3511  power 0.284  0.5 -> 0.533  Inexact Rounded

+pwsx3512  power 0.0284  0.5 -> 0.169  Inexact Rounded

+pwsx3513  power 0.285  0.5 -> 0.534  Inexact Rounded

+pwsx3514  power 0.0285  0.5 -> 0.169  Inexact Rounded

+pwsx3515  power 0.286  0.5 -> 0.535  Inexact Rounded

+pwsx3516  power 0.0286  0.5 -> 0.169  Inexact Rounded

+pwsx3517  power 0.287  0.5 -> 0.536  Inexact Rounded

+pwsx3518  power 0.0287  0.5 -> 0.169  Inexact Rounded

+pwsx3519  power 0.288  0.5 -> 0.537  Inexact Rounded

+pwsx3520  power 0.0288  0.5 -> 0.170  Inexact Rounded

+pwsx3521  power 0.289  0.5 -> 0.538  Inexact Rounded

+pwsx3522  power 0.0289  0.5 -> 0.170  Inexact Rounded

+pwsx3523  power 0.291  0.5 -> 0.539  Inexact Rounded

+pwsx3524  power 0.0291  0.5 -> 0.171  Inexact Rounded

+pwsx3525  power 0.292  0.5 -> 0.540  Inexact Rounded

+pwsx3526  power 0.0292  0.5 -> 0.171  Inexact Rounded

+pwsx3527  power 0.293  0.5 -> 0.541  Inexact Rounded

+pwsx3528  power 0.0293  0.5 -> 0.171  Inexact Rounded

+pwsx3529  power 0.294  0.5 -> 0.542  Inexact Rounded

+pwsx3530  power 0.0294  0.5 -> 0.171  Inexact Rounded

+pwsx3531  power 0.295  0.5 -> 0.543  Inexact Rounded

+pwsx3532  power 0.0295  0.5 -> 0.172  Inexact Rounded

+pwsx3533  power 0.296  0.5 -> 0.544  Inexact Rounded

+pwsx3534  power 0.0296  0.5 -> 0.172  Inexact Rounded

+pwsx3535  power 0.297  0.5 -> 0.545  Inexact Rounded

+pwsx3536  power 0.0297  0.5 -> 0.172  Inexact Rounded

+pwsx3537  power 0.298  0.5 -> 0.546  Inexact Rounded

+pwsx3538  power 0.0298  0.5 -> 0.173  Inexact Rounded

+pwsx3539  power 0.299  0.5 -> 0.547  Inexact Rounded

+pwsx3540  power 0.0299  0.5 -> 0.173  Inexact Rounded

+pwsx3541  power 0.301  0.5 -> 0.549  Inexact Rounded

+pwsx3542  power 0.0301  0.5 -> 0.173  Inexact Rounded

+pwsx3543  power 0.302  0.5 -> 0.550  Inexact Rounded

+pwsx3544  power 0.0302  0.5 -> 0.174  Inexact Rounded

+pwsx3545  power 0.303  0.5 -> 0.550  Inexact Rounded

+pwsx3546  power 0.0303  0.5 -> 0.174  Inexact Rounded

+pwsx3547  power 0.304  0.5 -> 0.551  Inexact Rounded

+pwsx3548  power 0.0304  0.5 -> 0.174  Inexact Rounded

+pwsx3549  power 0.305  0.5 -> 0.552  Inexact Rounded

+pwsx3550  power 0.0305  0.5 -> 0.175  Inexact Rounded

+pwsx3551  power 0.306  0.5 -> 0.553  Inexact Rounded

+pwsx3552  power 0.0306  0.5 -> 0.175  Inexact Rounded

+pwsx3553  power 0.307  0.5 -> 0.554  Inexact Rounded

+pwsx3554  power 0.0307  0.5 -> 0.175  Inexact Rounded

+pwsx3555  power 0.308  0.5 -> 0.555  Inexact Rounded

+pwsx3556  power 0.0308  0.5 -> 0.175  Inexact Rounded

+pwsx3557  power 0.309  0.5 -> 0.556  Inexact Rounded

+pwsx3558  power 0.0309  0.5 -> 0.176  Inexact Rounded

+pwsx3559  power 0.311  0.5 -> 0.558  Inexact Rounded

+pwsx3560  power 0.0311  0.5 -> 0.176  Inexact Rounded

+pwsx3561  power 0.312  0.5 -> 0.559  Inexact Rounded

+pwsx3562  power 0.0312  0.5 -> 0.177  Inexact Rounded

+pwsx3563  power 0.313  0.5 -> 0.559  Inexact Rounded

+pwsx3564  power 0.0313  0.5 -> 0.177  Inexact Rounded

+pwsx3565  power 0.314  0.5 -> 0.560  Inexact Rounded

+pwsx3566  power 0.0314  0.5 -> 0.177  Inexact Rounded

+pwsx3567  power 0.315  0.5 -> 0.561  Inexact Rounded

+pwsx3568  power 0.0315  0.5 -> 0.177  Inexact Rounded

+pwsx3569  power 0.316  0.5 -> 0.562  Inexact Rounded

+pwsx3570  power 0.0316  0.5 -> 0.178  Inexact Rounded

+pwsx3571  power 0.317  0.5 -> 0.563  Inexact Rounded

+pwsx3572  power 0.0317  0.5 -> 0.178  Inexact Rounded

+pwsx3573  power 0.318  0.5 -> 0.564  Inexact Rounded

+pwsx3574  power 0.0318  0.5 -> 0.178  Inexact Rounded

+pwsx3575  power 0.319  0.5 -> 0.565  Inexact Rounded

+pwsx3576  power 0.0319  0.5 -> 0.179  Inexact Rounded

+pwsx3577  power 0.321  0.5 -> 0.567  Inexact Rounded

+pwsx3578  power 0.0321  0.5 -> 0.179  Inexact Rounded

+pwsx3579  power 0.322  0.5 -> 0.567  Inexact Rounded

+pwsx3580  power 0.0322  0.5 -> 0.179  Inexact Rounded

+pwsx3581  power 0.323  0.5 -> 0.568  Inexact Rounded

+pwsx3582  power 0.0323  0.5 -> 0.180  Inexact Rounded

+pwsx3583  power 0.324  0.5 -> 0.569  Inexact Rounded

+pwsx3584  power 0.0324  0.5 -> 0.180  Inexact Rounded

+pwsx3585  power 0.325  0.5 -> 0.570  Inexact Rounded

+pwsx3586  power 0.0325  0.5 -> 0.180  Inexact Rounded

+pwsx3587  power 0.326  0.5 -> 0.571  Inexact Rounded

+pwsx3588  power 0.0326  0.5 -> 0.181  Inexact Rounded

+pwsx3589  power 0.327  0.5 -> 0.572  Inexact Rounded

+pwsx3590  power 0.0327  0.5 -> 0.181  Inexact Rounded

+pwsx3591  power 0.328  0.5 -> 0.573  Inexact Rounded

+pwsx3592  power 0.0328  0.5 -> 0.181  Inexact Rounded

+pwsx3593  power 0.329  0.5 -> 0.574  Inexact Rounded

+pwsx3594  power 0.0329  0.5 -> 0.181  Inexact Rounded

+pwsx3595  power 0.331  0.5 -> 0.575  Inexact Rounded

+pwsx3596  power 0.0331  0.5 -> 0.182  Inexact Rounded

+pwsx3597  power 0.332  0.5 -> 0.576  Inexact Rounded

+pwsx3598  power 0.0332  0.5 -> 0.182  Inexact Rounded

+pwsx3599  power 0.333  0.5 -> 0.577  Inexact Rounded

+pwsx3600  power 0.0333  0.5 -> 0.182  Inexact Rounded

+pwsx3601  power 0.334  0.5 -> 0.578  Inexact Rounded

+pwsx3602  power 0.0334  0.5 -> 0.183  Inexact Rounded

+pwsx3603  power 0.335  0.5 -> 0.579  Inexact Rounded

+pwsx3604  power 0.0335  0.5 -> 0.183  Inexact Rounded

+pwsx3605  power 0.336  0.5 -> 0.580  Inexact Rounded

+pwsx3606  power 0.0336  0.5 -> 0.183  Inexact Rounded

+pwsx3607  power 0.337  0.5 -> 0.581  Inexact Rounded

+pwsx3608  power 0.0337  0.5 -> 0.184  Inexact Rounded

+pwsx3609  power 0.338  0.5 -> 0.581  Inexact Rounded

+pwsx3610  power 0.0338  0.5 -> 0.184  Inexact Rounded

+pwsx3611  power 0.339  0.5 -> 0.582  Inexact Rounded

+pwsx3612  power 0.0339  0.5 -> 0.184  Inexact Rounded

+pwsx3613  power 0.341  0.5 -> 0.584  Inexact Rounded

+pwsx3614  power 0.0341  0.5 -> 0.185  Inexact Rounded

+pwsx3615  power 0.342  0.5 -> 0.585  Inexact Rounded

+pwsx3616  power 0.0342  0.5 -> 0.185  Inexact Rounded

+pwsx3617  power 0.343  0.5 -> 0.586  Inexact Rounded

+pwsx3618  power 0.0343  0.5 -> 0.185  Inexact Rounded

+pwsx3619  power 0.344  0.5 -> 0.587  Inexact Rounded

+pwsx3620  power 0.0344  0.5 -> 0.185  Inexact Rounded

+pwsx3621  power 0.345  0.5 -> 0.587  Inexact Rounded

+pwsx3622  power 0.0345  0.5 -> 0.186  Inexact Rounded

+pwsx3623  power 0.346  0.5 -> 0.588  Inexact Rounded

+pwsx3624  power 0.0346  0.5 -> 0.186  Inexact Rounded

+pwsx3625  power 0.347  0.5 -> 0.589  Inexact Rounded

+pwsx3626  power 0.0347  0.5 -> 0.186  Inexact Rounded

+pwsx3627  power 0.348  0.5 -> 0.590  Inexact Rounded

+pwsx3628  power 0.0348  0.5 -> 0.187  Inexact Rounded

+pwsx3629  power 0.349  0.5 -> 0.591  Inexact Rounded

+pwsx3630  power 0.0349  0.5 -> 0.187  Inexact Rounded

+pwsx3631  power 0.351  0.5 -> 0.592  Inexact Rounded

+pwsx3632  power 0.0351  0.5 -> 0.187  Inexact Rounded

+pwsx3633  power 0.352  0.5 -> 0.593  Inexact Rounded

+pwsx3634  power 0.0352  0.5 -> 0.188  Inexact Rounded

+pwsx3635  power 0.353  0.5 -> 0.594  Inexact Rounded

+pwsx3636  power 0.0353  0.5 -> 0.188  Inexact Rounded

+pwsx3637  power 0.354  0.5 -> 0.595  Inexact Rounded

+pwsx3638  power 0.0354  0.5 -> 0.188  Inexact Rounded

+pwsx3639  power 0.355  0.5 -> 0.596  Inexact Rounded

+pwsx3640  power 0.0355  0.5 -> 0.188  Inexact Rounded

+pwsx3641  power 0.356  0.5 -> 0.597  Inexact Rounded

+pwsx3642  power 0.0356  0.5 -> 0.189  Inexact Rounded

+pwsx3643  power 0.357  0.5 -> 0.597  Inexact Rounded

+pwsx3644  power 0.0357  0.5 -> 0.189  Inexact Rounded

+pwsx3645  power 0.358  0.5 -> 0.598  Inexact Rounded

+pwsx3646  power 0.0358  0.5 -> 0.189  Inexact Rounded

+pwsx3647  power 0.359  0.5 -> 0.599  Inexact Rounded

+pwsx3648  power 0.0359  0.5 -> 0.189  Inexact Rounded

+pwsx3649  power 0.361  0.5 -> 0.601  Inexact Rounded

+pwsx3650  power 0.0361  0.5 -> 0.190  Inexact Rounded

+pwsx3651  power 0.362  0.5 -> 0.602  Inexact Rounded

+pwsx3652  power 0.0362  0.5 -> 0.190  Inexact Rounded

+pwsx3653  power 0.363  0.5 -> 0.602  Inexact Rounded

+pwsx3654  power 0.0363  0.5 -> 0.191  Inexact Rounded

+pwsx3655  power 0.364  0.5 -> 0.603  Inexact Rounded

+pwsx3656  power 0.0364  0.5 -> 0.191  Inexact Rounded

+pwsx3657  power 0.365  0.5 -> 0.604  Inexact Rounded

+pwsx3658  power 0.0365  0.5 -> 0.191  Inexact Rounded

+pwsx3659  power 0.366  0.5 -> 0.605  Inexact Rounded

+pwsx3660  power 0.0366  0.5 -> 0.191  Inexact Rounded

+pwsx3661  power 0.367  0.5 -> 0.606  Inexact Rounded

+pwsx3662  power 0.0367  0.5 -> 0.192  Inexact Rounded

+pwsx3663  power 0.368  0.5 -> 0.607  Inexact Rounded

+pwsx3664  power 0.0368  0.5 -> 0.192  Inexact Rounded

+pwsx3665  power 0.369  0.5 -> 0.607  Inexact Rounded

+pwsx3666  power 0.0369  0.5 -> 0.192  Inexact Rounded

+pwsx3667  power 0.371  0.5 -> 0.609  Inexact Rounded

+pwsx3668  power 0.0371  0.5 -> 0.193  Inexact Rounded

+pwsx3669  power 0.372  0.5 -> 0.610  Inexact Rounded

+pwsx3670  power 0.0372  0.5 -> 0.193  Inexact Rounded

+pwsx3671  power 0.373  0.5 -> 0.611  Inexact Rounded

+pwsx3672  power 0.0373  0.5 -> 0.193  Inexact Rounded

+pwsx3673  power 0.374  0.5 -> 0.612  Inexact Rounded

+pwsx3674  power 0.0374  0.5 -> 0.193  Inexact Rounded

+pwsx3675  power 0.375  0.5 -> 0.612  Inexact Rounded

+pwsx3676  power 0.0375  0.5 -> 0.194  Inexact Rounded

+pwsx3677  power 0.376  0.5 -> 0.613  Inexact Rounded

+pwsx3678  power 0.0376  0.5 -> 0.194  Inexact Rounded

+pwsx3679  power 0.377  0.5 -> 0.614  Inexact Rounded

+pwsx3680  power 0.0377  0.5 -> 0.194  Inexact Rounded

+pwsx3681  power 0.378  0.5 -> 0.615  Inexact Rounded

+pwsx3682  power 0.0378  0.5 -> 0.194  Inexact Rounded

+pwsx3683  power 0.379  0.5 -> 0.616  Inexact Rounded

+pwsx3684  power 0.0379  0.5 -> 0.195  Inexact Rounded

+pwsx3685  power 0.381  0.5 -> 0.617  Inexact Rounded

+pwsx3686  power 0.0381  0.5 -> 0.195  Inexact Rounded

+pwsx3687  power 0.382  0.5 -> 0.618  Inexact Rounded

+pwsx3688  power 0.0382  0.5 -> 0.195  Inexact Rounded

+pwsx3689  power 0.383  0.5 -> 0.619  Inexact Rounded

+pwsx3690  power 0.0383  0.5 -> 0.196  Inexact Rounded

+pwsx3691  power 0.384  0.5 -> 0.620  Inexact Rounded

+pwsx3692  power 0.0384  0.5 -> 0.196  Inexact Rounded

+pwsx3693  power 0.385  0.5 -> 0.620  Inexact Rounded

+pwsx3694  power 0.0385  0.5 -> 0.196  Inexact Rounded

+pwsx3695  power 0.386  0.5 -> 0.621  Inexact Rounded

+pwsx3696  power 0.0386  0.5 -> 0.196  Inexact Rounded

+pwsx3697  power 0.387  0.5 -> 0.622  Inexact Rounded

+pwsx3698  power 0.0387  0.5 -> 0.197  Inexact Rounded

+pwsx3699  power 0.388  0.5 -> 0.623  Inexact Rounded

+pwsx3700  power 0.0388  0.5 -> 0.197  Inexact Rounded

+pwsx3701  power 0.389  0.5 -> 0.624  Inexact Rounded

+pwsx3702  power 0.0389  0.5 -> 0.197  Inexact Rounded

+pwsx3703  power 0.391  0.5 -> 0.625  Inexact Rounded

+pwsx3704  power 0.0391  0.5 -> 0.198  Inexact Rounded

+pwsx3705  power 0.392  0.5 -> 0.626  Inexact Rounded

+pwsx3706  power 0.0392  0.5 -> 0.198  Inexact Rounded

+pwsx3707  power 0.393  0.5 -> 0.627  Inexact Rounded

+pwsx3708  power 0.0393  0.5 -> 0.198  Inexact Rounded

+pwsx3709  power 0.394  0.5 -> 0.628  Inexact Rounded

+pwsx3710  power 0.0394  0.5 -> 0.198  Inexact Rounded

+pwsx3711  power 0.395  0.5 -> 0.628  Inexact Rounded

+pwsx3712  power 0.0395  0.5 -> 0.199  Inexact Rounded

+pwsx3713  power 0.396  0.5 -> 0.629  Inexact Rounded

+pwsx3714  power 0.0396  0.5 -> 0.199  Inexact Rounded

+pwsx3715  power 0.397  0.5 -> 0.630  Inexact Rounded

+pwsx3716  power 0.0397  0.5 -> 0.199  Inexact Rounded

+pwsx3717  power 0.398  0.5 -> 0.631  Inexact Rounded

+pwsx3718  power 0.0398  0.5 -> 0.199  Inexact Rounded

+pwsx3719  power 0.399  0.5 -> 0.632  Inexact Rounded

+pwsx3720  power 0.0399  0.5 -> 0.200  Inexact Rounded

+pwsx3721  power 0.401  0.5 -> 0.633  Inexact Rounded

+pwsx3722  power 0.0401  0.5 -> 0.200  Inexact Rounded

+pwsx3723  power 0.402  0.5 -> 0.634  Inexact Rounded

+pwsx3724  power 0.0402  0.5 -> 0.200  Inexact Rounded

+pwsx3725  power 0.403  0.5 -> 0.635  Inexact Rounded

+pwsx3726  power 0.0403  0.5 -> 0.201  Inexact Rounded

+pwsx3727  power 0.404  0.5 -> 0.636  Inexact Rounded

+pwsx3728  power 0.0404  0.5 -> 0.201  Inexact Rounded

+pwsx3729  power 0.405  0.5 -> 0.636  Inexact Rounded

+pwsx3730  power 0.0405  0.5 -> 0.201  Inexact Rounded

+pwsx3731  power 0.406  0.5 -> 0.637  Inexact Rounded

+pwsx3732  power 0.0406  0.5 -> 0.201  Inexact Rounded

+pwsx3733  power 0.407  0.5 -> 0.638  Inexact Rounded

+pwsx3734  power 0.0407  0.5 -> 0.202  Inexact Rounded

+pwsx3735  power 0.408  0.5 -> 0.639  Inexact Rounded

+pwsx3736  power 0.0408  0.5 -> 0.202  Inexact Rounded

+pwsx3737  power 0.409  0.5 -> 0.640  Inexact Rounded

+pwsx3738  power 0.0409  0.5 -> 0.202  Inexact Rounded

+pwsx3739  power 0.411  0.5 -> 0.641  Inexact Rounded

+pwsx3740  power 0.0411  0.5 -> 0.203  Inexact Rounded

+pwsx3741  power 0.412  0.5 -> 0.642  Inexact Rounded

+pwsx3742  power 0.0412  0.5 -> 0.203  Inexact Rounded

+pwsx3743  power 0.413  0.5 -> 0.643  Inexact Rounded

+pwsx3744  power 0.0413  0.5 -> 0.203  Inexact Rounded

+pwsx3745  power 0.414  0.5 -> 0.643  Inexact Rounded

+pwsx3746  power 0.0414  0.5 -> 0.203  Inexact Rounded

+pwsx3747  power 0.415  0.5 -> 0.644  Inexact Rounded

+pwsx3748  power 0.0415  0.5 -> 0.204  Inexact Rounded

+pwsx3749  power 0.416  0.5 -> 0.645  Inexact Rounded

+pwsx3750  power 0.0416  0.5 -> 0.204  Inexact Rounded

+pwsx3751  power 0.417  0.5 -> 0.646  Inexact Rounded

+pwsx3752  power 0.0417  0.5 -> 0.204  Inexact Rounded

+pwsx3753  power 0.418  0.5 -> 0.647  Inexact Rounded

+pwsx3754  power 0.0418  0.5 -> 0.204  Inexact Rounded

+pwsx3755  power 0.419  0.5 -> 0.647  Inexact Rounded

+pwsx3756  power 0.0419  0.5 -> 0.205  Inexact Rounded

+pwsx3757  power 0.421  0.5 -> 0.649  Inexact Rounded

+pwsx3758  power 0.0421  0.5 -> 0.205  Inexact Rounded

+pwsx3759  power 0.422  0.5 -> 0.650  Inexact Rounded

+pwsx3760  power 0.0422  0.5 -> 0.205  Inexact Rounded

+pwsx3761  power 0.423  0.5 -> 0.650  Inexact Rounded

+pwsx3762  power 0.0423  0.5 -> 0.206  Inexact Rounded

+pwsx3763  power 0.424  0.5 -> 0.651  Inexact Rounded

+pwsx3764  power 0.0424  0.5 -> 0.206  Inexact Rounded

+pwsx3765  power 0.425  0.5 -> 0.652  Inexact Rounded

+pwsx3766  power 0.0425  0.5 -> 0.206  Inexact Rounded

+pwsx3767  power 0.426  0.5 -> 0.653  Inexact Rounded

+pwsx3768  power 0.0426  0.5 -> 0.206  Inexact Rounded

+pwsx3769  power 0.427  0.5 -> 0.653  Inexact Rounded

+pwsx3770  power 0.0427  0.5 -> 0.207  Inexact Rounded

+pwsx3771  power 0.428  0.5 -> 0.654  Inexact Rounded

+pwsx3772  power 0.0428  0.5 -> 0.207  Inexact Rounded

+pwsx3773  power 0.429  0.5 -> 0.655  Inexact Rounded

+pwsx3774  power 0.0429  0.5 -> 0.207  Inexact Rounded

+pwsx3775  power 0.431  0.5 -> 0.657  Inexact Rounded

+pwsx3776  power 0.0431  0.5 -> 0.208  Inexact Rounded

+pwsx3777  power 0.432  0.5 -> 0.657  Inexact Rounded

+pwsx3778  power 0.0432  0.5 -> 0.208  Inexact Rounded

+pwsx3779  power 0.433  0.5 -> 0.658  Inexact Rounded

+pwsx3780  power 0.0433  0.5 -> 0.208  Inexact Rounded

+pwsx3781  power 0.434  0.5 -> 0.659  Inexact Rounded

+pwsx3782  power 0.0434  0.5 -> 0.208  Inexact Rounded

+pwsx3783  power 0.435  0.5 -> 0.660  Inexact Rounded

+pwsx3784  power 0.0435  0.5 -> 0.209  Inexact Rounded

+pwsx3785  power 0.436  0.5 -> 0.660  Inexact Rounded

+pwsx3786  power 0.0436  0.5 -> 0.209  Inexact Rounded

+pwsx3787  power 0.437  0.5 -> 0.661  Inexact Rounded

+pwsx3788  power 0.0437  0.5 -> 0.209  Inexact Rounded

+pwsx3789  power 0.438  0.5 -> 0.662  Inexact Rounded

+pwsx3790  power 0.0438  0.5 -> 0.209  Inexact Rounded

+pwsx3791  power 0.439  0.5 -> 0.663  Inexact Rounded

+pwsx3792  power 0.0439  0.5 -> 0.210  Inexact Rounded

+pwsx3793  power 0.441  0.5 -> 0.664  Inexact Rounded

+pwsx3794  power 0.0441  0.5 -> 0.210  Inexact Rounded

+pwsx3795  power 0.442  0.5 -> 0.665  Inexact Rounded

+pwsx3796  power 0.0442  0.5 -> 0.210  Inexact Rounded

+pwsx3797  power 0.443  0.5 -> 0.666  Inexact Rounded

+pwsx3798  power 0.0443  0.5 -> 0.210  Inexact Rounded

+pwsx3799  power 0.444  0.5 -> 0.666  Inexact Rounded

+pwsx3800  power 0.0444  0.5 -> 0.211  Inexact Rounded

+pwsx3801  power 0.445  0.5 -> 0.667  Inexact Rounded

+pwsx3802  power 0.0445  0.5 -> 0.211  Inexact Rounded

+pwsx3803  power 0.446  0.5 -> 0.668  Inexact Rounded

+pwsx3804  power 0.0446  0.5 -> 0.211  Inexact Rounded

+pwsx3805  power 0.447  0.5 -> 0.669  Inexact Rounded

+pwsx3806  power 0.0447  0.5 -> 0.211  Inexact Rounded

+pwsx3807  power 0.448  0.5 -> 0.669  Inexact Rounded

+pwsx3808  power 0.0448  0.5 -> 0.212  Inexact Rounded

+pwsx3809  power 0.449  0.5 -> 0.670  Inexact Rounded

+pwsx3810  power 0.0449  0.5 -> 0.212  Inexact Rounded

+pwsx3811  power 0.451  0.5 -> 0.672  Inexact Rounded

+pwsx3812  power 0.0451  0.5 -> 0.212  Inexact Rounded

+pwsx3813  power 0.452  0.5 -> 0.672  Inexact Rounded

+pwsx3814  power 0.0452  0.5 -> 0.213  Inexact Rounded

+pwsx3815  power 0.453  0.5 -> 0.673  Inexact Rounded

+pwsx3816  power 0.0453  0.5 -> 0.213  Inexact Rounded

+pwsx3817  power 0.454  0.5 -> 0.674  Inexact Rounded

+pwsx3818  power 0.0454  0.5 -> 0.213  Inexact Rounded

+pwsx3819  power 0.455  0.5 -> 0.675  Inexact Rounded

+pwsx3820  power 0.0455  0.5 -> 0.213  Inexact Rounded

+pwsx3821  power 0.456  0.5 -> 0.675  Inexact Rounded

+pwsx3822  power 0.0456  0.5 -> 0.214  Inexact Rounded

+pwsx3823  power 0.457  0.5 -> 0.676  Inexact Rounded

+pwsx3824  power 0.0457  0.5 -> 0.214  Inexact Rounded

+pwsx3825  power 0.458  0.5 -> 0.677  Inexact Rounded

+pwsx3826  power 0.0458  0.5 -> 0.214  Inexact Rounded

+pwsx3827  power 0.459  0.5 -> 0.677  Inexact Rounded

+pwsx3828  power 0.0459  0.5 -> 0.214  Inexact Rounded

+pwsx3829  power 0.461  0.5 -> 0.679  Inexact Rounded

+pwsx3830  power 0.0461  0.5 -> 0.215  Inexact Rounded

+pwsx3831  power 0.462  0.5 -> 0.680  Inexact Rounded

+pwsx3832  power 0.0462  0.5 -> 0.215  Inexact Rounded

+pwsx3833  power 0.463  0.5 -> 0.680  Inexact Rounded

+pwsx3834  power 0.0463  0.5 -> 0.215  Inexact Rounded

+pwsx3835  power 0.464  0.5 -> 0.681  Inexact Rounded

+pwsx3836  power 0.0464  0.5 -> 0.215  Inexact Rounded

+pwsx3837  power 0.465  0.5 -> 0.682  Inexact Rounded

+pwsx3838  power 0.0465  0.5 -> 0.216  Inexact Rounded

+pwsx3839  power 0.466  0.5 -> 0.683  Inexact Rounded

+pwsx3840  power 0.0466  0.5 -> 0.216  Inexact Rounded

+pwsx3841  power 0.467  0.5 -> 0.683  Inexact Rounded

+pwsx3842  power 0.0467  0.5 -> 0.216  Inexact Rounded

+pwsx3843  power 0.468  0.5 -> 0.684  Inexact Rounded

+pwsx3844  power 0.0468  0.5 -> 0.216  Inexact Rounded

+pwsx3845  power 0.469  0.5 -> 0.685  Inexact Rounded

+pwsx3846  power 0.0469  0.5 -> 0.217  Inexact Rounded

+pwsx3847  power 0.471  0.5 -> 0.686  Inexact Rounded

+pwsx3848  power 0.0471  0.5 -> 0.217  Inexact Rounded

+pwsx3849  power 0.472  0.5 -> 0.687  Inexact Rounded

+pwsx3850  power 0.0472  0.5 -> 0.217  Inexact Rounded

+pwsx3851  power 0.473  0.5 -> 0.688  Inexact Rounded

+pwsx3852  power 0.0473  0.5 -> 0.217  Inexact Rounded

+pwsx3853  power 0.474  0.5 -> 0.688  Inexact Rounded

+pwsx3854  power 0.0474  0.5 -> 0.218  Inexact Rounded

+pwsx3855  power 0.475  0.5 -> 0.689  Inexact Rounded

+pwsx3856  power 0.0475  0.5 -> 0.218  Inexact Rounded

+pwsx3857  power 0.476  0.5 -> 0.690  Inexact Rounded

+pwsx3858  power 0.0476  0.5 -> 0.218  Inexact Rounded

+pwsx3859  power 0.477  0.5 -> 0.691  Inexact Rounded

+pwsx3860  power 0.0477  0.5 -> 0.218  Inexact Rounded

+pwsx3861  power 0.478  0.5 -> 0.691  Inexact Rounded

+pwsx3862  power 0.0478  0.5 -> 0.219  Inexact Rounded

+pwsx3863  power 0.479  0.5 -> 0.692  Inexact Rounded

+pwsx3864  power 0.0479  0.5 -> 0.219  Inexact Rounded

+pwsx3865  power 0.481  0.5 -> 0.694  Inexact Rounded

+pwsx3866  power 0.0481  0.5 -> 0.219  Inexact Rounded

+pwsx3867  power 0.482  0.5 -> 0.694  Inexact Rounded

+pwsx3868  power 0.0482  0.5 -> 0.220  Inexact Rounded

+pwsx3869  power 0.483  0.5 -> 0.695  Inexact Rounded

+pwsx3870  power 0.0483  0.5 -> 0.220  Inexact Rounded

+pwsx3871  power 0.484  0.5 -> 0.696  Inexact Rounded

+pwsx3872  power 0.0484  0.5 -> 0.220  Inexact Rounded

+pwsx3873  power 0.485  0.5 -> 0.696  Inexact Rounded

+pwsx3874  power 0.0485  0.5 -> 0.220  Inexact Rounded

+pwsx3875  power 0.486  0.5 -> 0.697  Inexact Rounded

+pwsx3876  power 0.0486  0.5 -> 0.220  Inexact Rounded

+pwsx3877  power 0.487  0.5 -> 0.698  Inexact Rounded

+pwsx3878  power 0.0487  0.5 -> 0.221  Inexact Rounded

+pwsx3879  power 0.488  0.5 -> 0.699  Inexact Rounded

+pwsx3880  power 0.0488  0.5 -> 0.221  Inexact Rounded

+pwsx3881  power 0.489  0.5 -> 0.699  Inexact Rounded

+pwsx3882  power 0.0489  0.5 -> 0.221  Inexact Rounded

+pwsx3883  power 0.491  0.5 -> 0.701  Inexact Rounded

+pwsx3884  power 0.0491  0.5 -> 0.222  Inexact Rounded

+pwsx3885  power 0.492  0.5 -> 0.701  Inexact Rounded

+pwsx3886  power 0.0492  0.5 -> 0.222  Inexact Rounded

+pwsx3887  power 0.493  0.5 -> 0.702  Inexact Rounded

+pwsx3888  power 0.0493  0.5 -> 0.222  Inexact Rounded

+pwsx3889  power 0.494  0.5 -> 0.703  Inexact Rounded

+pwsx3890  power 0.0494  0.5 -> 0.222  Inexact Rounded

+pwsx3891  power 0.495  0.5 -> 0.704  Inexact Rounded

+pwsx3892  power 0.0495  0.5 -> 0.222  Inexact Rounded

+pwsx3893  power 0.496  0.5 -> 0.704  Inexact Rounded

+pwsx3894  power 0.0496  0.5 -> 0.223  Inexact Rounded

+pwsx3895  power 0.497  0.5 -> 0.705  Inexact Rounded

+pwsx3896  power 0.0497  0.5 -> 0.223  Inexact Rounded

+pwsx3897  power 0.498  0.5 -> 0.706  Inexact Rounded

+pwsx3898  power 0.0498  0.5 -> 0.223  Inexact Rounded

+pwsx3899  power 0.499  0.5 -> 0.706  Inexact Rounded

+pwsx3900  power 0.0499  0.5 -> 0.223  Inexact Rounded

+pwsx3901  power 0.501  0.5 -> 0.708  Inexact Rounded

+pwsx3902  power 0.0501  0.5 -> 0.224  Inexact Rounded

+pwsx3903  power 0.502  0.5 -> 0.709  Inexact Rounded

+pwsx3904  power 0.0502  0.5 -> 0.224  Inexact Rounded

+pwsx3905  power 0.503  0.5 -> 0.709  Inexact Rounded

+pwsx3906  power 0.0503  0.5 -> 0.224  Inexact Rounded

+pwsx3907  power 0.504  0.5 -> 0.710  Inexact Rounded

+pwsx3908  power 0.0504  0.5 -> 0.224  Inexact Rounded

+pwsx3909  power 0.505  0.5 -> 0.711  Inexact Rounded

+pwsx3910  power 0.0505  0.5 -> 0.225  Inexact Rounded

+pwsx3911  power 0.506  0.5 -> 0.711  Inexact Rounded

+pwsx3912  power 0.0506  0.5 -> 0.225  Inexact Rounded

+pwsx3913  power 0.507  0.5 -> 0.712  Inexact Rounded

+pwsx3914  power 0.0507  0.5 -> 0.225  Inexact Rounded

+pwsx3915  power 0.508  0.5 -> 0.713  Inexact Rounded

+pwsx3916  power 0.0508  0.5 -> 0.225  Inexact Rounded

+pwsx3917  power 0.509  0.5 -> 0.713  Inexact Rounded

+pwsx3918  power 0.0509  0.5 -> 0.226  Inexact Rounded

+pwsx3919  power 0.511  0.5 -> 0.715  Inexact Rounded

+pwsx3920  power 0.0511  0.5 -> 0.226  Inexact Rounded

+pwsx3921  power 0.512  0.5 -> 0.716  Inexact Rounded

+pwsx3922  power 0.0512  0.5 -> 0.226  Inexact Rounded

+pwsx3923  power 0.513  0.5 -> 0.716  Inexact Rounded

+pwsx3924  power 0.0513  0.5 -> 0.226  Inexact Rounded

+pwsx3925  power 0.514  0.5 -> 0.717  Inexact Rounded

+pwsx3926  power 0.0514  0.5 -> 0.227  Inexact Rounded

+pwsx3927  power 0.515  0.5 -> 0.718  Inexact Rounded

+pwsx3928  power 0.0515  0.5 -> 0.227  Inexact Rounded

+pwsx3929  power 0.516  0.5 -> 0.718  Inexact Rounded

+pwsx3930  power 0.0516  0.5 -> 0.227  Inexact Rounded

+pwsx3931  power 0.517  0.5 -> 0.719  Inexact Rounded

+pwsx3932  power 0.0517  0.5 -> 0.227  Inexact Rounded

+pwsx3933  power 0.518  0.5 -> 0.720  Inexact Rounded

+pwsx3934  power 0.0518  0.5 -> 0.228  Inexact Rounded

+pwsx3935  power 0.519  0.5 -> 0.720  Inexact Rounded

+pwsx3936  power 0.0519  0.5 -> 0.228  Inexact Rounded

+pwsx3937  power 0.521  0.5 -> 0.722  Inexact Rounded

+pwsx3938  power 0.0521  0.5 -> 0.228  Inexact Rounded

+pwsx3939  power 0.522  0.5 -> 0.722  Inexact Rounded

+pwsx3940  power 0.0522  0.5 -> 0.228  Inexact Rounded

+pwsx3941  power 0.523  0.5 -> 0.723  Inexact Rounded

+pwsx3942  power 0.0523  0.5 -> 0.229  Inexact Rounded

+pwsx3943  power 0.524  0.5 -> 0.724  Inexact Rounded

+pwsx3944  power 0.0524  0.5 -> 0.229  Inexact Rounded

+pwsx3945  power 0.525  0.5 -> 0.725  Inexact Rounded

+pwsx3946  power 0.0525  0.5 -> 0.229  Inexact Rounded

+pwsx3947  power 0.526  0.5 -> 0.725  Inexact Rounded

+pwsx3948  power 0.0526  0.5 -> 0.229  Inexact Rounded

+pwsx3949  power 0.527  0.5 -> 0.726  Inexact Rounded

+pwsx3950  power 0.0527  0.5 -> 0.230  Inexact Rounded

+pwsx3951  power 0.528  0.5 -> 0.727  Inexact Rounded

+pwsx3952  power 0.0528  0.5 -> 0.230  Inexact Rounded

+pwsx3953  power 0.529  0.5 -> 0.727  Inexact Rounded

+pwsx3954  power 0.0529  0.5 -> 0.230  Inexact Rounded

+pwsx3955  power 0.531  0.5 -> 0.729  Inexact Rounded

+pwsx3956  power 0.0531  0.5 -> 0.230  Inexact Rounded

+pwsx3957  power 0.532  0.5 -> 0.729  Inexact Rounded

+pwsx3958  power 0.0532  0.5 -> 0.231  Inexact Rounded

+pwsx3959  power 0.533  0.5 -> 0.730  Inexact Rounded

+pwsx3960  power 0.0533  0.5 -> 0.231  Inexact Rounded

+pwsx3961  power 0.534  0.5 -> 0.731  Inexact Rounded

+pwsx3962  power 0.0534  0.5 -> 0.231  Inexact Rounded

+pwsx3963  power 0.535  0.5 -> 0.731  Inexact Rounded

+pwsx3964  power 0.0535  0.5 -> 0.231  Inexact Rounded

+pwsx3965  power 0.536  0.5 -> 0.732  Inexact Rounded

+pwsx3966  power 0.0536  0.5 -> 0.232  Inexact Rounded

+pwsx3967  power 0.537  0.5 -> 0.733  Inexact Rounded

+pwsx3968  power 0.0537  0.5 -> 0.232  Inexact Rounded

+pwsx3969  power 0.538  0.5 -> 0.733  Inexact Rounded

+pwsx3970  power 0.0538  0.5 -> 0.232  Inexact Rounded

+pwsx3971  power 0.539  0.5 -> 0.734  Inexact Rounded

+pwsx3972  power 0.0539  0.5 -> 0.232  Inexact Rounded

+pwsx3973  power 0.541  0.5 -> 0.736  Inexact Rounded

+pwsx3974  power 0.0541  0.5 -> 0.233  Inexact Rounded

+pwsx3975  power 0.542  0.5 -> 0.736  Inexact Rounded

+pwsx3976  power 0.0542  0.5 -> 0.233  Inexact Rounded

+pwsx3977  power 0.543  0.5 -> 0.737  Inexact Rounded

+pwsx3978  power 0.0543  0.5 -> 0.233  Inexact Rounded

+pwsx3979  power 0.544  0.5 -> 0.738  Inexact Rounded

+pwsx3980  power 0.0544  0.5 -> 0.233  Inexact Rounded

+pwsx3981  power 0.545  0.5 -> 0.738  Inexact Rounded

+pwsx3982  power 0.0545  0.5 -> 0.233  Inexact Rounded

+pwsx3983  power 0.546  0.5 -> 0.739  Inexact Rounded

+pwsx3984  power 0.0546  0.5 -> 0.234  Inexact Rounded

+pwsx3985  power 0.547  0.5 -> 0.740  Inexact Rounded

+pwsx3986  power 0.0547  0.5 -> 0.234  Inexact Rounded

+pwsx3987  power 0.548  0.5 -> 0.740  Inexact Rounded

+pwsx3988  power 0.0548  0.5 -> 0.234  Inexact Rounded

+pwsx3989  power 0.549  0.5 -> 0.741  Inexact Rounded

+pwsx3990  power 0.0549  0.5 -> 0.234  Inexact Rounded

+pwsx3991  power 0.551  0.5 -> 0.742  Inexact Rounded

+pwsx3992  power 0.0551  0.5 -> 0.235  Inexact Rounded

+pwsx3993  power 0.552  0.5 -> 0.743  Inexact Rounded

+pwsx3994  power 0.0552  0.5 -> 0.235  Inexact Rounded

+pwsx3995  power 0.553  0.5 -> 0.744  Inexact Rounded

+pwsx3996  power 0.0553  0.5 -> 0.235  Inexact Rounded

+pwsx3997  power 0.554  0.5 -> 0.744  Inexact Rounded

+pwsx3998  power 0.0554  0.5 -> 0.235  Inexact Rounded

+pwsx3999  power 0.555  0.5 -> 0.745  Inexact Rounded

+pwsx4000  power 0.0555  0.5 -> 0.236  Inexact Rounded

+pwsx4001  power 0.556  0.5 -> 0.746  Inexact Rounded

+pwsx4002  power 0.0556  0.5 -> 0.236  Inexact Rounded

+pwsx4003  power 0.557  0.5 -> 0.746  Inexact Rounded

+pwsx4004  power 0.0557  0.5 -> 0.236  Inexact Rounded

+pwsx4005  power 0.558  0.5 -> 0.747  Inexact Rounded

+pwsx4006  power 0.0558  0.5 -> 0.236  Inexact Rounded

+pwsx4007  power 0.559  0.5 -> 0.748  Inexact Rounded

+pwsx4008  power 0.0559  0.5 -> 0.236  Inexact Rounded

+pwsx4009  power 0.561  0.5 -> 0.749  Inexact Rounded

+pwsx4010  power 0.0561  0.5 -> 0.237  Inexact Rounded

+pwsx4011  power 0.562  0.5 -> 0.750  Inexact Rounded

+pwsx4012  power 0.0562  0.5 -> 0.237  Inexact Rounded

+pwsx4013  power 0.563  0.5 -> 0.750  Inexact Rounded

+pwsx4014  power 0.0563  0.5 -> 0.237  Inexact Rounded

+pwsx4015  power 0.564  0.5 -> 0.751  Inexact Rounded

+pwsx4016  power 0.0564  0.5 -> 0.237  Inexact Rounded

+pwsx4017  power 0.565  0.5 -> 0.752  Inexact Rounded

+pwsx4018  power 0.0565  0.5 -> 0.238  Inexact Rounded

+pwsx4019  power 0.566  0.5 -> 0.752  Inexact Rounded

+pwsx4020  power 0.0566  0.5 -> 0.238  Inexact Rounded

+pwsx4021  power 0.567  0.5 -> 0.753  Inexact Rounded

+pwsx4022  power 0.0567  0.5 -> 0.238  Inexact Rounded

+pwsx4023  power 0.568  0.5 -> 0.754  Inexact Rounded

+pwsx4024  power 0.0568  0.5 -> 0.238  Inexact Rounded

+pwsx4025  power 0.569  0.5 -> 0.754  Inexact Rounded

+pwsx4026  power 0.0569  0.5 -> 0.239  Inexact Rounded

+pwsx4027  power 0.571  0.5 -> 0.756  Inexact Rounded

+pwsx4028  power 0.0571  0.5 -> 0.239  Inexact Rounded

+pwsx4029  power 0.572  0.5 -> 0.756  Inexact Rounded

+pwsx4030  power 0.0572  0.5 -> 0.239  Inexact Rounded

+pwsx4031  power 0.573  0.5 -> 0.757  Inexact Rounded

+pwsx4032  power 0.0573  0.5 -> 0.239  Inexact Rounded

+pwsx4033  power 0.574  0.5 -> 0.758  Inexact Rounded

+pwsx4034  power 0.0574  0.5 -> 0.240  Inexact Rounded

+pwsx4035  power 0.575  0.5 -> 0.758  Inexact Rounded

+pwsx4036  power 0.0575  0.5 -> 0.240  Inexact Rounded

+pwsx4037  power 0.576  0.5 -> 0.759  Inexact Rounded

+pwsx4038  power 0.0576  0.5 -> 0.240  Inexact Rounded

+pwsx4039  power 0.577  0.5 -> 0.760  Inexact Rounded

+pwsx4040  power 0.0577  0.5 -> 0.240  Inexact Rounded

+pwsx4041  power 0.578  0.5 -> 0.760  Inexact Rounded

+pwsx4042  power 0.0578  0.5 -> 0.240  Inexact Rounded

+pwsx4043  power 0.579  0.5 -> 0.761  Inexact Rounded

+pwsx4044  power 0.0579  0.5 -> 0.241  Inexact Rounded

+pwsx4045  power 0.581  0.5 -> 0.762  Inexact Rounded

+pwsx4046  power 0.0581  0.5 -> 0.241  Inexact Rounded

+pwsx4047  power 0.582  0.5 -> 0.763  Inexact Rounded

+pwsx4048  power 0.0582  0.5 -> 0.241  Inexact Rounded

+pwsx4049  power 0.583  0.5 -> 0.764  Inexact Rounded

+pwsx4050  power 0.0583  0.5 -> 0.241  Inexact Rounded

+pwsx4051  power 0.584  0.5 -> 0.764  Inexact Rounded

+pwsx4052  power 0.0584  0.5 -> 0.242  Inexact Rounded

+pwsx4053  power 0.585  0.5 -> 0.765  Inexact Rounded

+pwsx4054  power 0.0585  0.5 -> 0.242  Inexact Rounded

+pwsx4055  power 0.586  0.5 -> 0.766  Inexact Rounded

+pwsx4056  power 0.0586  0.5 -> 0.242  Inexact Rounded

+pwsx4057  power 0.587  0.5 -> 0.766  Inexact Rounded

+pwsx4058  power 0.0587  0.5 -> 0.242  Inexact Rounded

+pwsx4059  power 0.588  0.5 -> 0.767  Inexact Rounded

+pwsx4060  power 0.0588  0.5 -> 0.242  Inexact Rounded

+pwsx4061  power 0.589  0.5 -> 0.767  Inexact Rounded

+pwsx4062  power 0.0589  0.5 -> 0.243  Inexact Rounded

+pwsx4063  power 0.591  0.5 -> 0.769  Inexact Rounded

+pwsx4064  power 0.0591  0.5 -> 0.243  Inexact Rounded

+pwsx4065  power 0.592  0.5 -> 0.769  Inexact Rounded

+pwsx4066  power 0.0592  0.5 -> 0.243  Inexact Rounded

+pwsx4067  power 0.593  0.5 -> 0.770  Inexact Rounded

+pwsx4068  power 0.0593  0.5 -> 0.244  Inexact Rounded

+pwsx4069  power 0.594  0.5 -> 0.771  Inexact Rounded

+pwsx4070  power 0.0594  0.5 -> 0.244  Inexact Rounded

+pwsx4071  power 0.595  0.5 -> 0.771  Inexact Rounded

+pwsx4072  power 0.0595  0.5 -> 0.244  Inexact Rounded

+pwsx4073  power 0.596  0.5 -> 0.772  Inexact Rounded

+pwsx4074  power 0.0596  0.5 -> 0.244  Inexact Rounded

+pwsx4075  power 0.597  0.5 -> 0.773  Inexact Rounded

+pwsx4076  power 0.0597  0.5 -> 0.244  Inexact Rounded

+pwsx4077  power 0.598  0.5 -> 0.773  Inexact Rounded

+pwsx4078  power 0.0598  0.5 -> 0.245  Inexact Rounded

+pwsx4079  power 0.599  0.5 -> 0.774  Inexact Rounded

+pwsx4080  power 0.0599  0.5 -> 0.245  Inexact Rounded

+pwsx4081  power 0.601  0.5 -> 0.775  Inexact Rounded

+pwsx4082  power 0.0601  0.5 -> 0.245  Inexact Rounded

+pwsx4083  power 0.602  0.5 -> 0.776  Inexact Rounded

+pwsx4084  power 0.0602  0.5 -> 0.245  Inexact Rounded

+pwsx4085  power 0.603  0.5 -> 0.777  Inexact Rounded

+pwsx4086  power 0.0603  0.5 -> 0.246  Inexact Rounded

+pwsx4087  power 0.604  0.5 -> 0.777  Inexact Rounded

+pwsx4088  power 0.0604  0.5 -> 0.246  Inexact Rounded

+pwsx4089  power 0.605  0.5 -> 0.778  Inexact Rounded

+pwsx4090  power 0.0605  0.5 -> 0.246  Inexact Rounded

+pwsx4091  power 0.606  0.5 -> 0.778  Inexact Rounded

+pwsx4092  power 0.0606  0.5 -> 0.246  Inexact Rounded

+pwsx4093  power 0.607  0.5 -> 0.779  Inexact Rounded

+pwsx4094  power 0.0607  0.5 -> 0.246  Inexact Rounded

+pwsx4095  power 0.608  0.5 -> 0.780  Inexact Rounded

+pwsx4096  power 0.0608  0.5 -> 0.247  Inexact Rounded

+pwsx4097  power 0.609  0.5 -> 0.780  Inexact Rounded

+pwsx4098  power 0.0609  0.5 -> 0.247  Inexact Rounded

+pwsx4099  power 0.611  0.5 -> 0.782  Inexact Rounded

+pwsx4100  power 0.0611  0.5 -> 0.247  Inexact Rounded

+pwsx4101  power 0.612  0.5 -> 0.782  Inexact Rounded

+pwsx4102  power 0.0612  0.5 -> 0.247  Inexact Rounded

+pwsx4103  power 0.613  0.5 -> 0.783  Inexact Rounded

+pwsx4104  power 0.0613  0.5 -> 0.248  Inexact Rounded

+pwsx4105  power 0.614  0.5 -> 0.784  Inexact Rounded

+pwsx4106  power 0.0614  0.5 -> 0.248  Inexact Rounded

+pwsx4107  power 0.615  0.5 -> 0.784  Inexact Rounded

+pwsx4108  power 0.0615  0.5 -> 0.248  Inexact Rounded

+pwsx4109  power 0.616  0.5 -> 0.785  Inexact Rounded

+pwsx4110  power 0.0616  0.5 -> 0.248  Inexact Rounded

+pwsx4111  power 0.617  0.5 -> 0.785  Inexact Rounded

+pwsx4112  power 0.0617  0.5 -> 0.248  Inexact Rounded

+pwsx4113  power 0.618  0.5 -> 0.786  Inexact Rounded

+pwsx4114  power 0.0618  0.5 -> 0.249  Inexact Rounded

+pwsx4115  power 0.619  0.5 -> 0.787  Inexact Rounded

+pwsx4116  power 0.0619  0.5 -> 0.249  Inexact Rounded

+pwsx4117  power 0.621  0.5 -> 0.788  Inexact Rounded

+pwsx4118  power 0.0621  0.5 -> 0.249  Inexact Rounded

+pwsx4119  power 0.622  0.5 -> 0.789  Inexact Rounded

+pwsx4120  power 0.0622  0.5 -> 0.249  Inexact Rounded

+pwsx4121  power 0.623  0.5 -> 0.789  Inexact Rounded

+pwsx4122  power 0.0623  0.5 -> 0.250  Inexact Rounded

+pwsx4123  power 0.624  0.5 -> 0.790  Inexact Rounded

+pwsx4124  power 0.0624  0.5 -> 0.250  Inexact Rounded

+pwsx4125  power 0.625  0.5 -> 0.791  Inexact Rounded

+pwsx4126  power 0.0625  0.5 -> 0.250  Inexact Rounded

+pwsx4127  power 0.626  0.5 -> 0.791  Inexact Rounded

+pwsx4128  power 0.0626  0.5 -> 0.250  Inexact Rounded

+pwsx4129  power 0.627  0.5 -> 0.792  Inexact Rounded

+pwsx4130  power 0.0627  0.5 -> 0.250  Inexact Rounded

+pwsx4131  power 0.628  0.5 -> 0.792  Inexact Rounded

+pwsx4132  power 0.0628  0.5 -> 0.251  Inexact Rounded

+pwsx4133  power 0.629  0.5 -> 0.793  Inexact Rounded

+pwsx4134  power 0.0629  0.5 -> 0.251  Inexact Rounded

+pwsx4135  power 0.631  0.5 -> 0.794  Inexact Rounded

+pwsx4136  power 0.0631  0.5 -> 0.251  Inexact Rounded

+pwsx4137  power 0.632  0.5 -> 0.795  Inexact Rounded

+pwsx4138  power 0.0632  0.5 -> 0.251  Inexact Rounded

+pwsx4139  power 0.633  0.5 -> 0.796  Inexact Rounded

+pwsx4140  power 0.0633  0.5 -> 0.252  Inexact Rounded

+pwsx4141  power 0.634  0.5 -> 0.796  Inexact Rounded

+pwsx4142  power 0.0634  0.5 -> 0.252  Inexact Rounded

+pwsx4143  power 0.635  0.5 -> 0.797  Inexact Rounded

+pwsx4144  power 0.0635  0.5 -> 0.252  Inexact Rounded

+pwsx4145  power 0.636  0.5 -> 0.797  Inexact Rounded

+pwsx4146  power 0.0636  0.5 -> 0.252  Inexact Rounded

+pwsx4147  power 0.637  0.5 -> 0.798  Inexact Rounded

+pwsx4148  power 0.0637  0.5 -> 0.252  Inexact Rounded

+pwsx4149  power 0.638  0.5 -> 0.799  Inexact Rounded

+pwsx4150  power 0.0638  0.5 -> 0.253  Inexact Rounded

+pwsx4151  power 0.639  0.5 -> 0.799  Inexact Rounded

+pwsx4152  power 0.0639  0.5 -> 0.253  Inexact Rounded

+pwsx4153  power 0.641  0.5 -> 0.801  Inexact Rounded

+pwsx4154  power 0.0641  0.5 -> 0.253  Inexact Rounded

+pwsx4155  power 0.642  0.5 -> 0.801  Inexact Rounded

+pwsx4156  power 0.0642  0.5 -> 0.253  Inexact Rounded

+pwsx4157  power 0.643  0.5 -> 0.802  Inexact Rounded

+pwsx4158  power 0.0643  0.5 -> 0.254  Inexact Rounded

+pwsx4159  power 0.644  0.5 -> 0.802  Inexact Rounded

+pwsx4160  power 0.0644  0.5 -> 0.254  Inexact Rounded

+pwsx4161  power 0.645  0.5 -> 0.803  Inexact Rounded

+pwsx4162  power 0.0645  0.5 -> 0.254  Inexact Rounded

+pwsx4163  power 0.646  0.5 -> 0.804  Inexact Rounded

+pwsx4164  power 0.0646  0.5 -> 0.254  Inexact Rounded

+pwsx4165  power 0.647  0.5 -> 0.804  Inexact Rounded

+pwsx4166  power 0.0647  0.5 -> 0.254  Inexact Rounded

+pwsx4167  power 0.648  0.5 -> 0.805  Inexact Rounded

+pwsx4168  power 0.0648  0.5 -> 0.255  Inexact Rounded

+pwsx4169  power 0.649  0.5 -> 0.806  Inexact Rounded

+pwsx4170  power 0.0649  0.5 -> 0.255  Inexact Rounded

+pwsx4171  power 0.651  0.5 -> 0.807  Inexact Rounded

+pwsx4172  power 0.0651  0.5 -> 0.255  Inexact Rounded

+pwsx4173  power 0.652  0.5 -> 0.807  Inexact Rounded

+pwsx4174  power 0.0652  0.5 -> 0.255  Inexact Rounded

+pwsx4175  power 0.653  0.5 -> 0.808  Inexact Rounded

+pwsx4176  power 0.0653  0.5 -> 0.256  Inexact Rounded

+pwsx4177  power 0.654  0.5 -> 0.809  Inexact Rounded

+pwsx4178  power 0.0654  0.5 -> 0.256  Inexact Rounded

+pwsx4179  power 0.655  0.5 -> 0.809  Inexact Rounded

+pwsx4180  power 0.0655  0.5 -> 0.256  Inexact Rounded

+pwsx4181  power 0.656  0.5 -> 0.810  Inexact Rounded

+pwsx4182  power 0.0656  0.5 -> 0.256  Inexact Rounded

+pwsx4183  power 0.657  0.5 -> 0.811  Inexact Rounded

+pwsx4184  power 0.0657  0.5 -> 0.256  Inexact Rounded

+pwsx4185  power 0.658  0.5 -> 0.811  Inexact Rounded

+pwsx4186  power 0.0658  0.5 -> 0.257  Inexact Rounded

+pwsx4187  power 0.659  0.5 -> 0.812  Inexact Rounded

+pwsx4188  power 0.0659  0.5 -> 0.257  Inexact Rounded

+pwsx4189  power 0.661  0.5 -> 0.813  Inexact Rounded

+pwsx4190  power 0.0661  0.5 -> 0.257  Inexact Rounded

+pwsx4191  power 0.662  0.5 -> 0.814  Inexact Rounded

+pwsx4192  power 0.0662  0.5 -> 0.257  Inexact Rounded

+pwsx4193  power 0.663  0.5 -> 0.814  Inexact Rounded

+pwsx4194  power 0.0663  0.5 -> 0.257  Inexact Rounded

+pwsx4195  power 0.664  0.5 -> 0.815  Inexact Rounded

+pwsx4196  power 0.0664  0.5 -> 0.258  Inexact Rounded

+pwsx4197  power 0.665  0.5 -> 0.815  Inexact Rounded

+pwsx4198  power 0.0665  0.5 -> 0.258  Inexact Rounded

+pwsx4199  power 0.666  0.5 -> 0.816  Inexact Rounded

+pwsx4200  power 0.0666  0.5 -> 0.258  Inexact Rounded

+pwsx4201  power 0.667  0.5 -> 0.817  Inexact Rounded

+pwsx4202  power 0.0667  0.5 -> 0.258  Inexact Rounded

+pwsx4203  power 0.668  0.5 -> 0.817  Inexact Rounded

+pwsx4204  power 0.0668  0.5 -> 0.258  Inexact Rounded

+pwsx4205  power 0.669  0.5 -> 0.818  Inexact Rounded

+pwsx4206  power 0.0669  0.5 -> 0.259  Inexact Rounded

+pwsx4207  power 0.671  0.5 -> 0.819  Inexact Rounded

+pwsx4208  power 0.0671  0.5 -> 0.259  Inexact Rounded

+pwsx4209  power 0.672  0.5 -> 0.820  Inexact Rounded

+pwsx4210  power 0.0672  0.5 -> 0.259  Inexact Rounded

+pwsx4211  power 0.673  0.5 -> 0.820  Inexact Rounded

+pwsx4212  power 0.0673  0.5 -> 0.259  Inexact Rounded

+pwsx4213  power 0.674  0.5 -> 0.821  Inexact Rounded

+pwsx4214  power 0.0674  0.5 -> 0.260  Inexact Rounded

+pwsx4215  power 0.675  0.5 -> 0.822  Inexact Rounded

+pwsx4216  power 0.0675  0.5 -> 0.260  Inexact Rounded

+pwsx4217  power 0.676  0.5 -> 0.822  Inexact Rounded

+pwsx4218  power 0.0676  0.5 -> 0.260  Inexact Rounded

+pwsx4219  power 0.677  0.5 -> 0.823  Inexact Rounded

+pwsx4220  power 0.0677  0.5 -> 0.260  Inexact Rounded

+pwsx4221  power 0.678  0.5 -> 0.823  Inexact Rounded

+pwsx4222  power 0.0678  0.5 -> 0.260  Inexact Rounded

+pwsx4223  power 0.679  0.5 -> 0.824  Inexact Rounded

+pwsx4224  power 0.0679  0.5 -> 0.261  Inexact Rounded

+pwsx4225  power 0.681  0.5 -> 0.825  Inexact Rounded

+pwsx4226  power 0.0681  0.5 -> 0.261  Inexact Rounded

+pwsx4227  power 0.682  0.5 -> 0.826  Inexact Rounded

+pwsx4228  power 0.0682  0.5 -> 0.261  Inexact Rounded

+pwsx4229  power 0.683  0.5 -> 0.826  Inexact Rounded

+pwsx4230  power 0.0683  0.5 -> 0.261  Inexact Rounded

+pwsx4231  power 0.684  0.5 -> 0.827  Inexact Rounded

+pwsx4232  power 0.0684  0.5 -> 0.262  Inexact Rounded

+pwsx4233  power 0.685  0.5 -> 0.828  Inexact Rounded

+pwsx4234  power 0.0685  0.5 -> 0.262  Inexact Rounded

+pwsx4235  power 0.686  0.5 -> 0.828  Inexact Rounded

+pwsx4236  power 0.0686  0.5 -> 0.262  Inexact Rounded

+pwsx4237  power 0.687  0.5 -> 0.829  Inexact Rounded

+pwsx4238  power 0.0687  0.5 -> 0.262  Inexact Rounded

+pwsx4239  power 0.688  0.5 -> 0.829  Inexact Rounded

+pwsx4240  power 0.0688  0.5 -> 0.262  Inexact Rounded

+pwsx4241  power 0.689  0.5 -> 0.830  Inexact Rounded

+pwsx4242  power 0.0689  0.5 -> 0.262  Inexact Rounded

+pwsx4243  power 0.691  0.5 -> 0.831  Inexact Rounded

+pwsx4244  power 0.0691  0.5 -> 0.263  Inexact Rounded

+pwsx4245  power 0.692  0.5 -> 0.832  Inexact Rounded

+pwsx4246  power 0.0692  0.5 -> 0.263  Inexact Rounded

+pwsx4247  power 0.693  0.5 -> 0.832  Inexact Rounded

+pwsx4248  power 0.0693  0.5 -> 0.263  Inexact Rounded

+pwsx4249  power 0.694  0.5 -> 0.833  Inexact Rounded

+pwsx4250  power 0.0694  0.5 -> 0.263  Inexact Rounded

+pwsx4251  power 0.695  0.5 -> 0.834  Inexact Rounded

+pwsx4252  power 0.0695  0.5 -> 0.264  Inexact Rounded

+pwsx4253  power 0.696  0.5 -> 0.834  Inexact Rounded

+pwsx4254  power 0.0696  0.5 -> 0.264  Inexact Rounded

+pwsx4255  power 0.697  0.5 -> 0.835  Inexact Rounded

+pwsx4256  power 0.0697  0.5 -> 0.264  Inexact Rounded

+pwsx4257  power 0.698  0.5 -> 0.835  Inexact Rounded

+pwsx4258  power 0.0698  0.5 -> 0.264  Inexact Rounded

+pwsx4259  power 0.699  0.5 -> 0.836  Inexact Rounded

+pwsx4260  power 0.0699  0.5 -> 0.264  Inexact Rounded

+pwsx4261  power 0.701  0.5 -> 0.837  Inexact Rounded

+pwsx4262  power 0.0701  0.5 -> 0.265  Inexact Rounded

+pwsx4263  power 0.702  0.5 -> 0.838  Inexact Rounded

+pwsx4264  power 0.0702  0.5 -> 0.265  Inexact Rounded

+pwsx4265  power 0.703  0.5 -> 0.838  Inexact Rounded

+pwsx4266  power 0.0703  0.5 -> 0.265  Inexact Rounded

+pwsx4267  power 0.704  0.5 -> 0.839  Inexact Rounded

+pwsx4268  power 0.0704  0.5 -> 0.265  Inexact Rounded

+pwsx4269  power 0.705  0.5 -> 0.840  Inexact Rounded

+pwsx4270  power 0.0705  0.5 -> 0.266  Inexact Rounded

+pwsx4271  power 0.706  0.5 -> 0.840  Inexact Rounded

+pwsx4272  power 0.0706  0.5 -> 0.266  Inexact Rounded

+pwsx4273  power 0.707  0.5 -> 0.841  Inexact Rounded

+pwsx4274  power 0.0707  0.5 -> 0.266  Inexact Rounded

+pwsx4275  power 0.708  0.5 -> 0.841  Inexact Rounded

+pwsx4276  power 0.0708  0.5 -> 0.266  Inexact Rounded

+pwsx4277  power 0.709  0.5 -> 0.842  Inexact Rounded

+pwsx4278  power 0.0709  0.5 -> 0.266  Inexact Rounded

+pwsx4279  power 0.711  0.5 -> 0.843  Inexact Rounded

+pwsx4280  power 0.0711  0.5 -> 0.267  Inexact Rounded

+pwsx4281  power 0.712  0.5 -> 0.844  Inexact Rounded

+pwsx4282  power 0.0712  0.5 -> 0.267  Inexact Rounded

+pwsx4283  power 0.713  0.5 -> 0.844  Inexact Rounded

+pwsx4284  power 0.0713  0.5 -> 0.267  Inexact Rounded

+pwsx4285  power 0.714  0.5 -> 0.845  Inexact Rounded

+pwsx4286  power 0.0714  0.5 -> 0.267  Inexact Rounded

+pwsx4287  power 0.715  0.5 -> 0.846  Inexact Rounded

+pwsx4288  power 0.0715  0.5 -> 0.267  Inexact Rounded

+pwsx4289  power 0.716  0.5 -> 0.846  Inexact Rounded

+pwsx4290  power 0.0716  0.5 -> 0.268  Inexact Rounded

+pwsx4291  power 0.717  0.5 -> 0.847  Inexact Rounded

+pwsx4292  power 0.0717  0.5 -> 0.268  Inexact Rounded

+pwsx4293  power 0.718  0.5 -> 0.847  Inexact Rounded

+pwsx4294  power 0.0718  0.5 -> 0.268  Inexact Rounded

+pwsx4295  power 0.719  0.5 -> 0.848  Inexact Rounded

+pwsx4296  power 0.0719  0.5 -> 0.268  Inexact Rounded

+pwsx4297  power 0.721  0.5 -> 0.849  Inexact Rounded

+pwsx4298  power 0.0721  0.5 -> 0.269  Inexact Rounded

+pwsx4299  power 0.722  0.5 -> 0.850  Inexact Rounded

+pwsx4300  power 0.0722  0.5 -> 0.269  Inexact Rounded

+pwsx4301  power 0.723  0.5 -> 0.850  Inexact Rounded

+pwsx4302  power 0.0723  0.5 -> 0.269  Inexact Rounded

+pwsx4303  power 0.724  0.5 -> 0.851  Inexact Rounded

+pwsx4304  power 0.0724  0.5 -> 0.269  Inexact Rounded

+pwsx4305  power 0.725  0.5 -> 0.851  Inexact Rounded

+pwsx4306  power 0.0725  0.5 -> 0.269  Inexact Rounded

+pwsx4307  power 0.726  0.5 -> 0.852  Inexact Rounded

+pwsx4308  power 0.0726  0.5 -> 0.269  Inexact Rounded

+pwsx4309  power 0.727  0.5 -> 0.853  Inexact Rounded

+pwsx4310  power 0.0727  0.5 -> 0.270  Inexact Rounded

+pwsx4311  power 0.728  0.5 -> 0.853  Inexact Rounded

+pwsx4312  power 0.0728  0.5 -> 0.270  Inexact Rounded

+pwsx4313  power 0.729  0.5 -> 0.854  Inexact Rounded

+pwsx4314  power 0.0729  0.5 -> 0.270  Inexact Rounded

+pwsx4315  power 0.731  0.5 -> 0.855  Inexact Rounded

+pwsx4316  power 0.0731  0.5 -> 0.270  Inexact Rounded

+pwsx4317  power 0.732  0.5 -> 0.856  Inexact Rounded

+pwsx4318  power 0.0732  0.5 -> 0.271  Inexact Rounded

+pwsx4319  power 0.733  0.5 -> 0.856  Inexact Rounded

+pwsx4320  power 0.0733  0.5 -> 0.271  Inexact Rounded

+pwsx4321  power 0.734  0.5 -> 0.857  Inexact Rounded

+pwsx4322  power 0.0734  0.5 -> 0.271  Inexact Rounded

+pwsx4323  power 0.735  0.5 -> 0.857  Inexact Rounded

+pwsx4324  power 0.0735  0.5 -> 0.271  Inexact Rounded

+pwsx4325  power 0.736  0.5 -> 0.858  Inexact Rounded

+pwsx4326  power 0.0736  0.5 -> 0.271  Inexact Rounded

+pwsx4327  power 0.737  0.5 -> 0.858  Inexact Rounded

+pwsx4328  power 0.0737  0.5 -> 0.271  Inexact Rounded

+pwsx4329  power 0.738  0.5 -> 0.859  Inexact Rounded

+pwsx4330  power 0.0738  0.5 -> 0.272  Inexact Rounded

+pwsx4331  power 0.739  0.5 -> 0.860  Inexact Rounded

+pwsx4332  power 0.0739  0.5 -> 0.272  Inexact Rounded

+pwsx4333  power 0.741  0.5 -> 0.861  Inexact Rounded

+pwsx4334  power 0.0741  0.5 -> 0.272  Inexact Rounded

+pwsx4335  power 0.742  0.5 -> 0.861  Inexact Rounded

+pwsx4336  power 0.0742  0.5 -> 0.272  Inexact Rounded

+pwsx4337  power 0.743  0.5 -> 0.862  Inexact Rounded

+pwsx4338  power 0.0743  0.5 -> 0.273  Inexact Rounded

+pwsx4339  power 0.744  0.5 -> 0.863  Inexact Rounded

+pwsx4340  power 0.0744  0.5 -> 0.273  Inexact Rounded

+pwsx4341  power 0.745  0.5 -> 0.863  Inexact Rounded

+pwsx4342  power 0.0745  0.5 -> 0.273  Inexact Rounded

+pwsx4343  power 0.746  0.5 -> 0.864  Inexact Rounded

+pwsx4344  power 0.0746  0.5 -> 0.273  Inexact Rounded

+pwsx4345  power 0.747  0.5 -> 0.864  Inexact Rounded

+pwsx4346  power 0.0747  0.5 -> 0.273  Inexact Rounded

+pwsx4347  power 0.748  0.5 -> 0.865  Inexact Rounded

+pwsx4348  power 0.0748  0.5 -> 0.273  Inexact Rounded

+pwsx4349  power 0.749  0.5 -> 0.865  Inexact Rounded

+pwsx4350  power 0.0749  0.5 -> 0.274  Inexact Rounded

+pwsx4351  power 0.751  0.5 -> 0.867  Inexact Rounded

+pwsx4352  power 0.0751  0.5 -> 0.274  Inexact Rounded

+pwsx4353  power 0.752  0.5 -> 0.867  Inexact Rounded

+pwsx4354  power 0.0752  0.5 -> 0.274  Inexact Rounded

+pwsx4355  power 0.753  0.5 -> 0.868  Inexact Rounded

+pwsx4356  power 0.0753  0.5 -> 0.274  Inexact Rounded

+pwsx4357  power 0.754  0.5 -> 0.868  Inexact Rounded

+pwsx4358  power 0.0754  0.5 -> 0.275  Inexact Rounded

+pwsx4359  power 0.755  0.5 -> 0.869  Inexact Rounded

+pwsx4360  power 0.0755  0.5 -> 0.275  Inexact Rounded

+pwsx4361  power 0.756  0.5 -> 0.869  Inexact Rounded

+pwsx4362  power 0.0756  0.5 -> 0.275  Inexact Rounded

+pwsx4363  power 0.757  0.5 -> 0.870  Inexact Rounded

+pwsx4364  power 0.0757  0.5 -> 0.275  Inexact Rounded

+pwsx4365  power 0.758  0.5 -> 0.871  Inexact Rounded

+pwsx4366  power 0.0758  0.5 -> 0.275  Inexact Rounded

+pwsx4367  power 0.759  0.5 -> 0.871  Inexact Rounded

+pwsx4368  power 0.0759  0.5 -> 0.275  Inexact Rounded

+pwsx4369  power 0.761  0.5 -> 0.872  Inexact Rounded

+pwsx4370  power 0.0761  0.5 -> 0.276  Inexact Rounded

+pwsx4371  power 0.762  0.5 -> 0.873  Inexact Rounded

+pwsx4372  power 0.0762  0.5 -> 0.276  Inexact Rounded

+pwsx4373  power 0.763  0.5 -> 0.873  Inexact Rounded

+pwsx4374  power 0.0763  0.5 -> 0.276  Inexact Rounded

+pwsx4375  power 0.764  0.5 -> 0.874  Inexact Rounded

+pwsx4376  power 0.0764  0.5 -> 0.276  Inexact Rounded

+pwsx4377  power 0.765  0.5 -> 0.875  Inexact Rounded

+pwsx4378  power 0.0765  0.5 -> 0.277  Inexact Rounded

+pwsx4379  power 0.766  0.5 -> 0.875  Inexact Rounded

+pwsx4380  power 0.0766  0.5 -> 0.277  Inexact Rounded

+pwsx4381  power 0.767  0.5 -> 0.876  Inexact Rounded

+pwsx4382  power 0.0767  0.5 -> 0.277  Inexact Rounded

+pwsx4383  power 0.768  0.5 -> 0.876  Inexact Rounded

+pwsx4384  power 0.0768  0.5 -> 0.277  Inexact Rounded

+pwsx4385  power 0.769  0.5 -> 0.877  Inexact Rounded

+pwsx4386  power 0.0769  0.5 -> 0.277  Inexact Rounded

+pwsx4387  power 0.771  0.5 -> 0.878  Inexact Rounded

+pwsx4388  power 0.0771  0.5 -> 0.278  Inexact Rounded

+pwsx4389  power 0.772  0.5 -> 0.879  Inexact Rounded

+pwsx4390  power 0.0772  0.5 -> 0.278  Inexact Rounded

+pwsx4391  power 0.773  0.5 -> 0.879  Inexact Rounded

+pwsx4392  power 0.0773  0.5 -> 0.278  Inexact Rounded

+pwsx4393  power 0.774  0.5 -> 0.880  Inexact Rounded

+pwsx4394  power 0.0774  0.5 -> 0.278  Inexact Rounded

+pwsx4395  power 0.775  0.5 -> 0.880  Inexact Rounded

+pwsx4396  power 0.0775  0.5 -> 0.278  Inexact Rounded

+pwsx4397  power 0.776  0.5 -> 0.881  Inexact Rounded

+pwsx4398  power 0.0776  0.5 -> 0.279  Inexact Rounded

+pwsx4399  power 0.777  0.5 -> 0.881  Inexact Rounded

+pwsx4400  power 0.0777  0.5 -> 0.279  Inexact Rounded

+pwsx4401  power 0.778  0.5 -> 0.882  Inexact Rounded

+pwsx4402  power 0.0778  0.5 -> 0.279  Inexact Rounded

+pwsx4403  power 0.779  0.5 -> 0.883  Inexact Rounded

+pwsx4404  power 0.0779  0.5 -> 0.279  Inexact Rounded

+pwsx4405  power 0.781  0.5 -> 0.884  Inexact Rounded

+pwsx4406  power 0.0781  0.5 -> 0.279  Inexact Rounded

+pwsx4407  power 0.782  0.5 -> 0.884  Inexact Rounded

+pwsx4408  power 0.0782  0.5 -> 0.280  Inexact Rounded

+pwsx4409  power 0.783  0.5 -> 0.885  Inexact Rounded

+pwsx4410  power 0.0783  0.5 -> 0.280  Inexact Rounded

+pwsx4411  power 0.784  0.5 -> 0.885  Inexact Rounded

+pwsx4412  power 0.0784  0.5 -> 0.280  Inexact Rounded

+pwsx4413  power 0.785  0.5 -> 0.886  Inexact Rounded

+pwsx4414  power 0.0785  0.5 -> 0.280  Inexact Rounded

+pwsx4415  power 0.786  0.5 -> 0.887  Inexact Rounded

+pwsx4416  power 0.0786  0.5 -> 0.280  Inexact Rounded

+pwsx4417  power 0.787  0.5 -> 0.887  Inexact Rounded

+pwsx4418  power 0.0787  0.5 -> 0.281  Inexact Rounded

+pwsx4419  power 0.788  0.5 -> 0.888  Inexact Rounded

+pwsx4420  power 0.0788  0.5 -> 0.281  Inexact Rounded

+pwsx4421  power 0.789  0.5 -> 0.888  Inexact Rounded

+pwsx4422  power 0.0789  0.5 -> 0.281  Inexact Rounded

+pwsx4423  power 0.791  0.5 -> 0.889  Inexact Rounded

+pwsx4424  power 0.0791  0.5 -> 0.281  Inexact Rounded

+pwsx4425  power 0.792  0.5 -> 0.890  Inexact Rounded

+pwsx4426  power 0.0792  0.5 -> 0.281  Inexact Rounded

+pwsx4427  power 0.793  0.5 -> 0.891  Inexact Rounded

+pwsx4428  power 0.0793  0.5 -> 0.282  Inexact Rounded

+pwsx4429  power 0.794  0.5 -> 0.891  Inexact Rounded

+pwsx4430  power 0.0794  0.5 -> 0.282  Inexact Rounded

+pwsx4431  power 0.795  0.5 -> 0.892  Inexact Rounded

+pwsx4432  power 0.0795  0.5 -> 0.282  Inexact Rounded

+pwsx4433  power 0.796  0.5 -> 0.892  Inexact Rounded

+pwsx4434  power 0.0796  0.5 -> 0.282  Inexact Rounded

+pwsx4435  power 0.797  0.5 -> 0.893  Inexact Rounded

+pwsx4436  power 0.0797  0.5 -> 0.282  Inexact Rounded

+pwsx4437  power 0.798  0.5 -> 0.893  Inexact Rounded

+pwsx4438  power 0.0798  0.5 -> 0.282  Inexact Rounded

+pwsx4439  power 0.799  0.5 -> 0.894  Inexact Rounded

+pwsx4440  power 0.0799  0.5 -> 0.283  Inexact Rounded

+pwsx4441  power 0.801  0.5 -> 0.895  Inexact Rounded

+pwsx4442  power 0.0801  0.5 -> 0.283  Inexact Rounded

+pwsx4443  power 0.802  0.5 -> 0.896  Inexact Rounded

+pwsx4444  power 0.0802  0.5 -> 0.283  Inexact Rounded

+pwsx4445  power 0.803  0.5 -> 0.896  Inexact Rounded

+pwsx4446  power 0.0803  0.5 -> 0.283  Inexact Rounded

+pwsx4447  power 0.804  0.5 -> 0.897  Inexact Rounded

+pwsx4448  power 0.0804  0.5 -> 0.284  Inexact Rounded

+pwsx4449  power 0.805  0.5 -> 0.897  Inexact Rounded

+pwsx4450  power 0.0805  0.5 -> 0.284  Inexact Rounded

+pwsx4451  power 0.806  0.5 -> 0.898  Inexact Rounded

+pwsx4452  power 0.0806  0.5 -> 0.284  Inexact Rounded

+pwsx4453  power 0.807  0.5 -> 0.898  Inexact Rounded

+pwsx4454  power 0.0807  0.5 -> 0.284  Inexact Rounded

+pwsx4455  power 0.808  0.5 -> 0.899  Inexact Rounded

+pwsx4456  power 0.0808  0.5 -> 0.284  Inexact Rounded

+pwsx4457  power 0.809  0.5 -> 0.899  Inexact Rounded

+pwsx4458  power 0.0809  0.5 -> 0.284  Inexact Rounded

+pwsx4459  power 0.811  0.5 -> 0.901  Inexact Rounded

+pwsx4460  power 0.0811  0.5 -> 0.285  Inexact Rounded

+pwsx4461  power 0.812  0.5 -> 0.901  Inexact Rounded

+pwsx4462  power 0.0812  0.5 -> 0.285  Inexact Rounded

+pwsx4463  power 0.813  0.5 -> 0.902  Inexact Rounded

+pwsx4464  power 0.0813  0.5 -> 0.285  Inexact Rounded

+pwsx4465  power 0.814  0.5 -> 0.902  Inexact Rounded

+pwsx4466  power 0.0814  0.5 -> 0.285  Inexact Rounded

+pwsx4467  power 0.815  0.5 -> 0.903  Inexact Rounded

+pwsx4468  power 0.0815  0.5 -> 0.285  Inexact Rounded

+pwsx4469  power 0.816  0.5 -> 0.903  Inexact Rounded

+pwsx4470  power 0.0816  0.5 -> 0.286  Inexact Rounded

+pwsx4471  power 0.817  0.5 -> 0.904  Inexact Rounded

+pwsx4472  power 0.0817  0.5 -> 0.286  Inexact Rounded

+pwsx4473  power 0.818  0.5 -> 0.904  Inexact Rounded

+pwsx4474  power 0.0818  0.5 -> 0.286  Inexact Rounded

+pwsx4475  power 0.819  0.5 -> 0.905  Inexact Rounded

+pwsx4476  power 0.0819  0.5 -> 0.286  Inexact Rounded

+pwsx4477  power 0.821  0.5 -> 0.906  Inexact Rounded

+pwsx4478  power 0.0821  0.5 -> 0.287  Inexact Rounded

+pwsx4479  power 0.822  0.5 -> 0.907  Inexact Rounded

+pwsx4480  power 0.0822  0.5 -> 0.287  Inexact Rounded

+pwsx4481  power 0.823  0.5 -> 0.907  Inexact Rounded

+pwsx4482  power 0.0823  0.5 -> 0.287  Inexact Rounded

+pwsx4483  power 0.824  0.5 -> 0.908  Inexact Rounded

+pwsx4484  power 0.0824  0.5 -> 0.287  Inexact Rounded

+pwsx4485  power 0.825  0.5 -> 0.908  Inexact Rounded

+pwsx4486  power 0.0825  0.5 -> 0.287  Inexact Rounded

+pwsx4487  power 0.826  0.5 -> 0.909  Inexact Rounded

+pwsx4488  power 0.0826  0.5 -> 0.287  Inexact Rounded

+pwsx4489  power 0.827  0.5 -> 0.909  Inexact Rounded

+pwsx4490  power 0.0827  0.5 -> 0.288  Inexact Rounded

+pwsx4491  power 0.828  0.5 -> 0.910  Inexact Rounded

+pwsx4492  power 0.0828  0.5 -> 0.288  Inexact Rounded

+pwsx4493  power 0.829  0.5 -> 0.910  Inexact Rounded

+pwsx4494  power 0.0829  0.5 -> 0.288  Inexact Rounded

+pwsx4495  power 0.831  0.5 -> 0.912  Inexact Rounded

+pwsx4496  power 0.0831  0.5 -> 0.288  Inexact Rounded

+pwsx4497  power 0.832  0.5 -> 0.912  Inexact Rounded

+pwsx4498  power 0.0832  0.5 -> 0.288  Inexact Rounded

+pwsx4499  power 0.833  0.5 -> 0.913  Inexact Rounded

+pwsx4500  power 0.0833  0.5 -> 0.289  Inexact Rounded

+pwsx4501  power 0.834  0.5 -> 0.913  Inexact Rounded

+pwsx4502  power 0.0834  0.5 -> 0.289  Inexact Rounded

+pwsx4503  power 0.835  0.5 -> 0.914  Inexact Rounded

+pwsx4504  power 0.0835  0.5 -> 0.289  Inexact Rounded

+pwsx4505  power 0.836  0.5 -> 0.914  Inexact Rounded

+pwsx4506  power 0.0836  0.5 -> 0.289  Inexact Rounded

+pwsx4507  power 0.837  0.5 -> 0.915  Inexact Rounded

+pwsx4508  power 0.0837  0.5 -> 0.289  Inexact Rounded

+pwsx4509  power 0.838  0.5 -> 0.915  Inexact Rounded

+pwsx4510  power 0.0838  0.5 -> 0.289  Inexact Rounded

+pwsx4511  power 0.839  0.5 -> 0.916  Inexact Rounded

+pwsx4512  power 0.0839  0.5 -> 0.290  Inexact Rounded

+pwsx4513  power 0.841  0.5 -> 0.917  Inexact Rounded

+pwsx4514  power 0.0841  0.5 -> 0.290  Inexact Rounded

+pwsx4515  power 0.842  0.5 -> 0.918  Inexact Rounded

+pwsx4516  power 0.0842  0.5 -> 0.290  Inexact Rounded

+pwsx4517  power 0.843  0.5 -> 0.918  Inexact Rounded

+pwsx4518  power 0.0843  0.5 -> 0.290  Inexact Rounded

+pwsx4519  power 0.844  0.5 -> 0.919  Inexact Rounded

+pwsx4520  power 0.0844  0.5 -> 0.291  Inexact Rounded

+pwsx4521  power 0.845  0.5 -> 0.919  Inexact Rounded

+pwsx4522  power 0.0845  0.5 -> 0.291  Inexact Rounded

+pwsx4523  power 0.846  0.5 -> 0.920  Inexact Rounded

+pwsx4524  power 0.0846  0.5 -> 0.291  Inexact Rounded

+pwsx4525  power 0.847  0.5 -> 0.920  Inexact Rounded

+pwsx4526  power 0.0847  0.5 -> 0.291  Inexact Rounded

+pwsx4527  power 0.848  0.5 -> 0.921  Inexact Rounded

+pwsx4528  power 0.0848  0.5 -> 0.291  Inexact Rounded

+pwsx4529  power 0.849  0.5 -> 0.921  Inexact Rounded

+pwsx4530  power 0.0849  0.5 -> 0.291  Inexact Rounded

+pwsx4531  power 0.851  0.5 -> 0.922  Inexact Rounded

+pwsx4532  power 0.0851  0.5 -> 0.292  Inexact Rounded

+pwsx4533  power 0.852  0.5 -> 0.923  Inexact Rounded

+pwsx4534  power 0.0852  0.5 -> 0.292  Inexact Rounded

+pwsx4535  power 0.853  0.5 -> 0.924  Inexact Rounded

+pwsx4536  power 0.0853  0.5 -> 0.292  Inexact Rounded

+pwsx4537  power 0.854  0.5 -> 0.924  Inexact Rounded

+pwsx4538  power 0.0854  0.5 -> 0.292  Inexact Rounded

+pwsx4539  power 0.855  0.5 -> 0.925  Inexact Rounded

+pwsx4540  power 0.0855  0.5 -> 0.292  Inexact Rounded

+pwsx4541  power 0.856  0.5 -> 0.925  Inexact Rounded

+pwsx4542  power 0.0856  0.5 -> 0.293  Inexact Rounded

+pwsx4543  power 0.857  0.5 -> 0.926  Inexact Rounded

+pwsx4544  power 0.0857  0.5 -> 0.293  Inexact Rounded

+pwsx4545  power 0.858  0.5 -> 0.926  Inexact Rounded

+pwsx4546  power 0.0858  0.5 -> 0.293  Inexact Rounded

+pwsx4547  power 0.859  0.5 -> 0.927  Inexact Rounded

+pwsx4548  power 0.0859  0.5 -> 0.293  Inexact Rounded

+pwsx4549  power 0.861  0.5 -> 0.928  Inexact Rounded

+pwsx4550  power 0.0861  0.5 -> 0.293  Inexact Rounded

+pwsx4551  power 0.862  0.5 -> 0.928  Inexact Rounded

+pwsx4552  power 0.0862  0.5 -> 0.294  Inexact Rounded

+pwsx4553  power 0.863  0.5 -> 0.929  Inexact Rounded

+pwsx4554  power 0.0863  0.5 -> 0.294  Inexact Rounded

+pwsx4555  power 0.864  0.5 -> 0.930  Inexact Rounded

+pwsx4556  power 0.0864  0.5 -> 0.294  Inexact Rounded

+pwsx4557  power 0.865  0.5 -> 0.930  Inexact Rounded

+pwsx4558  power 0.0865  0.5 -> 0.294  Inexact Rounded

+pwsx4559  power 0.866  0.5 -> 0.931  Inexact Rounded

+pwsx4560  power 0.0866  0.5 -> 0.294  Inexact Rounded

+pwsx4561  power 0.867  0.5 -> 0.931  Inexact Rounded

+pwsx4562  power 0.0867  0.5 -> 0.294  Inexact Rounded

+pwsx4563  power 0.868  0.5 -> 0.932  Inexact Rounded

+pwsx4564  power 0.0868  0.5 -> 0.295  Inexact Rounded

+pwsx4565  power 0.869  0.5 -> 0.932  Inexact Rounded

+pwsx4566  power 0.0869  0.5 -> 0.295  Inexact Rounded

+pwsx4567  power 0.871  0.5 -> 0.933  Inexact Rounded

+pwsx4568  power 0.0871  0.5 -> 0.295  Inexact Rounded

+pwsx4569  power 0.872  0.5 -> 0.934  Inexact Rounded

+pwsx4570  power 0.0872  0.5 -> 0.295  Inexact Rounded

+pwsx4571  power 0.873  0.5 -> 0.934  Inexact Rounded

+pwsx4572  power 0.0873  0.5 -> 0.295  Inexact Rounded

+pwsx4573  power 0.874  0.5 -> 0.935  Inexact Rounded

+pwsx4574  power 0.0874  0.5 -> 0.296  Inexact Rounded

+pwsx4575  power 0.875  0.5 -> 0.935  Inexact Rounded

+pwsx4576  power 0.0875  0.5 -> 0.296  Inexact Rounded

+pwsx4577  power 0.876  0.5 -> 0.936  Inexact Rounded

+pwsx4578  power 0.0876  0.5 -> 0.296  Inexact Rounded

+pwsx4579  power 0.877  0.5 -> 0.936  Inexact Rounded

+pwsx4580  power 0.0877  0.5 -> 0.296  Inexact Rounded

+pwsx4581  power 0.878  0.5 -> 0.937  Inexact Rounded

+pwsx4582  power 0.0878  0.5 -> 0.296  Inexact Rounded

+pwsx4583  power 0.879  0.5 -> 0.938  Inexact Rounded

+pwsx4584  power 0.0879  0.5 -> 0.296  Inexact Rounded

+pwsx4585  power 0.881  0.5 -> 0.939  Inexact Rounded

+pwsx4586  power 0.0881  0.5 -> 0.297  Inexact Rounded

+pwsx4587  power 0.882  0.5 -> 0.939  Inexact Rounded

+pwsx4588  power 0.0882  0.5 -> 0.297  Inexact Rounded

+pwsx4589  power 0.883  0.5 -> 0.940  Inexact Rounded

+pwsx4590  power 0.0883  0.5 -> 0.297  Inexact Rounded

+pwsx4591  power 0.884  0.5 -> 0.940  Inexact Rounded

+pwsx4592  power 0.0884  0.5 -> 0.297  Inexact Rounded

+pwsx4593  power 0.885  0.5 -> 0.941  Inexact Rounded

+pwsx4594  power 0.0885  0.5 -> 0.297  Inexact Rounded

+pwsx4595  power 0.886  0.5 -> 0.941  Inexact Rounded

+pwsx4596  power 0.0886  0.5 -> 0.298  Inexact Rounded

+pwsx4597  power 0.887  0.5 -> 0.942  Inexact Rounded

+pwsx4598  power 0.0887  0.5 -> 0.298  Inexact Rounded

+pwsx4599  power 0.888  0.5 -> 0.942  Inexact Rounded

+pwsx4600  power 0.0888  0.5 -> 0.298  Inexact Rounded

+pwsx4601  power 0.889  0.5 -> 0.943  Inexact Rounded

+pwsx4602  power 0.0889  0.5 -> 0.298  Inexact Rounded

+pwsx4603  power 0.891  0.5 -> 0.944  Inexact Rounded

+pwsx4604  power 0.0891  0.5 -> 0.298  Inexact Rounded

+pwsx4605  power 0.892  0.5 -> 0.944  Inexact Rounded

+pwsx4606  power 0.0892  0.5 -> 0.299  Inexact Rounded

+pwsx4607  power 0.893  0.5 -> 0.945  Inexact Rounded

+pwsx4608  power 0.0893  0.5 -> 0.299  Inexact Rounded

+pwsx4609  power 0.894  0.5 -> 0.946  Inexact Rounded

+pwsx4610  power 0.0894  0.5 -> 0.299  Inexact Rounded

+pwsx4611  power 0.895  0.5 -> 0.946  Inexact Rounded

+pwsx4612  power 0.0895  0.5 -> 0.299  Inexact Rounded

+pwsx4613  power 0.896  0.5 -> 0.947  Inexact Rounded

+pwsx4614  power 0.0896  0.5 -> 0.299  Inexact Rounded

+pwsx4615  power 0.897  0.5 -> 0.947  Inexact Rounded

+pwsx4616  power 0.0897  0.5 -> 0.299  Inexact Rounded

+pwsx4617  power 0.898  0.5 -> 0.948  Inexact Rounded

+pwsx4618  power 0.0898  0.5 -> 0.300  Inexact Rounded

+pwsx4619  power 0.899  0.5 -> 0.948  Inexact Rounded

+pwsx4620  power 0.0899  0.5 -> 0.300  Inexact Rounded

+pwsx4621  power 0.901  0.5 -> 0.949  Inexact Rounded

+pwsx4622  power 0.0901  0.5 -> 0.300  Inexact Rounded

+pwsx4623  power 0.902  0.5 -> 0.950  Inexact Rounded

+pwsx4624  power 0.0902  0.5 -> 0.300  Inexact Rounded

+pwsx4625  power 0.903  0.5 -> 0.950  Inexact Rounded

+pwsx4626  power 0.0903  0.5 -> 0.300  Inexact Rounded

+pwsx4627  power 0.904  0.5 -> 0.951  Inexact Rounded

+pwsx4628  power 0.0904  0.5 -> 0.301  Inexact Rounded

+pwsx4629  power 0.905  0.5 -> 0.951  Inexact Rounded

+pwsx4630  power 0.0905  0.5 -> 0.301  Inexact Rounded

+pwsx4631  power 0.906  0.5 -> 0.952  Inexact Rounded

+pwsx4632  power 0.0906  0.5 -> 0.301  Inexact Rounded

+pwsx4633  power 0.907  0.5 -> 0.952  Inexact Rounded

+pwsx4634  power 0.0907  0.5 -> 0.301  Inexact Rounded

+pwsx4635  power 0.908  0.5 -> 0.953  Inexact Rounded

+pwsx4636  power 0.0908  0.5 -> 0.301  Inexact Rounded

+pwsx4637  power 0.909  0.5 -> 0.953  Inexact Rounded

+pwsx4638  power 0.0909  0.5 -> 0.301  Inexact Rounded

+pwsx4639  power 0.911  0.5 -> 0.954  Inexact Rounded

+pwsx4640  power 0.0911  0.5 -> 0.302  Inexact Rounded

+pwsx4641  power 0.912  0.5 -> 0.955  Inexact Rounded

+pwsx4642  power 0.0912  0.5 -> 0.302  Inexact Rounded

+pwsx4643  power 0.913  0.5 -> 0.956  Inexact Rounded

+pwsx4644  power 0.0913  0.5 -> 0.302  Inexact Rounded

+pwsx4645  power 0.914  0.5 -> 0.956  Inexact Rounded

+pwsx4646  power 0.0914  0.5 -> 0.302  Inexact Rounded

+pwsx4647  power 0.915  0.5 -> 0.957  Inexact Rounded

+pwsx4648  power 0.0915  0.5 -> 0.302  Inexact Rounded

+pwsx4649  power 0.916  0.5 -> 0.957  Inexact Rounded

+pwsx4650  power 0.0916  0.5 -> 0.303  Inexact Rounded

+pwsx4651  power 0.917  0.5 -> 0.958  Inexact Rounded

+pwsx4652  power 0.0917  0.5 -> 0.303  Inexact Rounded

+pwsx4653  power 0.918  0.5 -> 0.958  Inexact Rounded

+pwsx4654  power 0.0918  0.5 -> 0.303  Inexact Rounded

+pwsx4655  power 0.919  0.5 -> 0.959  Inexact Rounded

+pwsx4656  power 0.0919  0.5 -> 0.303  Inexact Rounded

+pwsx4657  power 0.921  0.5 -> 0.960  Inexact Rounded

+pwsx4658  power 0.0921  0.5 -> 0.303  Inexact Rounded

+pwsx4659  power 0.922  0.5 -> 0.960  Inexact Rounded

+pwsx4660  power 0.0922  0.5 -> 0.304  Inexact Rounded

+pwsx4661  power 0.923  0.5 -> 0.961  Inexact Rounded

+pwsx4662  power 0.0923  0.5 -> 0.304  Inexact Rounded

+pwsx4663  power 0.924  0.5 -> 0.961  Inexact Rounded

+pwsx4664  power 0.0924  0.5 -> 0.304  Inexact Rounded

+pwsx4665  power 0.925  0.5 -> 0.962  Inexact Rounded

+pwsx4666  power 0.0925  0.5 -> 0.304  Inexact Rounded

+pwsx4667  power 0.926  0.5 -> 0.962  Inexact Rounded

+pwsx4668  power 0.0926  0.5 -> 0.304  Inexact Rounded

+pwsx4669  power 0.927  0.5 -> 0.963  Inexact Rounded

+pwsx4670  power 0.0927  0.5 -> 0.304  Inexact Rounded

+pwsx4671  power 0.928  0.5 -> 0.963  Inexact Rounded

+pwsx4672  power 0.0928  0.5 -> 0.305  Inexact Rounded

+pwsx4673  power 0.929  0.5 -> 0.964  Inexact Rounded

+pwsx4674  power 0.0929  0.5 -> 0.305  Inexact Rounded

+pwsx4675  power 0.931  0.5 -> 0.965  Inexact Rounded

+pwsx4676  power 0.0931  0.5 -> 0.305  Inexact Rounded

+pwsx4677  power 0.932  0.5 -> 0.965  Inexact Rounded

+pwsx4678  power 0.0932  0.5 -> 0.305  Inexact Rounded

+pwsx4679  power 0.933  0.5 -> 0.966  Inexact Rounded

+pwsx4680  power 0.0933  0.5 -> 0.305  Inexact Rounded

+pwsx4681  power 0.934  0.5 -> 0.966  Inexact Rounded

+pwsx4682  power 0.0934  0.5 -> 0.306  Inexact Rounded

+pwsx4683  power 0.935  0.5 -> 0.967  Inexact Rounded

+pwsx4684  power 0.0935  0.5 -> 0.306  Inexact Rounded

+pwsx4685  power 0.936  0.5 -> 0.967  Inexact Rounded

+pwsx4686  power 0.0936  0.5 -> 0.306  Inexact Rounded

+pwsx4687  power 0.937  0.5 -> 0.968  Inexact Rounded

+pwsx4688  power 0.0937  0.5 -> 0.306  Inexact Rounded

+pwsx4689  power 0.938  0.5 -> 0.969  Inexact Rounded

+pwsx4690  power 0.0938  0.5 -> 0.306  Inexact Rounded

+pwsx4691  power 0.939  0.5 -> 0.969  Inexact Rounded

+pwsx4692  power 0.0939  0.5 -> 0.306  Inexact Rounded

+pwsx4693  power 0.941  0.5 -> 0.970  Inexact Rounded

+pwsx4694  power 0.0941  0.5 -> 0.307  Inexact Rounded

+pwsx4695  power 0.942  0.5 -> 0.971  Inexact Rounded

+pwsx4696  power 0.0942  0.5 -> 0.307  Inexact Rounded

+pwsx4697  power 0.943  0.5 -> 0.971  Inexact Rounded

+pwsx4698  power 0.0943  0.5 -> 0.307  Inexact Rounded

+pwsx4699  power 0.944  0.5 -> 0.972  Inexact Rounded

+pwsx4700  power 0.0944  0.5 -> 0.307  Inexact Rounded

+pwsx4701  power 0.945  0.5 -> 0.972  Inexact Rounded

+pwsx4702  power 0.0945  0.5 -> 0.307  Inexact Rounded

+pwsx4703  power 0.946  0.5 -> 0.973  Inexact Rounded

+pwsx4704  power 0.0946  0.5 -> 0.308  Inexact Rounded

+pwsx4705  power 0.947  0.5 -> 0.973  Inexact Rounded

+pwsx4706  power 0.0947  0.5 -> 0.308  Inexact Rounded

+pwsx4707  power 0.948  0.5 -> 0.974  Inexact Rounded

+pwsx4708  power 0.0948  0.5 -> 0.308  Inexact Rounded

+pwsx4709  power 0.949  0.5 -> 0.974  Inexact Rounded

+pwsx4710  power 0.0949  0.5 -> 0.308  Inexact Rounded

+pwsx4711  power 0.951  0.5 -> 0.975  Inexact Rounded

+pwsx4712  power 0.0951  0.5 -> 0.308  Inexact Rounded

+pwsx4713  power 0.952  0.5 -> 0.976  Inexact Rounded

+pwsx4714  power 0.0952  0.5 -> 0.309  Inexact Rounded

+pwsx4715  power 0.953  0.5 -> 0.976  Inexact Rounded

+pwsx4716  power 0.0953  0.5 -> 0.309  Inexact Rounded

+pwsx4717  power 0.954  0.5 -> 0.977  Inexact Rounded

+pwsx4718  power 0.0954  0.5 -> 0.309  Inexact Rounded

+pwsx4719  power 0.955  0.5 -> 0.977  Inexact Rounded

+pwsx4720  power 0.0955  0.5 -> 0.309  Inexact Rounded

+pwsx4721  power 0.956  0.5 -> 0.978  Inexact Rounded

+pwsx4722  power 0.0956  0.5 -> 0.309  Inexact Rounded

+pwsx4723  power 0.957  0.5 -> 0.978  Inexact Rounded

+pwsx4724  power 0.0957  0.5 -> 0.309  Inexact Rounded

+pwsx4725  power 0.958  0.5 -> 0.979  Inexact Rounded

+pwsx4726  power 0.0958  0.5 -> 0.310  Inexact Rounded

+pwsx4727  power 0.959  0.5 -> 0.979  Inexact Rounded

+pwsx4728  power 0.0959  0.5 -> 0.310  Inexact Rounded

+pwsx4729  power 0.961  0.5 -> 0.980  Inexact Rounded

+pwsx4730  power 0.0961  0.5 -> 0.310  Inexact Rounded

+pwsx4731  power 0.962  0.5 -> 0.981  Inexact Rounded

+pwsx4732  power 0.0962  0.5 -> 0.310  Inexact Rounded

+pwsx4733  power 0.963  0.5 -> 0.981  Inexact Rounded

+pwsx4734  power 0.0963  0.5 -> 0.310  Inexact Rounded

+pwsx4735  power 0.964  0.5 -> 0.982  Inexact Rounded

+pwsx4736  power 0.0964  0.5 -> 0.310  Inexact Rounded

+pwsx4737  power 0.965  0.5 -> 0.982  Inexact Rounded

+pwsx4738  power 0.0965  0.5 -> 0.311  Inexact Rounded

+pwsx4739  power 0.966  0.5 -> 0.983  Inexact Rounded

+pwsx4740  power 0.0966  0.5 -> 0.311  Inexact Rounded

+pwsx4741  power 0.967  0.5 -> 0.983  Inexact Rounded

+pwsx4742  power 0.0967  0.5 -> 0.311  Inexact Rounded

+pwsx4743  power 0.968  0.5 -> 0.984  Inexact Rounded

+pwsx4744  power 0.0968  0.5 -> 0.311  Inexact Rounded

+pwsx4745  power 0.969  0.5 -> 0.984  Inexact Rounded

+pwsx4746  power 0.0969  0.5 -> 0.311  Inexact Rounded

+pwsx4747  power 0.971  0.5 -> 0.985  Inexact Rounded

+pwsx4748  power 0.0971  0.5 -> 0.312  Inexact Rounded

+pwsx4749  power 0.972  0.5 -> 0.986  Inexact Rounded

+pwsx4750  power 0.0972  0.5 -> 0.312  Inexact Rounded

+pwsx4751  power 0.973  0.5 -> 0.986  Inexact Rounded

+pwsx4752  power 0.0973  0.5 -> 0.312  Inexact Rounded

+pwsx4753  power 0.974  0.5 -> 0.987  Inexact Rounded

+pwsx4754  power 0.0974  0.5 -> 0.312  Inexact Rounded

+pwsx4755  power 0.975  0.5 -> 0.987  Inexact Rounded

+pwsx4756  power 0.0975  0.5 -> 0.312  Inexact Rounded

+pwsx4757  power 0.976  0.5 -> 0.988  Inexact Rounded

+pwsx4758  power 0.0976  0.5 -> 0.312  Inexact Rounded

+pwsx4759  power 0.977  0.5 -> 0.988  Inexact Rounded

+pwsx4760  power 0.0977  0.5 -> 0.313  Inexact Rounded

+pwsx4761  power 0.978  0.5 -> 0.989  Inexact Rounded

+pwsx4762  power 0.0978  0.5 -> 0.313  Inexact Rounded

+pwsx4763  power 0.979  0.5 -> 0.989  Inexact Rounded

+pwsx4764  power 0.0979  0.5 -> 0.313  Inexact Rounded

+pwsx4765  power 0.981  0.5 -> 0.990  Inexact Rounded

+pwsx4766  power 0.0981  0.5 -> 0.313  Inexact Rounded

+pwsx4767  power 0.982  0.5 -> 0.991  Inexact Rounded

+pwsx4768  power 0.0982  0.5 -> 0.313  Inexact Rounded

+pwsx4769  power 0.983  0.5 -> 0.991  Inexact Rounded

+pwsx4770  power 0.0983  0.5 -> 0.314  Inexact Rounded

+pwsx4771  power 0.984  0.5 -> 0.992  Inexact Rounded

+pwsx4772  power 0.0984  0.5 -> 0.314  Inexact Rounded

+pwsx4773  power 0.985  0.5 -> 0.992  Inexact Rounded

+pwsx4774  power 0.0985  0.5 -> 0.314  Inexact Rounded

+pwsx4775  power 0.986  0.5 -> 0.993  Inexact Rounded

+pwsx4776  power 0.0986  0.5 -> 0.314  Inexact Rounded

+pwsx4777  power 0.987  0.5 -> 0.993  Inexact Rounded

+pwsx4778  power 0.0987  0.5 -> 0.314  Inexact Rounded

+pwsx4779  power 0.988  0.5 -> 0.994  Inexact Rounded

+pwsx4780  power 0.0988  0.5 -> 0.314  Inexact Rounded

+pwsx4781  power 0.989  0.5 -> 0.994  Inexact Rounded

+pwsx4782  power 0.0989  0.5 -> 0.314  Inexact Rounded

+pwsx4783  power 0.991  0.5 -> 0.995  Inexact Rounded

+pwsx4784  power 0.0991  0.5 -> 0.315  Inexact Rounded

+pwsx4785  power 0.992  0.5 -> 0.996  Inexact Rounded

+pwsx4786  power 0.0992  0.5 -> 0.315  Inexact Rounded

+pwsx4787  power 0.993  0.5 -> 0.996  Inexact Rounded

+pwsx4788  power 0.0993  0.5 -> 0.315  Inexact Rounded

+pwsx4789  power 0.994  0.5 -> 0.997  Inexact Rounded

+pwsx4790  power 0.0994  0.5 -> 0.315  Inexact Rounded

+pwsx4791  power 0.995  0.5 -> 0.997  Inexact Rounded

+pwsx4792  power 0.0995  0.5 -> 0.315  Inexact Rounded

+pwsx4793  power 0.996  0.5 -> 0.998  Inexact Rounded

+pwsx4794  power 0.0996  0.5 -> 0.316  Inexact Rounded

+pwsx4795  power 0.997  0.5 -> 0.998  Inexact Rounded

+pwsx4796  power 0.0997  0.5 -> 0.316  Inexact Rounded

+pwsx4797  power 0.998  0.5 -> 0.999  Inexact Rounded

+pwsx4798  power 0.0998  0.5 -> 0.316  Inexact Rounded

+pwsx4799  power 0.999  0.5 -> 0.999  Inexact Rounded

+pwsx4800  power 0.0999  0.5 -> 0.316  Inexact Rounded

+

+-- A group of precision 4 tests where Hull & Abrham adjustments are

+-- needed in some cases (both up and down) [see Hull1985b]

+rounding:    half_even

+maxExponent: 999

+minexponent: -999

+precision:   4

+pwsx5001  power 0.0118   0.5 -> 0.1086  Inexact Rounded

+pwsx5002  power 0.119    0.5 -> 0.3450  Inexact Rounded

+pwsx5003  power 0.0119   0.5 -> 0.1091  Inexact Rounded

+pwsx5004  power 0.121    0.5 -> 0.3479  Inexact Rounded

+pwsx5005  power 0.0121   0.5 -> 0.1100  Inexact Rounded

+pwsx5006  power 0.122    0.5 -> 0.3493  Inexact Rounded

+pwsx5007  power 0.0122   0.5 -> 0.1105  Inexact Rounded

+pwsx5008  power 0.123    0.5 -> 0.3507  Inexact Rounded

+pwsx5009  power 0.494    0.5 -> 0.7029  Inexact Rounded

+pwsx5010  power 0.0669   0.5 -> 0.2587  Inexact Rounded

+pwsx5011  power 0.9558   0.5 -> 0.9777  Inexact Rounded

+pwsx5012  power 0.9348   0.5 -> 0.9669  Inexact Rounded

+pwsx5013  power 0.9345   0.5 -> 0.9667  Inexact Rounded

+pwsx5014  power 0.09345  0.5 -> 0.3057  Inexact Rounded

+pwsx5015  power 0.9346   0.5 -> 0.9667  Inexact Rounded

+pwsx5016  power 0.09346  0.5 -> 0.3057  Inexact Rounded

+pwsx5017  power 0.9347   0.5 -> 0.9668  Inexact Rounded

+

+-- examples from decArith

+precision: 9

+pwsx700  power  0        0.5 -> '0'

+pwsx701  power  -0       0.5 -> '0'

+pwsx702  power  0.39     0.5 -> 0.624499800    Inexact Rounded

+pwsx703  power  100      0.5 -> '10.0000000'   Inexact Rounded

+pwsx704  power  1.00     0.5 -> '1.00000000'   Inexact Rounded

+pwsx705  power  7        0.5 -> '2.64575131'   Inexact Rounded

+pwsx706  power  10       0.5 -> 3.16227766     Inexact Rounded

+

+-- some one-offs

+precision: 9

+pwsx711  power  0.1      0.5 -> 0.316227766    Inexact Rounded

+pwsx712  power  0.2      0.5 -> 0.447213595    Inexact Rounded

+pwsx713  power  0.3      0.5 -> 0.547722558    Inexact Rounded

+pwsx714  power  0.4      0.5 -> 0.632455532    Inexact Rounded

+pwsx715  power  0.5      0.5 -> 0.707106781    Inexact Rounded

+pwsx716  power  0.6      0.5 -> 0.774596669    Inexact Rounded

+pwsx717  power  0.7      0.5 -> 0.836660027    Inexact Rounded

+pwsx718  power  0.8      0.5 -> 0.894427191    Inexact Rounded

+pwsx719  power  0.9      0.5 -> 0.948683298    Inexact Rounded

+precision: 10               -- note no normalizatoin here

+pwsx720  power +0.1      0.5 -> 0.3162277660   Inexact Rounded

+precision: 11

+pwsx721  power +0.1      0.5 -> 0.31622776602  Inexact Rounded

+precision: 12

+pwsx722  power +0.1      0.5 -> 0.316227766017 Inexact Rounded

+precision: 9

+pwsx723  power  0.39     0.5 -> 0.624499800    Inexact Rounded

+precision: 15

+pwsx724  power  0.39     0.5 -> 0.624499799839840 Inexact Rounded

+

+-- discussion cases

+precision: 7

+pwsx731  power     9    0.5 -> 3.000000  Inexact Rounded

+pwsx732  power   100    0.5 -> 10.00000  Inexact Rounded

+pwsx733  power   123    0.5 -> 11.09054  Inexact Rounded

+pwsx734  power   144    0.5 -> 12.00000  Inexact Rounded

+pwsx735  power   156    0.5 -> 12.49000  Inexact Rounded

+pwsx736  power 10000    0.5 -> 100.0000  Inexact Rounded

+

+-- values close to overflow (if there were input rounding)

+maxexponent: 99

+minexponent: -99

+precision: 5

+pwsx760  power  9.9997E+99    0.5 -> 9.9998E+49 Inexact Rounded

+pwsx761  power  9.9998E+99    0.5 -> 9.9999E+49 Inexact Rounded

+pwsx762  power  9.9999E+99    0.5 -> 9.9999E+49 Inexact Rounded

+pwsx763  power  9.99991E+99   0.5 -> 1.0000E+50 Inexact Rounded

+pwsx764  power  9.99994E+99   0.5 -> 1.0000E+50 Inexact Rounded

+pwsx765  power  9.99995E+99   0.5 -> 1.0000E+50 Inexact Rounded

+pwsx766  power  9.99999E+99   0.5 -> 1.0000E+50 Inexact Rounded

+precision: 9

+pwsx770  power  9.9997E+99    0.5 -> 9.99985000E+49  Inexact Rounded

+pwsx771  power  9.9998E+99    0.5 -> 9.99990000E+49  Inexact Rounded

+pwsx772  power  9.9999E+99    0.5 -> 9.99995000E+49  Inexact Rounded

+pwsx773  power  9.99991E+99   0.5 -> 9.99995500E+49  Inexact Rounded

+pwsx774  power  9.99994E+99   0.5 -> 9.99997000E+49  Inexact Rounded

+pwsx775  power  9.99995E+99   0.5 -> 9.99997500E+49  Inexact Rounded

+pwsx776  power  9.99999E+99   0.5 -> 9.99999500E+49  Inexact Rounded

+precision: 20

+pwsx780  power  9.9997E+99    0.5 -> '9.9998499988749831247E+49' Inexact Rounded

+pwsx781  power  9.9998E+99    0.5 -> '9.9998999994999949999E+49' Inexact Rounded

+pwsx782  power  9.9999E+99    0.5 -> '9.9999499998749993750E+49' Inexact Rounded

+pwsx783  power  9.99991E+99   0.5 -> '9.9999549998987495444E+49' Inexact Rounded

+pwsx784  power  9.99994E+99   0.5 -> '9.9999699999549998650E+49' Inexact Rounded

+pwsx785  power  9.99995E+99   0.5 -> '9.9999749999687499219E+49' Inexact Rounded

+pwsx786  power  9.99999E+99   0.5 -> '9.9999949999987499994E+49' Inexact Rounded

+

+-- subnormals and underflows [these can only result when eMax is < digits+1]

+-- Etiny = -(Emax + (precision-1))

+-- start with subnormal operands and normal results

+maxexponent: 9

+minexponent: -9

+precision: 9                -- Etiny=-17

+pwsx800  power  1E-17    0.5 -> 3.16227766E-9 Inexact Rounded

+pwsx801  power 10E-17    0.5 -> 1.00000000E-8 Inexact Rounded

+precision: 10               -- Etiny=-18

+pwsx802  power 10E-18    0.5 -> 3.162277660E-9 Inexact Rounded

+pwsx803  power  1E-18    0.5 -> 1.000000000E-9 Inexact Rounded

+

+precision: 11               -- Etiny=-19

+pwsx804  power  1E-19    0.5 -> 3.162277660E-10 Underflow Subnormal Inexact Rounded

+-- The next test should be skipped for decNumber

+pwsx805  power 10E-19    0.5 -> 1.0000000000E-9 Inexact Rounded

+precision: 12               -- Etiny=-20

+pwsx806  power 10E-20    0.5 -> 3.1622776602E-10 Underflow Subnormal Inexact Rounded

+pwsx807  power  1E-20    0.5 -> 1.0000000000E-10 Underflow Subnormal Inexact Rounded

+

+precision: 13               -- Etiny=-21

+pwsx808  power  1E-21    0.5 -> 3.1622776602E-11 Underflow Subnormal Inexact Rounded

+pwsx809  power 10E-21    0.5 -> 1.00000000000E-10 Underflow Subnormal Inexact Rounded

+precision: 14               -- Etiny=-22

+pwsx810  power  1E-21    0.5 -> 3.16227766017E-11 Underflow Subnormal Inexact Rounded

+pwsx811  power 10E-22    0.5 -> 3.16227766017E-11 Underflow Subnormal Inexact Rounded

+pwsx812  power  1E-22    0.5 -> 1.00000000000E-11 Underflow Subnormal Inexact Rounded

+

+

+-- special values

+maxexponent: 999

+minexponent: -999

+pwsx820  power   Inf     0.5 -> Infinity

+pwsx821  power  -Inf     0.5 -> NaN Invalid_operation

+pwsx822  power   NaN     0.5 -> NaN

+pwsx823  power  sNaN     0.5 -> NaN Invalid_operation

+-- propagating NaNs

+pwsx824  power  sNaN123  0.5 -> NaN123 Invalid_operation

+pwsx825  power -sNaN321  0.5 -> -NaN321 Invalid_operation

+pwsx826  power   NaN456  0.5 -> NaN456

+pwsx827  power  -NaN654  0.5 -> -NaN654

+pwsx828  power   NaN1    0.5 -> NaN1

+

+-- Null test

+pwsx900  power  #  0.5 -> NaN Invalid_operation