ddCopyNegate.decTest 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ------------------------------------------------------------------------
  2. -- ddCopyNegate.decTest -- quiet decDouble copy and negate --
  3. -- Copyright (c) IBM Corporation, 1981, 2008. All rights reserved. --
  4. ------------------------------------------------------------------------
  5. -- Please see the document "General Decimal Arithmetic Testcases" --
  6. -- at http://www2.hursley.ibm.com/decimal for the description of --
  7. -- these testcases. --
  8. -- --
  9. -- These testcases are experimental ('beta' versions), and they --
  10. -- may contain errors. They are offered on an as-is basis. In --
  11. -- particular, achieving the same results as the tests here is not --
  12. -- a guarantee that an implementation complies with any Standard --
  13. -- or specification. The tests are not exhaustive. --
  14. -- --
  15. -- Please send comments, suggestions, and corrections to the author: --
  16. -- Mike Cowlishaw, IBM Fellow --
  17. -- IBM UK, PO Box 31, Birmingham Road, Warwick CV34 5JL, UK --
  18. -- mfc@uk.ibm.com --
  19. ------------------------------------------------------------------------
  20. version: 2.59
  21. -- All operands and results are decDoubles.
  22. precision: 16
  23. maxExponent: 384
  24. minExponent: -383
  25. extended: 1
  26. clamp: 1
  27. rounding: half_even
  28. -- Sanity check
  29. ddcpn001 copynegate +7.50 -> -7.50
  30. -- Infinities
  31. ddcpn011 copynegate Infinity -> -Infinity
  32. ddcpn012 copynegate -Infinity -> Infinity
  33. -- NaNs, 0 payload
  34. ddcpn021 copynegate NaN -> -NaN
  35. ddcpn022 copynegate -NaN -> NaN
  36. ddcpn023 copynegate sNaN -> -sNaN
  37. ddcpn024 copynegate -sNaN -> sNaN
  38. -- NaNs, non-0 payload
  39. ddcpn031 copynegate NaN13 -> -NaN13
  40. ddcpn032 copynegate -NaN13 -> NaN13
  41. ddcpn033 copynegate sNaN13 -> -sNaN13
  42. ddcpn034 copynegate -sNaN13 -> sNaN13
  43. ddcpn035 copynegate NaN70 -> -NaN70
  44. ddcpn036 copynegate -NaN70 -> NaN70
  45. ddcpn037 copynegate sNaN101 -> -sNaN101
  46. ddcpn038 copynegate -sNaN101 -> sNaN101
  47. -- finites
  48. ddcpn101 copynegate 7 -> -7
  49. ddcpn102 copynegate -7 -> 7
  50. ddcpn103 copynegate 75 -> -75
  51. ddcpn104 copynegate -75 -> 75
  52. ddcpn105 copynegate 7.50 -> -7.50
  53. ddcpn106 copynegate -7.50 -> 7.50
  54. ddcpn107 copynegate 7.500 -> -7.500
  55. ddcpn108 copynegate -7.500 -> 7.500
  56. -- zeros
  57. ddcpn111 copynegate 0 -> -0
  58. ddcpn112 copynegate -0 -> 0
  59. ddcpn113 copynegate 0E+4 -> -0E+4
  60. ddcpn114 copynegate -0E+4 -> 0E+4
  61. ddcpn115 copynegate 0.0000 -> -0.0000
  62. ddcpn116 copynegate -0.0000 -> 0.0000
  63. ddcpn117 copynegate 0E-141 -> -0E-141
  64. ddcpn118 copynegate -0E-141 -> 0E-141
  65. -- full coefficients, alternating bits
  66. ddcpn121 copynegate 2682682682682682 -> -2682682682682682
  67. ddcpn122 copynegate -2682682682682682 -> 2682682682682682
  68. ddcpn123 copynegate 1341341341341341 -> -1341341341341341
  69. ddcpn124 copynegate -1341341341341341 -> 1341341341341341
  70. -- Nmax, Nmin, Ntiny
  71. ddcpn131 copynegate 9.999999999999999E+384 -> -9.999999999999999E+384
  72. ddcpn132 copynegate 1E-383 -> -1E-383
  73. ddcpn133 copynegate 1.000000000000000E-383 -> -1.000000000000000E-383
  74. ddcpn134 copynegate 1E-398 -> -1E-398
  75. ddcpn135 copynegate -1E-398 -> 1E-398
  76. ddcpn136 copynegate -1.000000000000000E-383 -> 1.000000000000000E-383
  77. ddcpn137 copynegate -1E-383 -> 1E-383
  78. ddcpn138 copynegate -9.999999999999999E+384 -> 9.999999999999999E+384