Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1 | # Copyright (c) 2004 Python Software Foundation. |
| 2 | # All rights reserved. |
| 3 | |
| 4 | # Written by Eric Price <eprice at tjhsst.edu> |
| 5 | # and Facundo Batista <facundo at taniquetil.com.ar> |
| 6 | # and Raymond Hettinger <python at rcn.com> |
Fred Drake | 1f34eb1 | 2004-07-01 14:28:36 +0000 | [diff] [blame] | 7 | # and Aahz <aahz at pobox.com> |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 8 | # and Tim Peters |
| 9 | |
Raymond Hettinger | 27dbcf2 | 2004-08-19 22:39:55 +0000 | [diff] [blame] | 10 | # This module is currently Py2.3 compatible and should be kept that way |
| 11 | # unless a major compelling advantage arises. IOW, 2.3 compatibility is |
| 12 | # strongly preferred, but not guaranteed. |
| 13 | |
| 14 | # Also, this module should be kept in sync with the latest updates of |
| 15 | # the IBM specification as it evolves. Those updates will be treated |
| 16 | # as bug fixes (deviation from the spec is a compatibility, usability |
| 17 | # bug) and will be backported. At this point the spec is stabilizing |
| 18 | # and the updates are becoming fewer, smaller, and less significant. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 19 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 20 | """ |
| 21 | This is a Py2.3 implementation of decimal floating point arithmetic based on |
| 22 | the General Decimal Arithmetic Specification: |
| 23 | |
| 24 | www2.hursley.ibm.com/decimal/decarith.html |
| 25 | |
Raymond Hettinger | 0ea241e | 2004-07-04 13:53:24 +0000 | [diff] [blame] | 26 | and IEEE standard 854-1987: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 27 | |
| 28 | www.cs.berkeley.edu/~ejr/projects/754/private/drafts/854-1987/dir.html |
| 29 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 30 | Decimal floating point has finite precision with arbitrarily large bounds. |
| 31 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 32 | The purpose of this module is to support arithmetic using familiar |
| 33 | "schoolhouse" rules and to avoid some of the tricky representation |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 34 | issues associated with binary floating point. The package is especially |
| 35 | useful for financial applications or for contexts where users have |
| 36 | expectations that are at odds with binary floating point (for instance, |
| 37 | in binary floating point, 1.00 % 0.1 gives 0.09999999999999995 instead |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 38 | of the expected Decimal('0.00') returned by decimal floating point). |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 39 | |
| 40 | Here are some examples of using the decimal module: |
| 41 | |
| 42 | >>> from decimal import * |
Raymond Hettinger | bd7f76d | 2004-07-08 00:49:18 +0000 | [diff] [blame] | 43 | >>> setcontext(ExtendedContext) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 44 | >>> Decimal(0) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 45 | Decimal('0') |
| 46 | >>> Decimal('1') |
| 47 | Decimal('1') |
| 48 | >>> Decimal('-.0123') |
| 49 | Decimal('-0.0123') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 50 | >>> Decimal(123456) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 51 | Decimal('123456') |
| 52 | >>> Decimal('123.45e12345678901234567890') |
| 53 | Decimal('1.2345E+12345678901234567892') |
| 54 | >>> Decimal('1.33') + Decimal('1.27') |
| 55 | Decimal('2.60') |
| 56 | >>> Decimal('12.34') + Decimal('3.87') - Decimal('18.41') |
| 57 | Decimal('-2.20') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 58 | >>> dig = Decimal(1) |
| 59 | >>> print dig / Decimal(3) |
| 60 | 0.333333333 |
| 61 | >>> getcontext().prec = 18 |
| 62 | >>> print dig / Decimal(3) |
| 63 | 0.333333333333333333 |
| 64 | >>> print dig.sqrt() |
| 65 | 1 |
| 66 | >>> print Decimal(3).sqrt() |
| 67 | 1.73205080756887729 |
| 68 | >>> print Decimal(3) ** 123 |
| 69 | 4.85192780976896427E+58 |
| 70 | >>> inf = Decimal(1) / Decimal(0) |
| 71 | >>> print inf |
| 72 | Infinity |
| 73 | >>> neginf = Decimal(-1) / Decimal(0) |
| 74 | >>> print neginf |
| 75 | -Infinity |
| 76 | >>> print neginf + inf |
| 77 | NaN |
| 78 | >>> print neginf * inf |
| 79 | -Infinity |
| 80 | >>> print dig / 0 |
| 81 | Infinity |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 82 | >>> getcontext().traps[DivisionByZero] = 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 83 | >>> print dig / 0 |
| 84 | Traceback (most recent call last): |
| 85 | ... |
| 86 | ... |
| 87 | ... |
| 88 | DivisionByZero: x / 0 |
| 89 | >>> c = Context() |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 90 | >>> c.traps[InvalidOperation] = 0 |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 91 | >>> print c.flags[InvalidOperation] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 92 | 0 |
| 93 | >>> c.divide(Decimal(0), Decimal(0)) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 94 | Decimal('NaN') |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 95 | >>> c.traps[InvalidOperation] = 1 |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 96 | >>> print c.flags[InvalidOperation] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 97 | 1 |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 98 | >>> c.flags[InvalidOperation] = 0 |
| 99 | >>> print c.flags[InvalidOperation] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 100 | 0 |
| 101 | >>> print c.divide(Decimal(0), Decimal(0)) |
| 102 | Traceback (most recent call last): |
| 103 | ... |
| 104 | ... |
| 105 | ... |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 106 | InvalidOperation: 0 / 0 |
| 107 | >>> print c.flags[InvalidOperation] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 108 | 1 |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 109 | >>> c.flags[InvalidOperation] = 0 |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 110 | >>> c.traps[InvalidOperation] = 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 111 | >>> print c.divide(Decimal(0), Decimal(0)) |
| 112 | NaN |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 113 | >>> print c.flags[InvalidOperation] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 114 | 1 |
| 115 | >>> |
| 116 | """ |
| 117 | |
| 118 | __all__ = [ |
| 119 | # Two major classes |
| 120 | 'Decimal', 'Context', |
| 121 | |
| 122 | # Contexts |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 123 | 'DefaultContext', 'BasicContext', 'ExtendedContext', |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 124 | |
| 125 | # Exceptions |
Raymond Hettinger | d87ac8f | 2004-07-09 10:52:54 +0000 | [diff] [blame] | 126 | 'DecimalException', 'Clamped', 'InvalidOperation', 'DivisionByZero', |
| 127 | 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow', |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 128 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 129 | # Constants for use in setting up contexts |
| 130 | 'ROUND_DOWN', 'ROUND_HALF_UP', 'ROUND_HALF_EVEN', 'ROUND_CEILING', |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 131 | 'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN', 'ROUND_05UP', |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 132 | |
| 133 | # Functions for manipulating contexts |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 134 | 'setcontext', 'getcontext', 'localcontext' |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 135 | ] |
| 136 | |
Raymond Hettinger | a016deb | 2009-04-27 21:12:27 +0000 | [diff] [blame] | 137 | __version__ = '1.70' # Highest version of the spec this complies with |
Raymond Hettinger | daeceb2 | 2009-03-10 04:49:21 +0000 | [diff] [blame] | 138 | |
Raymond Hettinger | eb26084 | 2005-06-07 18:52:34 +0000 | [diff] [blame] | 139 | import copy as _copy |
Raymond Hettinger | f4d8597 | 2009-01-03 19:02:23 +0000 | [diff] [blame] | 140 | import math as _math |
Raymond Hettinger | 2c8585b | 2009-02-03 03:37:03 +0000 | [diff] [blame] | 141 | import numbers as _numbers |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 142 | |
Raymond Hettinger | 097a190 | 2008-01-11 02:24:13 +0000 | [diff] [blame] | 143 | try: |
| 144 | from collections import namedtuple as _namedtuple |
| 145 | DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent') |
| 146 | except ImportError: |
| 147 | DecimalTuple = lambda *args: args |
| 148 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 149 | # Rounding |
Raymond Hettinger | 0ea241e | 2004-07-04 13:53:24 +0000 | [diff] [blame] | 150 | ROUND_DOWN = 'ROUND_DOWN' |
| 151 | ROUND_HALF_UP = 'ROUND_HALF_UP' |
| 152 | ROUND_HALF_EVEN = 'ROUND_HALF_EVEN' |
| 153 | ROUND_CEILING = 'ROUND_CEILING' |
| 154 | ROUND_FLOOR = 'ROUND_FLOOR' |
| 155 | ROUND_UP = 'ROUND_UP' |
| 156 | ROUND_HALF_DOWN = 'ROUND_HALF_DOWN' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 157 | ROUND_05UP = 'ROUND_05UP' |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 158 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 159 | # Errors |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 160 | |
| 161 | class DecimalException(ArithmeticError): |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 162 | """Base exception class. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 163 | |
| 164 | Used exceptions derive from this. |
| 165 | If an exception derives from another exception besides this (such as |
| 166 | Underflow (Inexact, Rounded, Subnormal) that indicates that it is only |
| 167 | called if the others are present. This isn't actually used for |
| 168 | anything, though. |
| 169 | |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 170 | handle -- Called when context._raise_error is called and the |
| 171 | trap_enabler is set. First argument is self, second is the |
| 172 | context. More arguments can be given, those being after |
| 173 | the explanation in _raise_error (For example, |
| 174 | context._raise_error(NewError, '(-x)!', self._sign) would |
| 175 | call NewError().handle(context, self._sign).) |
| 176 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 177 | To define a new exception, it should be sufficient to have it derive |
| 178 | from DecimalException. |
| 179 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 180 | def handle(self, context, *args): |
| 181 | pass |
| 182 | |
| 183 | |
| 184 | class Clamped(DecimalException): |
| 185 | """Exponent of a 0 changed to fit bounds. |
| 186 | |
| 187 | This occurs and signals clamped if the exponent of a result has been |
| 188 | altered in order to fit the constraints of a specific concrete |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 189 | representation. This may occur when the exponent of a zero result would |
| 190 | be outside the bounds of a representation, or when a large normal |
| 191 | number would have an encoded exponent that cannot be represented. In |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 192 | this latter case, the exponent is reduced to fit and the corresponding |
| 193 | number of zero digits are appended to the coefficient ("fold-down"). |
| 194 | """ |
| 195 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 196 | class InvalidOperation(DecimalException): |
| 197 | """An invalid operation was performed. |
| 198 | |
| 199 | Various bad things cause this: |
| 200 | |
| 201 | Something creates a signaling NaN |
| 202 | -INF + INF |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 203 | 0 * (+-)INF |
| 204 | (+-)INF / (+-)INF |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 205 | x % 0 |
| 206 | (+-)INF % x |
| 207 | x._rescale( non-integer ) |
| 208 | sqrt(-x) , x > 0 |
| 209 | 0 ** 0 |
| 210 | x ** (non-integer) |
| 211 | x ** (+-)INF |
| 212 | An operand is invalid |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 213 | |
| 214 | The result of the operation after these is a quiet positive NaN, |
| 215 | except when the cause is a signaling NaN, in which case the result is |
| 216 | also a quiet NaN, but with the original sign, and an optional |
| 217 | diagnostic information. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 218 | """ |
| 219 | def handle(self, context, *args): |
| 220 | if args: |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 221 | ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True) |
| 222 | return ans._fix_nan(context) |
Mark Dickinson | c5de096 | 2009-01-02 23:07:08 +0000 | [diff] [blame] | 223 | return _NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 224 | |
| 225 | class ConversionSyntax(InvalidOperation): |
| 226 | """Trying to convert badly formed string. |
| 227 | |
| 228 | This occurs and signals invalid-operation if an string is being |
| 229 | converted to a number and it does not conform to the numeric string |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 230 | syntax. The result is [0,qNaN]. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 231 | """ |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 232 | def handle(self, context, *args): |
Mark Dickinson | c5de096 | 2009-01-02 23:07:08 +0000 | [diff] [blame] | 233 | return _NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 234 | |
| 235 | class DivisionByZero(DecimalException, ZeroDivisionError): |
| 236 | """Division by 0. |
| 237 | |
| 238 | This occurs and signals division-by-zero if division of a finite number |
| 239 | by zero was attempted (during a divide-integer or divide operation, or a |
| 240 | power operation with negative right-hand operand), and the dividend was |
| 241 | not zero. |
| 242 | |
| 243 | The result of the operation is [sign,inf], where sign is the exclusive |
| 244 | or of the signs of the operands for divide, or is 1 for an odd power of |
| 245 | -0, for power. |
| 246 | """ |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 247 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 248 | def handle(self, context, sign, *args): |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 249 | return _SignedInfinity[sign] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 250 | |
| 251 | class DivisionImpossible(InvalidOperation): |
| 252 | """Cannot perform the division adequately. |
| 253 | |
| 254 | This occurs and signals invalid-operation if the integer result of a |
| 255 | divide-integer or remainder operation had too many digits (would be |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 256 | longer than precision). The result is [0,qNaN]. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 257 | """ |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 258 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 259 | def handle(self, context, *args): |
Mark Dickinson | c5de096 | 2009-01-02 23:07:08 +0000 | [diff] [blame] | 260 | return _NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 261 | |
| 262 | class DivisionUndefined(InvalidOperation, ZeroDivisionError): |
| 263 | """Undefined result of division. |
| 264 | |
| 265 | This occurs and signals invalid-operation if division by zero was |
| 266 | attempted (during a divide-integer, divide, or remainder operation), and |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 267 | the dividend is also zero. The result is [0,qNaN]. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 268 | """ |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 269 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 270 | def handle(self, context, *args): |
Mark Dickinson | c5de096 | 2009-01-02 23:07:08 +0000 | [diff] [blame] | 271 | return _NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 272 | |
| 273 | class Inexact(DecimalException): |
| 274 | """Had to round, losing information. |
| 275 | |
| 276 | This occurs and signals inexact whenever the result of an operation is |
| 277 | not exact (that is, it needed to be rounded and any discarded digits |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 278 | were non-zero), or if an overflow or underflow condition occurs. The |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 279 | result in all cases is unchanged. |
| 280 | |
| 281 | The inexact signal may be tested (or trapped) to determine if a given |
| 282 | operation (or sequence of operations) was inexact. |
| 283 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 284 | |
| 285 | class InvalidContext(InvalidOperation): |
| 286 | """Invalid context. Unknown rounding, for example. |
| 287 | |
| 288 | This occurs and signals invalid-operation if an invalid context was |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 289 | detected during an operation. This can occur if contexts are not checked |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 290 | on creation and either the precision exceeds the capability of the |
| 291 | underlying concrete representation or an unknown or unsupported rounding |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 292 | was specified. These aspects of the context need only be checked when |
| 293 | the values are required to be used. The result is [0,qNaN]. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 294 | """ |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 295 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 296 | def handle(self, context, *args): |
Mark Dickinson | c5de096 | 2009-01-02 23:07:08 +0000 | [diff] [blame] | 297 | return _NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 298 | |
| 299 | class Rounded(DecimalException): |
| 300 | """Number got rounded (not necessarily changed during rounding). |
| 301 | |
| 302 | This occurs and signals rounded whenever the result of an operation is |
| 303 | rounded (that is, some zero or non-zero digits were discarded from the |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 304 | coefficient), or if an overflow or underflow condition occurs. The |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 305 | result in all cases is unchanged. |
| 306 | |
| 307 | The rounded signal may be tested (or trapped) to determine if a given |
| 308 | operation (or sequence of operations) caused a loss of precision. |
| 309 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 310 | |
| 311 | class Subnormal(DecimalException): |
| 312 | """Exponent < Emin before rounding. |
| 313 | |
| 314 | This occurs and signals subnormal whenever the result of a conversion or |
| 315 | operation is subnormal (that is, its adjusted exponent is less than |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 316 | Emin, before any rounding). The result in all cases is unchanged. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 317 | |
| 318 | The subnormal signal may be tested (or trapped) to determine if a given |
| 319 | or operation (or sequence of operations) yielded a subnormal result. |
| 320 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 321 | |
| 322 | class Overflow(Inexact, Rounded): |
| 323 | """Numerical overflow. |
| 324 | |
| 325 | This occurs and signals overflow if the adjusted exponent of a result |
| 326 | (from a conversion or from an operation that is not an attempt to divide |
| 327 | by zero), after rounding, would be greater than the largest value that |
| 328 | can be handled by the implementation (the value Emax). |
| 329 | |
| 330 | The result depends on the rounding mode: |
| 331 | |
| 332 | For round-half-up and round-half-even (and for round-half-down and |
| 333 | round-up, if implemented), the result of the operation is [sign,inf], |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 334 | where sign is the sign of the intermediate result. For round-down, the |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 335 | result is the largest finite number that can be represented in the |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 336 | current precision, with the sign of the intermediate result. For |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 337 | round-ceiling, the result is the same as for round-down if the sign of |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 338 | the intermediate result is 1, or is [0,inf] otherwise. For round-floor, |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 339 | the result is the same as for round-down if the sign of the intermediate |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 340 | result is 0, or is [1,inf] otherwise. In all cases, Inexact and Rounded |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 341 | will also be raised. |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 342 | """ |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 343 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 344 | def handle(self, context, sign, *args): |
| 345 | if context.rounding in (ROUND_HALF_UP, ROUND_HALF_EVEN, |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 346 | ROUND_HALF_DOWN, ROUND_UP): |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 347 | return _SignedInfinity[sign] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 348 | if sign == 0: |
| 349 | if context.rounding == ROUND_CEILING: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 350 | return _SignedInfinity[sign] |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 351 | return _dec_from_triple(sign, '9'*context.prec, |
| 352 | context.Emax-context.prec+1) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 353 | if sign == 1: |
| 354 | if context.rounding == ROUND_FLOOR: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 355 | return _SignedInfinity[sign] |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 356 | return _dec_from_triple(sign, '9'*context.prec, |
| 357 | context.Emax-context.prec+1) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 358 | |
| 359 | |
| 360 | class Underflow(Inexact, Rounded, Subnormal): |
| 361 | """Numerical underflow with result rounded to 0. |
| 362 | |
| 363 | This occurs and signals underflow if a result is inexact and the |
| 364 | adjusted exponent of the result would be smaller (more negative) than |
| 365 | the smallest value that can be handled by the implementation (the value |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 366 | Emin). That is, the result is both inexact and subnormal. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 367 | |
| 368 | The result after an underflow will be a subnormal number rounded, if |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 369 | necessary, so that its exponent is not less than Etiny. This may result |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 370 | in 0 with the sign of the intermediate result and an exponent of Etiny. |
| 371 | |
| 372 | In all cases, Inexact, Rounded, and Subnormal will also be raised. |
| 373 | """ |
| 374 | |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 375 | # List of public traps and flags |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 376 | _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded, |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 377 | Underflow, InvalidOperation, Subnormal] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 378 | |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 379 | # Map conditions (per the spec) to signals |
| 380 | _condition_map = {ConversionSyntax:InvalidOperation, |
| 381 | DivisionImpossible:InvalidOperation, |
| 382 | DivisionUndefined:InvalidOperation, |
| 383 | InvalidContext:InvalidOperation} |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 384 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 385 | ##### Context Functions ################################################## |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 386 | |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 387 | # The getcontext() and setcontext() function manage access to a thread-local |
| 388 | # current context. Py2.4 offers direct support for thread locals. If that |
| 389 | # is not available, use threading.currentThread() which is slower but will |
Raymond Hettinger | 7e71fa5 | 2004-12-18 19:07:19 +0000 | [diff] [blame] | 390 | # work for older Pythons. If threads are not part of the build, create a |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 391 | # mock threading object with threading.local() returning the module namespace. |
Raymond Hettinger | 7e71fa5 | 2004-12-18 19:07:19 +0000 | [diff] [blame] | 392 | |
| 393 | try: |
| 394 | import threading |
| 395 | except ImportError: |
| 396 | # Python was compiled without threads; create a mock object instead |
| 397 | import sys |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 398 | class MockThreading(object): |
Raymond Hettinger | 7e71fa5 | 2004-12-18 19:07:19 +0000 | [diff] [blame] | 399 | def local(self, sys=sys): |
| 400 | return sys.modules[__name__] |
| 401 | threading = MockThreading() |
| 402 | del sys, MockThreading |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 403 | |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 404 | try: |
| 405 | threading.local |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 406 | |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 407 | except AttributeError: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 408 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 409 | # To fix reloading, force it to create a new context |
| 410 | # Old contexts have different exceptions in their dicts, making problems. |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 411 | if hasattr(threading.currentThread(), '__decimal_context__'): |
| 412 | del threading.currentThread().__decimal_context__ |
| 413 | |
| 414 | def setcontext(context): |
| 415 | """Set this thread's context to context.""" |
| 416 | if context in (DefaultContext, BasicContext, ExtendedContext): |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 417 | context = context.copy() |
Raymond Hettinger | 61992ef | 2004-08-06 23:42:16 +0000 | [diff] [blame] | 418 | context.clear_flags() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 419 | threading.currentThread().__decimal_context__ = context |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 420 | |
| 421 | def getcontext(): |
| 422 | """Returns this thread's context. |
| 423 | |
| 424 | If this thread does not yet have a context, returns |
| 425 | a new context and sets this thread's context. |
| 426 | New contexts are copies of DefaultContext. |
| 427 | """ |
| 428 | try: |
| 429 | return threading.currentThread().__decimal_context__ |
| 430 | except AttributeError: |
| 431 | context = Context() |
| 432 | threading.currentThread().__decimal_context__ = context |
| 433 | return context |
| 434 | |
| 435 | else: |
| 436 | |
| 437 | local = threading.local() |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 438 | if hasattr(local, '__decimal_context__'): |
| 439 | del local.__decimal_context__ |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 440 | |
| 441 | def getcontext(_local=local): |
| 442 | """Returns this thread's context. |
| 443 | |
| 444 | If this thread does not yet have a context, returns |
| 445 | a new context and sets this thread's context. |
| 446 | New contexts are copies of DefaultContext. |
| 447 | """ |
| 448 | try: |
| 449 | return _local.__decimal_context__ |
| 450 | except AttributeError: |
| 451 | context = Context() |
| 452 | _local.__decimal_context__ = context |
| 453 | return context |
| 454 | |
| 455 | def setcontext(context, _local=local): |
| 456 | """Set this thread's context to context.""" |
| 457 | if context in (DefaultContext, BasicContext, ExtendedContext): |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 458 | context = context.copy() |
Raymond Hettinger | 61992ef | 2004-08-06 23:42:16 +0000 | [diff] [blame] | 459 | context.clear_flags() |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 460 | _local.__decimal_context__ = context |
| 461 | |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 462 | del threading, local # Don't contaminate the namespace |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 463 | |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 464 | def localcontext(ctx=None): |
| 465 | """Return a context manager for a copy of the supplied context |
| 466 | |
| 467 | Uses a copy of the current context if no context is specified |
| 468 | The returned context manager creates a local decimal context |
| 469 | in a with statement: |
| 470 | def sin(x): |
| 471 | with localcontext() as ctx: |
| 472 | ctx.prec += 2 |
| 473 | # Rest of sin calculation algorithm |
| 474 | # uses a precision 2 greater than normal |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 475 | return +s # Convert result to normal precision |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 476 | |
| 477 | def sin(x): |
| 478 | with localcontext(ExtendedContext): |
| 479 | # Rest of sin calculation algorithm |
| 480 | # uses the Extended Context from the |
| 481 | # General Decimal Arithmetic Specification |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 482 | return +s # Convert result to normal context |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 483 | |
Facundo Batista | ee340e5 | 2008-05-02 17:39:00 +0000 | [diff] [blame] | 484 | >>> setcontext(DefaultContext) |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 485 | >>> print getcontext().prec |
| 486 | 28 |
| 487 | >>> with localcontext(): |
| 488 | ... ctx = getcontext() |
Raymond Hettinger | 495df47 | 2007-02-08 01:42:35 +0000 | [diff] [blame] | 489 | ... ctx.prec += 2 |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 490 | ... print ctx.prec |
| 491 | ... |
| 492 | 30 |
| 493 | >>> with localcontext(ExtendedContext): |
| 494 | ... print getcontext().prec |
| 495 | ... |
| 496 | 9 |
| 497 | >>> print getcontext().prec |
| 498 | 28 |
| 499 | """ |
Nick Coghlan | ced1218 | 2006-09-02 03:54:17 +0000 | [diff] [blame] | 500 | if ctx is None: ctx = getcontext() |
| 501 | return _ContextManager(ctx) |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 502 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 503 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 504 | ##### Decimal class ####################################################### |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 505 | |
| 506 | class Decimal(object): |
| 507 | """Floating point class for decimal arithmetic.""" |
| 508 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 509 | __slots__ = ('_exp','_int','_sign', '_is_special') |
| 510 | # Generally, the value of the Decimal instance is given by |
| 511 | # (-1)**_sign * _int * 10**_exp |
| 512 | # Special values are signified by _is_special == True |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 513 | |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 514 | # We're immutable, so use __new__ not __init__ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 515 | def __new__(cls, value="0", context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 516 | """Create a decimal point instance. |
| 517 | |
| 518 | >>> Decimal('3.14') # string input |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 519 | Decimal('3.14') |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 520 | >>> Decimal((0, (3, 1, 4), -2)) # tuple (sign, digit_tuple, exponent) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 521 | Decimal('3.14') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 522 | >>> Decimal(314) # int or long |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 523 | Decimal('314') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 524 | >>> Decimal(Decimal(314)) # another decimal instance |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 525 | Decimal('314') |
Mark Dickinson | 59bc20b | 2008-01-12 01:56:00 +0000 | [diff] [blame] | 526 | >>> Decimal(' 3.14 \\n') # leading and trailing whitespace okay |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 527 | Decimal('3.14') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 528 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 529 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 530 | # Note that the coefficient, self._int, is actually stored as |
| 531 | # a string rather than as a tuple of digits. This speeds up |
| 532 | # the "digits to integer" and "integer to digits" conversions |
| 533 | # that are used in almost every arithmetic operation on |
| 534 | # Decimals. This is an internal detail: the as_tuple function |
| 535 | # and the Decimal constructor still deal with tuples of |
| 536 | # digits. |
| 537 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 538 | self = object.__new__(cls) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 539 | |
Facundo Batista | 0d157a0 | 2007-11-30 17:15:25 +0000 | [diff] [blame] | 540 | # From a string |
| 541 | # REs insist on real strings, so we can too. |
| 542 | if isinstance(value, basestring): |
Mark Dickinson | 59bc20b | 2008-01-12 01:56:00 +0000 | [diff] [blame] | 543 | m = _parser(value.strip()) |
Facundo Batista | 0d157a0 | 2007-11-30 17:15:25 +0000 | [diff] [blame] | 544 | if m is None: |
| 545 | if context is None: |
| 546 | context = getcontext() |
| 547 | return context._raise_error(ConversionSyntax, |
| 548 | "Invalid literal for Decimal: %r" % value) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 549 | |
Facundo Batista | 0d157a0 | 2007-11-30 17:15:25 +0000 | [diff] [blame] | 550 | if m.group('sign') == "-": |
| 551 | self._sign = 1 |
| 552 | else: |
| 553 | self._sign = 0 |
| 554 | intpart = m.group('int') |
| 555 | if intpart is not None: |
| 556 | # finite number |
Mark Dickinson | 4326ad8 | 2009-08-02 10:59:36 +0000 | [diff] [blame] | 557 | fracpart = m.group('frac') or '' |
Facundo Batista | 0d157a0 | 2007-11-30 17:15:25 +0000 | [diff] [blame] | 558 | exp = int(m.group('exp') or '0') |
Mark Dickinson | 4326ad8 | 2009-08-02 10:59:36 +0000 | [diff] [blame] | 559 | self._int = str(int(intpart+fracpart)) |
| 560 | self._exp = exp - len(fracpart) |
Facundo Batista | 0d157a0 | 2007-11-30 17:15:25 +0000 | [diff] [blame] | 561 | self._is_special = False |
| 562 | else: |
| 563 | diag = m.group('diag') |
| 564 | if diag is not None: |
| 565 | # NaN |
Mark Dickinson | 4326ad8 | 2009-08-02 10:59:36 +0000 | [diff] [blame] | 566 | self._int = str(int(diag or '0')).lstrip('0') |
Facundo Batista | 0d157a0 | 2007-11-30 17:15:25 +0000 | [diff] [blame] | 567 | if m.group('signal'): |
| 568 | self._exp = 'N' |
| 569 | else: |
| 570 | self._exp = 'n' |
| 571 | else: |
| 572 | # infinity |
| 573 | self._int = '0' |
| 574 | self._exp = 'F' |
| 575 | self._is_special = True |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 576 | return self |
| 577 | |
| 578 | # From an integer |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 579 | if isinstance(value, (int,long)): |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 580 | if value >= 0: |
| 581 | self._sign = 0 |
| 582 | else: |
| 583 | self._sign = 1 |
| 584 | self._exp = 0 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 585 | self._int = str(abs(value)) |
Facundo Batista | 0d157a0 | 2007-11-30 17:15:25 +0000 | [diff] [blame] | 586 | self._is_special = False |
| 587 | return self |
| 588 | |
| 589 | # From another decimal |
| 590 | if isinstance(value, Decimal): |
| 591 | self._exp = value._exp |
| 592 | self._sign = value._sign |
| 593 | self._int = value._int |
| 594 | self._is_special = value._is_special |
| 595 | return self |
| 596 | |
| 597 | # From an internal working value |
| 598 | if isinstance(value, _WorkRep): |
| 599 | self._sign = value.sign |
| 600 | self._int = str(value.int) |
| 601 | self._exp = int(value.exp) |
| 602 | self._is_special = False |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 603 | return self |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 604 | |
| 605 | # tuple/list conversion (possibly from as_tuple()) |
| 606 | if isinstance(value, (list,tuple)): |
| 607 | if len(value) != 3: |
Facundo Batista | 9b5e231 | 2007-10-19 19:25:57 +0000 | [diff] [blame] | 608 | raise ValueError('Invalid tuple size in creation of Decimal ' |
| 609 | 'from list or tuple. The list or tuple ' |
| 610 | 'should have exactly three elements.') |
| 611 | # process sign. The isinstance test rejects floats |
| 612 | if not (isinstance(value[0], (int, long)) and value[0] in (0,1)): |
| 613 | raise ValueError("Invalid sign. The first value in the tuple " |
| 614 | "should be an integer; either 0 for a " |
| 615 | "positive number or 1 for a negative number.") |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 616 | self._sign = value[0] |
Facundo Batista | 9b5e231 | 2007-10-19 19:25:57 +0000 | [diff] [blame] | 617 | if value[2] == 'F': |
| 618 | # infinity: value[1] is ignored |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 619 | self._int = '0' |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 620 | self._exp = value[2] |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 621 | self._is_special = True |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 622 | else: |
Facundo Batista | 9b5e231 | 2007-10-19 19:25:57 +0000 | [diff] [blame] | 623 | # process and validate the digits in value[1] |
| 624 | digits = [] |
| 625 | for digit in value[1]: |
| 626 | if isinstance(digit, (int, long)) and 0 <= digit <= 9: |
| 627 | # skip leading zeros |
| 628 | if digits or digit != 0: |
| 629 | digits.append(digit) |
| 630 | else: |
| 631 | raise ValueError("The second value in the tuple must " |
| 632 | "be composed of integers in the range " |
| 633 | "0 through 9.") |
| 634 | if value[2] in ('n', 'N'): |
| 635 | # NaN: digits form the diagnostic |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 636 | self._int = ''.join(map(str, digits)) |
Facundo Batista | 9b5e231 | 2007-10-19 19:25:57 +0000 | [diff] [blame] | 637 | self._exp = value[2] |
| 638 | self._is_special = True |
| 639 | elif isinstance(value[2], (int, long)): |
| 640 | # finite number: digits give the coefficient |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 641 | self._int = ''.join(map(str, digits or [0])) |
Facundo Batista | 9b5e231 | 2007-10-19 19:25:57 +0000 | [diff] [blame] | 642 | self._exp = value[2] |
| 643 | self._is_special = False |
| 644 | else: |
| 645 | raise ValueError("The third value in the tuple must " |
| 646 | "be an integer, or one of the " |
| 647 | "strings 'F', 'n', 'N'.") |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 648 | return self |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 649 | |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 650 | if isinstance(value, float): |
Benjamin Peterson | a617e20 | 2010-01-25 03:52:52 +0000 | [diff] [blame] | 651 | raise TypeError("Cannot convert float in Decimal constructor. " |
| 652 | "Use from_float class method.") |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 653 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 654 | raise TypeError("Cannot convert %r to Decimal" % value) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 655 | |
Mark Dickinson | 6a96163 | 2009-01-04 21:10:56 +0000 | [diff] [blame] | 656 | # @classmethod, but @decorator is not valid Python 2.3 syntax, so |
| 657 | # don't use it (see notes on Py2.3 compatibility at top of file) |
Raymond Hettinger | f4d8597 | 2009-01-03 19:02:23 +0000 | [diff] [blame] | 658 | def from_float(cls, f): |
| 659 | """Converts a float to a decimal number, exactly. |
| 660 | |
| 661 | Note that Decimal.from_float(0.1) is not the same as Decimal('0.1'). |
| 662 | Since 0.1 is not exactly representable in binary floating point, the |
| 663 | value is stored as the nearest representable value which is |
| 664 | 0x1.999999999999ap-4. The exact equivalent of the value in decimal |
| 665 | is 0.1000000000000000055511151231257827021181583404541015625. |
| 666 | |
| 667 | >>> Decimal.from_float(0.1) |
| 668 | Decimal('0.1000000000000000055511151231257827021181583404541015625') |
| 669 | >>> Decimal.from_float(float('nan')) |
| 670 | Decimal('NaN') |
| 671 | >>> Decimal.from_float(float('inf')) |
| 672 | Decimal('Infinity') |
| 673 | >>> Decimal.from_float(-float('inf')) |
| 674 | Decimal('-Infinity') |
| 675 | >>> Decimal.from_float(-0.0) |
| 676 | Decimal('-0') |
| 677 | |
| 678 | """ |
| 679 | if isinstance(f, (int, long)): # handle integer inputs |
| 680 | return cls(f) |
| 681 | if _math.isinf(f) or _math.isnan(f): # raises TypeError if not a float |
| 682 | return cls(repr(f)) |
Mark Dickinson | 6a96163 | 2009-01-04 21:10:56 +0000 | [diff] [blame] | 683 | if _math.copysign(1.0, f) == 1.0: |
| 684 | sign = 0 |
| 685 | else: |
| 686 | sign = 1 |
Raymond Hettinger | f4d8597 | 2009-01-03 19:02:23 +0000 | [diff] [blame] | 687 | n, d = abs(f).as_integer_ratio() |
| 688 | k = d.bit_length() - 1 |
| 689 | result = _dec_from_triple(sign, str(n*5**k), -k) |
Mark Dickinson | 6a96163 | 2009-01-04 21:10:56 +0000 | [diff] [blame] | 690 | if cls is Decimal: |
| 691 | return result |
| 692 | else: |
| 693 | return cls(result) |
| 694 | from_float = classmethod(from_float) |
Raymond Hettinger | f4d8597 | 2009-01-03 19:02:23 +0000 | [diff] [blame] | 695 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 696 | def _isnan(self): |
| 697 | """Returns whether the number is not actually one. |
| 698 | |
| 699 | 0 if a number |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 700 | 1 if NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 701 | 2 if sNaN |
| 702 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 703 | if self._is_special: |
| 704 | exp = self._exp |
| 705 | if exp == 'n': |
| 706 | return 1 |
| 707 | elif exp == 'N': |
| 708 | return 2 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 709 | return 0 |
| 710 | |
| 711 | def _isinfinity(self): |
| 712 | """Returns whether the number is infinite |
| 713 | |
| 714 | 0 if finite or not a number |
| 715 | 1 if +INF |
| 716 | -1 if -INF |
| 717 | """ |
| 718 | if self._exp == 'F': |
| 719 | if self._sign: |
| 720 | return -1 |
| 721 | return 1 |
| 722 | return 0 |
| 723 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 724 | def _check_nans(self, other=None, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 725 | """Returns whether the number is not actually one. |
| 726 | |
| 727 | if self, other are sNaN, signal |
| 728 | if self, other are NaN return nan |
| 729 | return 0 |
| 730 | |
| 731 | Done before operations. |
| 732 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 733 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 734 | self_is_nan = self._isnan() |
| 735 | if other is None: |
| 736 | other_is_nan = False |
| 737 | else: |
| 738 | other_is_nan = other._isnan() |
| 739 | |
| 740 | if self_is_nan or other_is_nan: |
| 741 | if context is None: |
| 742 | context = getcontext() |
| 743 | |
| 744 | if self_is_nan == 2: |
| 745 | return context._raise_error(InvalidOperation, 'sNaN', |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 746 | self) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 747 | if other_is_nan == 2: |
| 748 | return context._raise_error(InvalidOperation, 'sNaN', |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 749 | other) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 750 | if self_is_nan: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 751 | return self._fix_nan(context) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 752 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 753 | return other._fix_nan(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 754 | return 0 |
| 755 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 756 | def _compare_check_nans(self, other, context): |
| 757 | """Version of _check_nans used for the signaling comparisons |
| 758 | compare_signal, __le__, __lt__, __ge__, __gt__. |
| 759 | |
| 760 | Signal InvalidOperation if either self or other is a (quiet |
| 761 | or signaling) NaN. Signaling NaNs take precedence over quiet |
| 762 | NaNs. |
| 763 | |
| 764 | Return 0 if neither operand is a NaN. |
| 765 | |
| 766 | """ |
| 767 | if context is None: |
| 768 | context = getcontext() |
| 769 | |
| 770 | if self._is_special or other._is_special: |
| 771 | if self.is_snan(): |
| 772 | return context._raise_error(InvalidOperation, |
| 773 | 'comparison involving sNaN', |
| 774 | self) |
| 775 | elif other.is_snan(): |
| 776 | return context._raise_error(InvalidOperation, |
| 777 | 'comparison involving sNaN', |
| 778 | other) |
| 779 | elif self.is_qnan(): |
| 780 | return context._raise_error(InvalidOperation, |
| 781 | 'comparison involving NaN', |
| 782 | self) |
| 783 | elif other.is_qnan(): |
| 784 | return context._raise_error(InvalidOperation, |
| 785 | 'comparison involving NaN', |
| 786 | other) |
| 787 | return 0 |
| 788 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 789 | def __nonzero__(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 790 | """Return True if self is nonzero; otherwise return False. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 791 | |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 792 | NaNs and infinities are considered nonzero. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 793 | """ |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 794 | return self._is_special or self._int != '0' |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 795 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 796 | def _cmp(self, other): |
| 797 | """Compare the two non-NaN decimal instances self and other. |
| 798 | |
| 799 | Returns -1 if self < other, 0 if self == other and 1 |
| 800 | if self > other. This routine is for internal use only.""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 801 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 802 | if self._is_special or other._is_special: |
Mark Dickinson | e52c314 | 2009-01-25 10:39:15 +0000 | [diff] [blame] | 803 | self_inf = self._isinfinity() |
| 804 | other_inf = other._isinfinity() |
| 805 | if self_inf == other_inf: |
| 806 | return 0 |
| 807 | elif self_inf < other_inf: |
| 808 | return -1 |
| 809 | else: |
| 810 | return 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 811 | |
Mark Dickinson | e52c314 | 2009-01-25 10:39:15 +0000 | [diff] [blame] | 812 | # check for zeros; Decimal('0') == Decimal('-0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 813 | if not self: |
| 814 | if not other: |
| 815 | return 0 |
| 816 | else: |
| 817 | return -((-1)**other._sign) |
| 818 | if not other: |
| 819 | return (-1)**self._sign |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 820 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 821 | # If different signs, neg one is less |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 822 | if other._sign < self._sign: |
| 823 | return -1 |
| 824 | if self._sign < other._sign: |
| 825 | return 1 |
| 826 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 827 | self_adjusted = self.adjusted() |
| 828 | other_adjusted = other.adjusted() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 829 | if self_adjusted == other_adjusted: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 830 | self_padded = self._int + '0'*(self._exp - other._exp) |
| 831 | other_padded = other._int + '0'*(other._exp - self._exp) |
Mark Dickinson | e52c314 | 2009-01-25 10:39:15 +0000 | [diff] [blame] | 832 | if self_padded == other_padded: |
| 833 | return 0 |
| 834 | elif self_padded < other_padded: |
| 835 | return -(-1)**self._sign |
| 836 | else: |
| 837 | return (-1)**self._sign |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 838 | elif self_adjusted > other_adjusted: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 839 | return (-1)**self._sign |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 840 | else: # self_adjusted < other_adjusted |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 841 | return -((-1)**self._sign) |
| 842 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 843 | # Note: The Decimal standard doesn't cover rich comparisons for |
| 844 | # Decimals. In particular, the specification is silent on the |
| 845 | # subject of what should happen for a comparison involving a NaN. |
| 846 | # We take the following approach: |
| 847 | # |
| 848 | # == comparisons involving a NaN always return False |
| 849 | # != comparisons involving a NaN always return True |
| 850 | # <, >, <= and >= comparisons involving a (quiet or signaling) |
| 851 | # NaN signal InvalidOperation, and return False if the |
Mark Dickinson | 3a94ee0 | 2008-02-10 15:19:58 +0000 | [diff] [blame] | 852 | # InvalidOperation is not trapped. |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 853 | # |
| 854 | # This behavior is designed to conform as closely as possible to |
| 855 | # that specified by IEEE 754. |
| 856 | |
Raymond Hettinger | 0aeac10 | 2004-07-05 22:53:03 +0000 | [diff] [blame] | 857 | def __eq__(self, other): |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 858 | other = _convert_other(other) |
| 859 | if other is NotImplemented: |
| 860 | return other |
| 861 | if self.is_nan() or other.is_nan(): |
| 862 | return False |
| 863 | return self._cmp(other) == 0 |
Raymond Hettinger | 0aeac10 | 2004-07-05 22:53:03 +0000 | [diff] [blame] | 864 | |
| 865 | def __ne__(self, other): |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 866 | other = _convert_other(other) |
| 867 | if other is NotImplemented: |
| 868 | return other |
| 869 | if self.is_nan() or other.is_nan(): |
| 870 | return True |
| 871 | return self._cmp(other) != 0 |
| 872 | |
| 873 | def __lt__(self, other, context=None): |
| 874 | other = _convert_other(other) |
| 875 | if other is NotImplemented: |
| 876 | return other |
| 877 | ans = self._compare_check_nans(other, context) |
| 878 | if ans: |
| 879 | return False |
| 880 | return self._cmp(other) < 0 |
| 881 | |
| 882 | def __le__(self, other, context=None): |
| 883 | other = _convert_other(other) |
| 884 | if other is NotImplemented: |
| 885 | return other |
| 886 | ans = self._compare_check_nans(other, context) |
| 887 | if ans: |
| 888 | return False |
| 889 | return self._cmp(other) <= 0 |
| 890 | |
| 891 | def __gt__(self, other, context=None): |
| 892 | other = _convert_other(other) |
| 893 | if other is NotImplemented: |
| 894 | return other |
| 895 | ans = self._compare_check_nans(other, context) |
| 896 | if ans: |
| 897 | return False |
| 898 | return self._cmp(other) > 0 |
| 899 | |
| 900 | def __ge__(self, other, context=None): |
| 901 | other = _convert_other(other) |
| 902 | if other is NotImplemented: |
| 903 | return other |
| 904 | ans = self._compare_check_nans(other, context) |
| 905 | if ans: |
| 906 | return False |
| 907 | return self._cmp(other) >= 0 |
Raymond Hettinger | 0aeac10 | 2004-07-05 22:53:03 +0000 | [diff] [blame] | 908 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 909 | def compare(self, other, context=None): |
| 910 | """Compares one to another. |
| 911 | |
| 912 | -1 => a < b |
| 913 | 0 => a = b |
| 914 | 1 => a > b |
| 915 | NaN => one is NaN |
| 916 | Like __cmp__, but returns Decimal instances. |
| 917 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 918 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 919 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 920 | # Compare(NaN, NaN) = NaN |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 921 | if (self._is_special or other and other._is_special): |
| 922 | ans = self._check_nans(other, context) |
| 923 | if ans: |
| 924 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 925 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 926 | return Decimal(self._cmp(other)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 927 | |
| 928 | def __hash__(self): |
| 929 | """x.__hash__() <==> hash(x)""" |
| 930 | # Decimal integers must hash the same as the ints |
Facundo Batista | 52b2579 | 2008-01-08 12:25:20 +0000 | [diff] [blame] | 931 | # |
| 932 | # The hash of a nonspecial noninteger Decimal must depend only |
| 933 | # on the value of that Decimal, and not on its representation. |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 934 | # For example: hash(Decimal('100E-1')) == hash(Decimal('10')). |
Raymond Hettinger | bea3f6f | 2005-03-15 04:59:17 +0000 | [diff] [blame] | 935 | if self._is_special: |
| 936 | if self._isnan(): |
| 937 | raise TypeError('Cannot hash a NaN value.') |
| 938 | return hash(str(self)) |
Facundo Batista | 8c20244 | 2007-09-19 17:53:25 +0000 | [diff] [blame] | 939 | if not self: |
| 940 | return 0 |
| 941 | if self._isinteger(): |
| 942 | op = _WorkRep(self.to_integral_value()) |
| 943 | # to make computation feasible for Decimals with large |
| 944 | # exponent, we use the fact that hash(n) == hash(m) for |
| 945 | # any two nonzero integers n and m such that (i) n and m |
| 946 | # have the same sign, and (ii) n is congruent to m modulo |
| 947 | # 2**64-1. So we can replace hash((-1)**s*c*10**e) with |
| 948 | # hash((-1)**s*c*pow(10, e, 2**64-1). |
| 949 | return hash((-1)**op.sign*op.int*pow(10, op.exp, 2**64-1)) |
Facundo Batista | 52b2579 | 2008-01-08 12:25:20 +0000 | [diff] [blame] | 950 | # The value of a nonzero nonspecial Decimal instance is |
| 951 | # faithfully represented by the triple consisting of its sign, |
| 952 | # its adjusted exponent, and its coefficient with trailing |
| 953 | # zeros removed. |
| 954 | return hash((self._sign, |
| 955 | self._exp+len(self._int), |
| 956 | self._int.rstrip('0'))) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 957 | |
| 958 | def as_tuple(self): |
| 959 | """Represents the number as a triple tuple. |
| 960 | |
| 961 | To show the internals exactly as they are. |
| 962 | """ |
Raymond Hettinger | 097a190 | 2008-01-11 02:24:13 +0000 | [diff] [blame] | 963 | return DecimalTuple(self._sign, tuple(map(int, self._int)), self._exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 964 | |
| 965 | def __repr__(self): |
| 966 | """Represents the number as an instance of Decimal.""" |
| 967 | # Invariant: eval(repr(d)) == d |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 968 | return "Decimal('%s')" % str(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 969 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 970 | def __str__(self, eng=False, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 971 | """Return string representation of the number in scientific notation. |
| 972 | |
| 973 | Captures all of the information in the underlying representation. |
| 974 | """ |
| 975 | |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 976 | sign = ['', '-'][self._sign] |
Raymond Hettinger | e5a0a96 | 2005-06-20 09:49:42 +0000 | [diff] [blame] | 977 | if self._is_special: |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 978 | if self._exp == 'F': |
| 979 | return sign + 'Infinity' |
| 980 | elif self._exp == 'n': |
| 981 | return sign + 'NaN' + self._int |
| 982 | else: # self._exp == 'N' |
| 983 | return sign + 'sNaN' + self._int |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 984 | |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 985 | # number of digits of self._int to left of decimal point |
| 986 | leftdigits = self._exp + len(self._int) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 987 | |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 988 | # dotplace is number of digits of self._int to the left of the |
| 989 | # decimal point in the mantissa of the output string (that is, |
| 990 | # after adjusting the exponent) |
| 991 | if self._exp <= 0 and leftdigits > -6: |
| 992 | # no exponent required |
| 993 | dotplace = leftdigits |
| 994 | elif not eng: |
| 995 | # usual scientific notation: 1 digit on left of the point |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 996 | dotplace = 1 |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 997 | elif self._int == '0': |
| 998 | # engineering notation, zero |
| 999 | dotplace = (leftdigits + 1) % 3 - 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1000 | else: |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 1001 | # engineering notation, nonzero |
| 1002 | dotplace = (leftdigits - 1) % 3 + 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1003 | |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 1004 | if dotplace <= 0: |
| 1005 | intpart = '0' |
| 1006 | fracpart = '.' + '0'*(-dotplace) + self._int |
| 1007 | elif dotplace >= len(self._int): |
| 1008 | intpart = self._int+'0'*(dotplace-len(self._int)) |
| 1009 | fracpart = '' |
| 1010 | else: |
| 1011 | intpart = self._int[:dotplace] |
| 1012 | fracpart = '.' + self._int[dotplace:] |
| 1013 | if leftdigits == dotplace: |
| 1014 | exp = '' |
| 1015 | else: |
| 1016 | if context is None: |
| 1017 | context = getcontext() |
| 1018 | exp = ['e', 'E'][context.capitals] + "%+d" % (leftdigits-dotplace) |
| 1019 | |
| 1020 | return sign + intpart + fracpart + exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1021 | |
| 1022 | def to_eng_string(self, context=None): |
| 1023 | """Convert to engineering-type string. |
| 1024 | |
| 1025 | Engineering notation has an exponent which is a multiple of 3, so there |
| 1026 | are up to 3 digits left of the decimal place. |
| 1027 | |
| 1028 | Same rules for when in exponential and when as a value as in __str__. |
| 1029 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1030 | return self.__str__(eng=True, context=context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1031 | |
| 1032 | def __neg__(self, context=None): |
| 1033 | """Returns a copy with the sign switched. |
| 1034 | |
| 1035 | Rounds, if it has reason. |
| 1036 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1037 | if self._is_special: |
| 1038 | ans = self._check_nans(context=context) |
| 1039 | if ans: |
| 1040 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1041 | |
| 1042 | if not self: |
| 1043 | # -Decimal('0') is Decimal('0'), not Decimal('-0') |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1044 | ans = self.copy_abs() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1045 | else: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1046 | ans = self.copy_negate() |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1047 | |
| 1048 | if context is None: |
| 1049 | context = getcontext() |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1050 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1051 | |
| 1052 | def __pos__(self, context=None): |
| 1053 | """Returns a copy, unless it is a sNaN. |
| 1054 | |
| 1055 | Rounds the number (if more then precision digits) |
| 1056 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1057 | if self._is_special: |
| 1058 | ans = self._check_nans(context=context) |
| 1059 | if ans: |
| 1060 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1061 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1062 | if not self: |
| 1063 | # + (-0) = 0 |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1064 | ans = self.copy_abs() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1065 | else: |
| 1066 | ans = Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1067 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1068 | if context is None: |
| 1069 | context = getcontext() |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1070 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1071 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1072 | def __abs__(self, round=True, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1073 | """Returns the absolute value of self. |
| 1074 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1075 | If the keyword argument 'round' is false, do not round. The |
| 1076 | expression self.__abs__(round=False) is equivalent to |
| 1077 | self.copy_abs(). |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1078 | """ |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1079 | if not round: |
| 1080 | return self.copy_abs() |
| 1081 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1082 | if self._is_special: |
| 1083 | ans = self._check_nans(context=context) |
| 1084 | if ans: |
| 1085 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1086 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1087 | if self._sign: |
| 1088 | ans = self.__neg__(context=context) |
| 1089 | else: |
| 1090 | ans = self.__pos__(context=context) |
| 1091 | |
| 1092 | return ans |
| 1093 | |
| 1094 | def __add__(self, other, context=None): |
| 1095 | """Returns self + other. |
| 1096 | |
| 1097 | -INF + INF (or the reverse) cause InvalidOperation errors. |
| 1098 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1099 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1100 | if other is NotImplemented: |
| 1101 | return other |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1102 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1103 | if context is None: |
| 1104 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1105 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1106 | if self._is_special or other._is_special: |
| 1107 | ans = self._check_nans(other, context) |
| 1108 | if ans: |
| 1109 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1110 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1111 | if self._isinfinity(): |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1112 | # If both INF, same sign => same as both, opposite => error. |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1113 | if self._sign != other._sign and other._isinfinity(): |
| 1114 | return context._raise_error(InvalidOperation, '-INF + INF') |
| 1115 | return Decimal(self) |
| 1116 | if other._isinfinity(): |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1117 | return Decimal(other) # Can't both be infinity here |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1118 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1119 | exp = min(self._exp, other._exp) |
| 1120 | negativezero = 0 |
| 1121 | if context.rounding == ROUND_FLOOR and self._sign != other._sign: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1122 | # If the answer is 0, the sign should be negative, in this case. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1123 | negativezero = 1 |
| 1124 | |
| 1125 | if not self and not other: |
| 1126 | sign = min(self._sign, other._sign) |
| 1127 | if negativezero: |
| 1128 | sign = 1 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1129 | ans = _dec_from_triple(sign, '0', exp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1130 | ans = ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1131 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1132 | if not self: |
Facundo Batista | 99b5548 | 2004-10-26 23:38:46 +0000 | [diff] [blame] | 1133 | exp = max(exp, other._exp - context.prec-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1134 | ans = other._rescale(exp, context.rounding) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1135 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1136 | return ans |
| 1137 | if not other: |
Facundo Batista | 99b5548 | 2004-10-26 23:38:46 +0000 | [diff] [blame] | 1138 | exp = max(exp, self._exp - context.prec-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1139 | ans = self._rescale(exp, context.rounding) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1140 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1141 | return ans |
| 1142 | |
| 1143 | op1 = _WorkRep(self) |
| 1144 | op2 = _WorkRep(other) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1145 | op1, op2 = _normalize(op1, op2, context.prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1146 | |
| 1147 | result = _WorkRep() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1148 | if op1.sign != op2.sign: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1149 | # Equal and opposite |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1150 | if op1.int == op2.int: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1151 | ans = _dec_from_triple(negativezero, '0', exp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1152 | ans = ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1153 | return ans |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1154 | if op1.int < op2.int: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1155 | op1, op2 = op2, op1 |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1156 | # OK, now abs(op1) > abs(op2) |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1157 | if op1.sign == 1: |
| 1158 | result.sign = 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1159 | op1.sign, op2.sign = op2.sign, op1.sign |
| 1160 | else: |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1161 | result.sign = 0 |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1162 | # So we know the sign, and op1 > 0. |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1163 | elif op1.sign == 1: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1164 | result.sign = 1 |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1165 | op1.sign, op2.sign = (0, 0) |
| 1166 | else: |
| 1167 | result.sign = 0 |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1168 | # Now, op1 > abs(op2) > 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1169 | |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1170 | if op2.sign == 0: |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1171 | result.int = op1.int + op2.int |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1172 | else: |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1173 | result.int = op1.int - op2.int |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1174 | |
| 1175 | result.exp = op1.exp |
| 1176 | ans = Decimal(result) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1177 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1178 | return ans |
| 1179 | |
| 1180 | __radd__ = __add__ |
| 1181 | |
| 1182 | def __sub__(self, other, context=None): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1183 | """Return self - other""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1184 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1185 | if other is NotImplemented: |
| 1186 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1187 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1188 | if self._is_special or other._is_special: |
| 1189 | ans = self._check_nans(other, context=context) |
| 1190 | if ans: |
| 1191 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1192 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1193 | # self - other is computed as self + other.copy_negate() |
| 1194 | return self.__add__(other.copy_negate(), context=context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1195 | |
| 1196 | def __rsub__(self, other, context=None): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1197 | """Return other - self""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1198 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1199 | if other is NotImplemented: |
| 1200 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1201 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1202 | return other.__sub__(self, context=context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1203 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1204 | def __mul__(self, other, context=None): |
| 1205 | """Return self * other. |
| 1206 | |
| 1207 | (+-) INF * 0 (or its reverse) raise InvalidOperation. |
| 1208 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1209 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1210 | if other is NotImplemented: |
| 1211 | return other |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1212 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1213 | if context is None: |
| 1214 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1215 | |
Raymond Hettinger | d87ac8f | 2004-07-09 10:52:54 +0000 | [diff] [blame] | 1216 | resultsign = self._sign ^ other._sign |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1217 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1218 | if self._is_special or other._is_special: |
| 1219 | ans = self._check_nans(other, context) |
| 1220 | if ans: |
| 1221 | return ans |
| 1222 | |
| 1223 | if self._isinfinity(): |
| 1224 | if not other: |
| 1225 | return context._raise_error(InvalidOperation, '(+-)INF * 0') |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1226 | return _SignedInfinity[resultsign] |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1227 | |
| 1228 | if other._isinfinity(): |
| 1229 | if not self: |
| 1230 | return context._raise_error(InvalidOperation, '0 * (+-)INF') |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1231 | return _SignedInfinity[resultsign] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1232 | |
| 1233 | resultexp = self._exp + other._exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1234 | |
| 1235 | # Special case for multiplying by zero |
| 1236 | if not self or not other: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1237 | ans = _dec_from_triple(resultsign, '0', resultexp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1238 | # Fixing in case the exponent is out of bounds |
| 1239 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1240 | return ans |
| 1241 | |
| 1242 | # Special case for multiplying by power of 10 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1243 | if self._int == '1': |
| 1244 | ans = _dec_from_triple(resultsign, other._int, resultexp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1245 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1246 | return ans |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1247 | if other._int == '1': |
| 1248 | ans = _dec_from_triple(resultsign, self._int, resultexp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1249 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1250 | return ans |
| 1251 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1252 | op1 = _WorkRep(self) |
| 1253 | op2 = _WorkRep(other) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1254 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1255 | ans = _dec_from_triple(resultsign, str(op1.int * op2.int), resultexp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1256 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1257 | |
| 1258 | return ans |
| 1259 | __rmul__ = __mul__ |
| 1260 | |
Mark Dickinson | 8aca9d0 | 2008-05-04 02:05:06 +0000 | [diff] [blame] | 1261 | def __truediv__(self, other, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1262 | """Return self / other.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1263 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1264 | if other is NotImplemented: |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1265 | return NotImplemented |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1266 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1267 | if context is None: |
| 1268 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1269 | |
Raymond Hettinger | d87ac8f | 2004-07-09 10:52:54 +0000 | [diff] [blame] | 1270 | sign = self._sign ^ other._sign |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1271 | |
| 1272 | if self._is_special or other._is_special: |
| 1273 | ans = self._check_nans(other, context) |
| 1274 | if ans: |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1275 | return ans |
| 1276 | |
| 1277 | if self._isinfinity() and other._isinfinity(): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1278 | return context._raise_error(InvalidOperation, '(+-)INF/(+-)INF') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1279 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1280 | if self._isinfinity(): |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1281 | return _SignedInfinity[sign] |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1282 | |
| 1283 | if other._isinfinity(): |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1284 | context._raise_error(Clamped, 'Division by infinity') |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1285 | return _dec_from_triple(sign, '0', context.Etiny()) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1286 | |
| 1287 | # Special cases for zeroes |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1288 | if not other: |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1289 | if not self: |
| 1290 | return context._raise_error(DivisionUndefined, '0 / 0') |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1291 | return context._raise_error(DivisionByZero, 'x / 0', sign) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1292 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1293 | if not self: |
| 1294 | exp = self._exp - other._exp |
| 1295 | coeff = 0 |
| 1296 | else: |
| 1297 | # OK, so neither = 0, INF or NaN |
| 1298 | shift = len(other._int) - len(self._int) + context.prec + 1 |
| 1299 | exp = self._exp - other._exp - shift |
| 1300 | op1 = _WorkRep(self) |
| 1301 | op2 = _WorkRep(other) |
| 1302 | if shift >= 0: |
| 1303 | coeff, remainder = divmod(op1.int * 10**shift, op2.int) |
| 1304 | else: |
| 1305 | coeff, remainder = divmod(op1.int, op2.int * 10**-shift) |
| 1306 | if remainder: |
| 1307 | # result is not exact; adjust to ensure correct rounding |
| 1308 | if coeff % 5 == 0: |
| 1309 | coeff += 1 |
| 1310 | else: |
| 1311 | # result is exact; get as close to ideal exponent as possible |
| 1312 | ideal_exp = self._exp - other._exp |
| 1313 | while exp < ideal_exp and coeff % 10 == 0: |
| 1314 | coeff //= 10 |
| 1315 | exp += 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1316 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1317 | ans = _dec_from_triple(sign, str(coeff), exp) |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1318 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1319 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1320 | def _divide(self, other, context): |
| 1321 | """Return (self // other, self % other), to context.prec precision. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1322 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1323 | Assumes that neither self nor other is a NaN, that self is not |
| 1324 | infinite and that other is nonzero. |
| 1325 | """ |
| 1326 | sign = self._sign ^ other._sign |
| 1327 | if other._isinfinity(): |
| 1328 | ideal_exp = self._exp |
| 1329 | else: |
| 1330 | ideal_exp = min(self._exp, other._exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1331 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1332 | expdiff = self.adjusted() - other.adjusted() |
| 1333 | if not self or other._isinfinity() or expdiff <= -2: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1334 | return (_dec_from_triple(sign, '0', 0), |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1335 | self._rescale(ideal_exp, context.rounding)) |
| 1336 | if expdiff <= context.prec: |
| 1337 | op1 = _WorkRep(self) |
| 1338 | op2 = _WorkRep(other) |
| 1339 | if op1.exp >= op2.exp: |
| 1340 | op1.int *= 10**(op1.exp - op2.exp) |
| 1341 | else: |
| 1342 | op2.int *= 10**(op2.exp - op1.exp) |
| 1343 | q, r = divmod(op1.int, op2.int) |
| 1344 | if q < 10**context.prec: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1345 | return (_dec_from_triple(sign, str(q), 0), |
| 1346 | _dec_from_triple(self._sign, str(r), ideal_exp)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1347 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1348 | # Here the quotient is too large to be representable |
| 1349 | ans = context._raise_error(DivisionImpossible, |
| 1350 | 'quotient too large in //, % or divmod') |
| 1351 | return ans, ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1352 | |
Mark Dickinson | 8aca9d0 | 2008-05-04 02:05:06 +0000 | [diff] [blame] | 1353 | def __rtruediv__(self, other, context=None): |
| 1354 | """Swaps self/other and returns __truediv__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1355 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1356 | if other is NotImplemented: |
| 1357 | return other |
Mark Dickinson | 8aca9d0 | 2008-05-04 02:05:06 +0000 | [diff] [blame] | 1358 | return other.__truediv__(self, context=context) |
| 1359 | |
| 1360 | __div__ = __truediv__ |
| 1361 | __rdiv__ = __rtruediv__ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1362 | |
| 1363 | def __divmod__(self, other, context=None): |
| 1364 | """ |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1365 | Return (self // other, self % other) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1366 | """ |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1367 | other = _convert_other(other) |
| 1368 | if other is NotImplemented: |
| 1369 | return other |
| 1370 | |
| 1371 | if context is None: |
| 1372 | context = getcontext() |
| 1373 | |
| 1374 | ans = self._check_nans(other, context) |
| 1375 | if ans: |
| 1376 | return (ans, ans) |
| 1377 | |
| 1378 | sign = self._sign ^ other._sign |
| 1379 | if self._isinfinity(): |
| 1380 | if other._isinfinity(): |
| 1381 | ans = context._raise_error(InvalidOperation, 'divmod(INF, INF)') |
| 1382 | return ans, ans |
| 1383 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1384 | return (_SignedInfinity[sign], |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1385 | context._raise_error(InvalidOperation, 'INF % x')) |
| 1386 | |
| 1387 | if not other: |
| 1388 | if not self: |
| 1389 | ans = context._raise_error(DivisionUndefined, 'divmod(0, 0)') |
| 1390 | return ans, ans |
| 1391 | else: |
| 1392 | return (context._raise_error(DivisionByZero, 'x // 0', sign), |
| 1393 | context._raise_error(InvalidOperation, 'x % 0')) |
| 1394 | |
| 1395 | quotient, remainder = self._divide(other, context) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1396 | remainder = remainder._fix(context) |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1397 | return quotient, remainder |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1398 | |
| 1399 | def __rdivmod__(self, other, context=None): |
| 1400 | """Swaps self/other and returns __divmod__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1401 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1402 | if other is NotImplemented: |
| 1403 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1404 | return other.__divmod__(self, context=context) |
| 1405 | |
| 1406 | def __mod__(self, other, context=None): |
| 1407 | """ |
| 1408 | self % other |
| 1409 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1410 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1411 | if other is NotImplemented: |
| 1412 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1413 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1414 | if context is None: |
| 1415 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1416 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1417 | ans = self._check_nans(other, context) |
| 1418 | if ans: |
| 1419 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1420 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1421 | if self._isinfinity(): |
| 1422 | return context._raise_error(InvalidOperation, 'INF % x') |
| 1423 | elif not other: |
| 1424 | if self: |
| 1425 | return context._raise_error(InvalidOperation, 'x % 0') |
| 1426 | else: |
| 1427 | return context._raise_error(DivisionUndefined, '0 % 0') |
| 1428 | |
| 1429 | remainder = self._divide(other, context)[1] |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1430 | remainder = remainder._fix(context) |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1431 | return remainder |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1432 | |
| 1433 | def __rmod__(self, other, context=None): |
| 1434 | """Swaps self/other and returns __mod__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1435 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1436 | if other is NotImplemented: |
| 1437 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1438 | return other.__mod__(self, context=context) |
| 1439 | |
| 1440 | def remainder_near(self, other, context=None): |
| 1441 | """ |
| 1442 | Remainder nearest to 0- abs(remainder-near) <= other/2 |
| 1443 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1444 | if context is None: |
| 1445 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1446 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1447 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1448 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1449 | ans = self._check_nans(other, context) |
| 1450 | if ans: |
| 1451 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1452 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1453 | # self == +/-infinity -> InvalidOperation |
| 1454 | if self._isinfinity(): |
| 1455 | return context._raise_error(InvalidOperation, |
| 1456 | 'remainder_near(infinity, x)') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1457 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1458 | # other == 0 -> either InvalidOperation or DivisionUndefined |
| 1459 | if not other: |
| 1460 | if self: |
| 1461 | return context._raise_error(InvalidOperation, |
| 1462 | 'remainder_near(x, 0)') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1463 | else: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1464 | return context._raise_error(DivisionUndefined, |
| 1465 | 'remainder_near(0, 0)') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1466 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1467 | # other = +/-infinity -> remainder = self |
| 1468 | if other._isinfinity(): |
| 1469 | ans = Decimal(self) |
| 1470 | return ans._fix(context) |
| 1471 | |
| 1472 | # self = 0 -> remainder = self, with ideal exponent |
| 1473 | ideal_exponent = min(self._exp, other._exp) |
| 1474 | if not self: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1475 | ans = _dec_from_triple(self._sign, '0', ideal_exponent) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1476 | return ans._fix(context) |
| 1477 | |
| 1478 | # catch most cases of large or small quotient |
| 1479 | expdiff = self.adjusted() - other.adjusted() |
| 1480 | if expdiff >= context.prec + 1: |
| 1481 | # expdiff >= prec+1 => abs(self/other) > 10**prec |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1482 | return context._raise_error(DivisionImpossible) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1483 | if expdiff <= -2: |
| 1484 | # expdiff <= -2 => abs(self/other) < 0.1 |
| 1485 | ans = self._rescale(ideal_exponent, context.rounding) |
| 1486 | return ans._fix(context) |
| 1487 | |
| 1488 | # adjust both arguments to have the same exponent, then divide |
| 1489 | op1 = _WorkRep(self) |
| 1490 | op2 = _WorkRep(other) |
| 1491 | if op1.exp >= op2.exp: |
| 1492 | op1.int *= 10**(op1.exp - op2.exp) |
| 1493 | else: |
| 1494 | op2.int *= 10**(op2.exp - op1.exp) |
| 1495 | q, r = divmod(op1.int, op2.int) |
| 1496 | # remainder is r*10**ideal_exponent; other is +/-op2.int * |
| 1497 | # 10**ideal_exponent. Apply correction to ensure that |
| 1498 | # abs(remainder) <= abs(other)/2 |
| 1499 | if 2*r + (q&1) > op2.int: |
| 1500 | r -= op2.int |
| 1501 | q += 1 |
| 1502 | |
| 1503 | if q >= 10**context.prec: |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1504 | return context._raise_error(DivisionImpossible) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1505 | |
| 1506 | # result has same sign as self unless r is negative |
| 1507 | sign = self._sign |
| 1508 | if r < 0: |
| 1509 | sign = 1-sign |
| 1510 | r = -r |
| 1511 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1512 | ans = _dec_from_triple(sign, str(r), ideal_exponent) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1513 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1514 | |
| 1515 | def __floordiv__(self, other, context=None): |
| 1516 | """self // other""" |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1517 | other = _convert_other(other) |
| 1518 | if other is NotImplemented: |
| 1519 | return other |
| 1520 | |
| 1521 | if context is None: |
| 1522 | context = getcontext() |
| 1523 | |
| 1524 | ans = self._check_nans(other, context) |
| 1525 | if ans: |
| 1526 | return ans |
| 1527 | |
| 1528 | if self._isinfinity(): |
| 1529 | if other._isinfinity(): |
| 1530 | return context._raise_error(InvalidOperation, 'INF // INF') |
| 1531 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1532 | return _SignedInfinity[self._sign ^ other._sign] |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1533 | |
| 1534 | if not other: |
| 1535 | if self: |
| 1536 | return context._raise_error(DivisionByZero, 'x // 0', |
| 1537 | self._sign ^ other._sign) |
| 1538 | else: |
| 1539 | return context._raise_error(DivisionUndefined, '0 // 0') |
| 1540 | |
| 1541 | return self._divide(other, context)[0] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1542 | |
| 1543 | def __rfloordiv__(self, other, context=None): |
| 1544 | """Swaps self/other and returns __floordiv__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1545 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1546 | if other is NotImplemented: |
| 1547 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1548 | return other.__floordiv__(self, context=context) |
| 1549 | |
| 1550 | def __float__(self): |
| 1551 | """Float representation.""" |
| 1552 | return float(str(self)) |
| 1553 | |
| 1554 | def __int__(self): |
Brett Cannon | 46b0802 | 2005-03-01 03:12:26 +0000 | [diff] [blame] | 1555 | """Converts self to an int, truncating if necessary.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1556 | if self._is_special: |
| 1557 | if self._isnan(): |
Mark Dickinson | 968f169 | 2009-09-07 18:04:58 +0000 | [diff] [blame] | 1558 | raise ValueError("Cannot convert NaN to integer") |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1559 | elif self._isinfinity(): |
Mark Dickinson | 968f169 | 2009-09-07 18:04:58 +0000 | [diff] [blame] | 1560 | raise OverflowError("Cannot convert infinity to integer") |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1561 | s = (-1)**self._sign |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1562 | if self._exp >= 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1563 | return s*int(self._int)*10**self._exp |
Raymond Hettinger | 605ed02 | 2004-11-24 07:28:48 +0000 | [diff] [blame] | 1564 | else: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1565 | return s*int(self._int[:self._exp] or '0') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1566 | |
Raymond Hettinger | 5a05364 | 2008-01-24 19:05:29 +0000 | [diff] [blame] | 1567 | __trunc__ = __int__ |
| 1568 | |
Raymond Hettinger | 116f72f | 2008-02-12 01:18:03 +0000 | [diff] [blame] | 1569 | def real(self): |
| 1570 | return self |
Mark Dickinson | 65808ff | 2009-01-04 21:22:02 +0000 | [diff] [blame] | 1571 | real = property(real) |
Raymond Hettinger | 116f72f | 2008-02-12 01:18:03 +0000 | [diff] [blame] | 1572 | |
Raymond Hettinger | 116f72f | 2008-02-12 01:18:03 +0000 | [diff] [blame] | 1573 | def imag(self): |
| 1574 | return Decimal(0) |
Mark Dickinson | 65808ff | 2009-01-04 21:22:02 +0000 | [diff] [blame] | 1575 | imag = property(imag) |
Raymond Hettinger | 116f72f | 2008-02-12 01:18:03 +0000 | [diff] [blame] | 1576 | |
| 1577 | def conjugate(self): |
| 1578 | return self |
| 1579 | |
| 1580 | def __complex__(self): |
| 1581 | return complex(float(self)) |
| 1582 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1583 | def __long__(self): |
| 1584 | """Converts to a long. |
| 1585 | |
| 1586 | Equivalent to long(int(self)) |
| 1587 | """ |
| 1588 | return long(self.__int__()) |
| 1589 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1590 | def _fix_nan(self, context): |
| 1591 | """Decapitate the payload of a NaN to fit the context""" |
| 1592 | payload = self._int |
| 1593 | |
| 1594 | # maximum length of payload is precision if _clamp=0, |
| 1595 | # precision-1 if _clamp=1. |
| 1596 | max_payload_len = context.prec - context._clamp |
| 1597 | if len(payload) > max_payload_len: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1598 | payload = payload[len(payload)-max_payload_len:].lstrip('0') |
| 1599 | return _dec_from_triple(self._sign, payload, self._exp, True) |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1600 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1601 | |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 1602 | def _fix(self, context): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1603 | """Round if it is necessary to keep self within prec precision. |
| 1604 | |
| 1605 | Rounds and fixes the exponent. Does not raise on a sNaN. |
| 1606 | |
| 1607 | Arguments: |
| 1608 | self - Decimal instance |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1609 | context - context used. |
| 1610 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1611 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1612 | if self._is_special: |
| 1613 | if self._isnan(): |
| 1614 | # decapitate payload if necessary |
| 1615 | return self._fix_nan(context) |
| 1616 | else: |
| 1617 | # self is +/-Infinity; return unaltered |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1618 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1619 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1620 | # if self is zero then exponent should be between Etiny and |
| 1621 | # Emax if _clamp==0, and between Etiny and Etop if _clamp==1. |
| 1622 | Etiny = context.Etiny() |
| 1623 | Etop = context.Etop() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1624 | if not self: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1625 | exp_max = [context.Emax, Etop][context._clamp] |
| 1626 | new_exp = min(max(self._exp, Etiny), exp_max) |
| 1627 | if new_exp != self._exp: |
| 1628 | context._raise_error(Clamped) |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1629 | return _dec_from_triple(self._sign, '0', new_exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1630 | else: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1631 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1632 | |
| 1633 | # exp_min is the smallest allowable exponent of the result, |
| 1634 | # equal to max(self.adjusted()-context.prec+1, Etiny) |
| 1635 | exp_min = len(self._int) + self._exp - context.prec |
| 1636 | if exp_min > Etop: |
| 1637 | # overflow: exp_min > Etop iff self.adjusted() > Emax |
| 1638 | context._raise_error(Inexact) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1639 | context._raise_error(Rounded) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1640 | return context._raise_error(Overflow, 'above Emax', self._sign) |
| 1641 | self_is_subnormal = exp_min < Etiny |
| 1642 | if self_is_subnormal: |
| 1643 | context._raise_error(Subnormal) |
| 1644 | exp_min = Etiny |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1645 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1646 | # round if self has too many digits |
| 1647 | if self._exp < exp_min: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1648 | context._raise_error(Rounded) |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1649 | digits = len(self._int) + self._exp - exp_min |
| 1650 | if digits < 0: |
| 1651 | self = _dec_from_triple(self._sign, '1', exp_min-1) |
| 1652 | digits = 0 |
| 1653 | this_function = getattr(self, self._pick_rounding_function[context.rounding]) |
| 1654 | changed = this_function(digits) |
| 1655 | coeff = self._int[:digits] or '0' |
| 1656 | if changed == 1: |
| 1657 | coeff = str(int(coeff)+1) |
| 1658 | ans = _dec_from_triple(self._sign, coeff, exp_min) |
| 1659 | |
| 1660 | if changed: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1661 | context._raise_error(Inexact) |
| 1662 | if self_is_subnormal: |
| 1663 | context._raise_error(Underflow) |
| 1664 | if not ans: |
| 1665 | # raise Clamped on underflow to 0 |
| 1666 | context._raise_error(Clamped) |
| 1667 | elif len(ans._int) == context.prec+1: |
| 1668 | # we get here only if rescaling rounds the |
| 1669 | # cofficient up to exactly 10**context.prec |
| 1670 | if ans._exp < Etop: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1671 | ans = _dec_from_triple(ans._sign, |
| 1672 | ans._int[:-1], ans._exp+1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1673 | else: |
| 1674 | # Inexact and Rounded have already been raised |
| 1675 | ans = context._raise_error(Overflow, 'above Emax', |
| 1676 | self._sign) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1677 | return ans |
| 1678 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1679 | # fold down if _clamp == 1 and self has too few digits |
| 1680 | if context._clamp == 1 and self._exp > Etop: |
| 1681 | context._raise_error(Clamped) |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1682 | self_padded = self._int + '0'*(self._exp - Etop) |
| 1683 | return _dec_from_triple(self._sign, self_padded, Etop) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1684 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1685 | # here self was representable to begin with; return unchanged |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1686 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1687 | |
| 1688 | _pick_rounding_function = {} |
| 1689 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1690 | # for each of the rounding functions below: |
| 1691 | # self is a finite, nonzero Decimal |
| 1692 | # prec is an integer satisfying 0 <= prec < len(self._int) |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1693 | # |
| 1694 | # each function returns either -1, 0, or 1, as follows: |
| 1695 | # 1 indicates that self should be rounded up (away from zero) |
| 1696 | # 0 indicates that self should be truncated, and that all the |
| 1697 | # digits to be truncated are zeros (so the value is unchanged) |
| 1698 | # -1 indicates that there are nonzero digits to be truncated |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1699 | |
| 1700 | def _round_down(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1701 | """Also known as round-towards-0, truncate.""" |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1702 | if _all_zeros(self._int, prec): |
| 1703 | return 0 |
| 1704 | else: |
| 1705 | return -1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1706 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1707 | def _round_up(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1708 | """Rounds away from 0.""" |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1709 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1710 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1711 | def _round_half_up(self, prec): |
| 1712 | """Rounds 5 up (away from 0)""" |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1713 | if self._int[prec] in '56789': |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1714 | return 1 |
| 1715 | elif _all_zeros(self._int, prec): |
| 1716 | return 0 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1717 | else: |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1718 | return -1 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1719 | |
| 1720 | def _round_half_down(self, prec): |
| 1721 | """Round 5 down""" |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1722 | if _exact_half(self._int, prec): |
| 1723 | return -1 |
| 1724 | else: |
| 1725 | return self._round_half_up(prec) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1726 | |
| 1727 | def _round_half_even(self, prec): |
| 1728 | """Round 5 to even, rest to nearest.""" |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1729 | if _exact_half(self._int, prec) and \ |
| 1730 | (prec == 0 or self._int[prec-1] in '02468'): |
| 1731 | return -1 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1732 | else: |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1733 | return self._round_half_up(prec) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1734 | |
| 1735 | def _round_ceiling(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1736 | """Rounds up (not away from 0 if negative.)""" |
| 1737 | if self._sign: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1738 | return self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1739 | else: |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1740 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1741 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1742 | def _round_floor(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1743 | """Rounds down (not towards 0 if negative)""" |
| 1744 | if not self._sign: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1745 | return self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1746 | else: |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1747 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1748 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1749 | def _round_05up(self, prec): |
| 1750 | """Round down unless digit prec-1 is 0 or 5.""" |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1751 | if prec and self._int[prec-1] not in '05': |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1752 | return self._round_down(prec) |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1753 | else: |
| 1754 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1755 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1756 | def fma(self, other, third, context=None): |
| 1757 | """Fused multiply-add. |
| 1758 | |
| 1759 | Returns self*other+third with no rounding of the intermediate |
| 1760 | product self*other. |
| 1761 | |
| 1762 | self and other are multiplied together, with no rounding of |
| 1763 | the result. The third operand is then added to the result, |
| 1764 | and a single final rounding is performed. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1765 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1766 | |
| 1767 | other = _convert_other(other, raiseit=True) |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1768 | |
| 1769 | # compute product; raise InvalidOperation if either operand is |
| 1770 | # a signaling NaN or if the product is zero times infinity. |
| 1771 | if self._is_special or other._is_special: |
| 1772 | if context is None: |
| 1773 | context = getcontext() |
| 1774 | if self._exp == 'N': |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1775 | return context._raise_error(InvalidOperation, 'sNaN', self) |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1776 | if other._exp == 'N': |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1777 | return context._raise_error(InvalidOperation, 'sNaN', other) |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1778 | if self._exp == 'n': |
| 1779 | product = self |
| 1780 | elif other._exp == 'n': |
| 1781 | product = other |
| 1782 | elif self._exp == 'F': |
| 1783 | if not other: |
| 1784 | return context._raise_error(InvalidOperation, |
| 1785 | 'INF * 0 in fma') |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1786 | product = _SignedInfinity[self._sign ^ other._sign] |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1787 | elif other._exp == 'F': |
| 1788 | if not self: |
| 1789 | return context._raise_error(InvalidOperation, |
| 1790 | '0 * INF in fma') |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1791 | product = _SignedInfinity[self._sign ^ other._sign] |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1792 | else: |
| 1793 | product = _dec_from_triple(self._sign ^ other._sign, |
| 1794 | str(int(self._int) * int(other._int)), |
| 1795 | self._exp + other._exp) |
| 1796 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1797 | third = _convert_other(third, raiseit=True) |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1798 | return product.__add__(third, context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1799 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1800 | def _power_modulo(self, other, modulo, context=None): |
| 1801 | """Three argument version of __pow__""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1802 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1803 | # if can't convert other and modulo to Decimal, raise |
| 1804 | # TypeError; there's no point returning NotImplemented (no |
| 1805 | # equivalent of __rpow__ for three argument pow) |
| 1806 | other = _convert_other(other, raiseit=True) |
| 1807 | modulo = _convert_other(modulo, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1808 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1809 | if context is None: |
| 1810 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1811 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1812 | # deal with NaNs: if there are any sNaNs then first one wins, |
| 1813 | # (i.e. behaviour for NaNs is identical to that of fma) |
| 1814 | self_is_nan = self._isnan() |
| 1815 | other_is_nan = other._isnan() |
| 1816 | modulo_is_nan = modulo._isnan() |
| 1817 | if self_is_nan or other_is_nan or modulo_is_nan: |
| 1818 | if self_is_nan == 2: |
| 1819 | return context._raise_error(InvalidOperation, 'sNaN', |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1820 | self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1821 | if other_is_nan == 2: |
| 1822 | return context._raise_error(InvalidOperation, 'sNaN', |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1823 | other) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1824 | if modulo_is_nan == 2: |
| 1825 | return context._raise_error(InvalidOperation, 'sNaN', |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1826 | modulo) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1827 | if self_is_nan: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1828 | return self._fix_nan(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1829 | if other_is_nan: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1830 | return other._fix_nan(context) |
| 1831 | return modulo._fix_nan(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1832 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1833 | # check inputs: we apply same restrictions as Python's pow() |
| 1834 | if not (self._isinteger() and |
| 1835 | other._isinteger() and |
| 1836 | modulo._isinteger()): |
| 1837 | return context._raise_error(InvalidOperation, |
| 1838 | 'pow() 3rd argument not allowed ' |
| 1839 | 'unless all arguments are integers') |
| 1840 | if other < 0: |
| 1841 | return context._raise_error(InvalidOperation, |
| 1842 | 'pow() 2nd argument cannot be ' |
| 1843 | 'negative when 3rd argument specified') |
| 1844 | if not modulo: |
| 1845 | return context._raise_error(InvalidOperation, |
| 1846 | 'pow() 3rd argument cannot be 0') |
| 1847 | |
| 1848 | # additional restriction for decimal: the modulus must be less |
| 1849 | # than 10**prec in absolute value |
| 1850 | if modulo.adjusted() >= context.prec: |
| 1851 | return context._raise_error(InvalidOperation, |
| 1852 | 'insufficient precision: pow() 3rd ' |
| 1853 | 'argument must not have more than ' |
| 1854 | 'precision digits') |
| 1855 | |
| 1856 | # define 0**0 == NaN, for consistency with two-argument pow |
| 1857 | # (even though it hurts!) |
| 1858 | if not other and not self: |
| 1859 | return context._raise_error(InvalidOperation, |
| 1860 | 'at least one of pow() 1st argument ' |
| 1861 | 'and 2nd argument must be nonzero ;' |
| 1862 | '0**0 is not defined') |
| 1863 | |
| 1864 | # compute sign of result |
| 1865 | if other._iseven(): |
| 1866 | sign = 0 |
| 1867 | else: |
| 1868 | sign = self._sign |
| 1869 | |
| 1870 | # convert modulo to a Python integer, and self and other to |
| 1871 | # Decimal integers (i.e. force their exponents to be >= 0) |
| 1872 | modulo = abs(int(modulo)) |
| 1873 | base = _WorkRep(self.to_integral_value()) |
| 1874 | exponent = _WorkRep(other.to_integral_value()) |
| 1875 | |
| 1876 | # compute result using integer pow() |
| 1877 | base = (base.int % modulo * pow(10, base.exp, modulo)) % modulo |
| 1878 | for i in xrange(exponent.exp): |
| 1879 | base = pow(base, 10, modulo) |
| 1880 | base = pow(base, exponent.int, modulo) |
| 1881 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1882 | return _dec_from_triple(sign, str(base), 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1883 | |
| 1884 | def _power_exact(self, other, p): |
| 1885 | """Attempt to compute self**other exactly. |
| 1886 | |
| 1887 | Given Decimals self and other and an integer p, attempt to |
| 1888 | compute an exact result for the power self**other, with p |
| 1889 | digits of precision. Return None if self**other is not |
| 1890 | exactly representable in p digits. |
| 1891 | |
| 1892 | Assumes that elimination of special cases has already been |
| 1893 | performed: self and other must both be nonspecial; self must |
| 1894 | be positive and not numerically equal to 1; other must be |
| 1895 | nonzero. For efficiency, other._exp should not be too large, |
| 1896 | so that 10**abs(other._exp) is a feasible calculation.""" |
| 1897 | |
| 1898 | # In the comments below, we write x for the value of self and |
| 1899 | # y for the value of other. Write x = xc*10**xe and y = |
| 1900 | # yc*10**ye. |
| 1901 | |
| 1902 | # The main purpose of this method is to identify the *failure* |
| 1903 | # of x**y to be exactly representable with as little effort as |
| 1904 | # possible. So we look for cheap and easy tests that |
| 1905 | # eliminate the possibility of x**y being exact. Only if all |
| 1906 | # these tests are passed do we go on to actually compute x**y. |
| 1907 | |
| 1908 | # Here's the main idea. First normalize both x and y. We |
| 1909 | # express y as a rational m/n, with m and n relatively prime |
| 1910 | # and n>0. Then for x**y to be exactly representable (at |
| 1911 | # *any* precision), xc must be the nth power of a positive |
| 1912 | # integer and xe must be divisible by n. If m is negative |
| 1913 | # then additionally xc must be a power of either 2 or 5, hence |
| 1914 | # a power of 2**n or 5**n. |
| 1915 | # |
| 1916 | # There's a limit to how small |y| can be: if y=m/n as above |
| 1917 | # then: |
| 1918 | # |
| 1919 | # (1) if xc != 1 then for the result to be representable we |
| 1920 | # need xc**(1/n) >= 2, and hence also xc**|y| >= 2. So |
| 1921 | # if |y| <= 1/nbits(xc) then xc < 2**nbits(xc) <= |
| 1922 | # 2**(1/|y|), hence xc**|y| < 2 and the result is not |
| 1923 | # representable. |
| 1924 | # |
| 1925 | # (2) if xe != 0, |xe|*(1/n) >= 1, so |xe|*|y| >= 1. Hence if |
| 1926 | # |y| < 1/|xe| then the result is not representable. |
| 1927 | # |
| 1928 | # Note that since x is not equal to 1, at least one of (1) and |
| 1929 | # (2) must apply. Now |y| < 1/nbits(xc) iff |yc|*nbits(xc) < |
| 1930 | # 10**-ye iff len(str(|yc|*nbits(xc)) <= -ye. |
| 1931 | # |
| 1932 | # There's also a limit to how large y can be, at least if it's |
| 1933 | # positive: the normalized result will have coefficient xc**y, |
| 1934 | # so if it's representable then xc**y < 10**p, and y < |
| 1935 | # p/log10(xc). Hence if y*log10(xc) >= p then the result is |
| 1936 | # not exactly representable. |
| 1937 | |
| 1938 | # if len(str(abs(yc*xe)) <= -ye then abs(yc*xe) < 10**-ye, |
| 1939 | # so |y| < 1/xe and the result is not representable. |
| 1940 | # Similarly, len(str(abs(yc)*xc_bits)) <= -ye implies |y| |
| 1941 | # < 1/nbits(xc). |
| 1942 | |
| 1943 | x = _WorkRep(self) |
| 1944 | xc, xe = x.int, x.exp |
| 1945 | while xc % 10 == 0: |
| 1946 | xc //= 10 |
| 1947 | xe += 1 |
| 1948 | |
| 1949 | y = _WorkRep(other) |
| 1950 | yc, ye = y.int, y.exp |
| 1951 | while yc % 10 == 0: |
| 1952 | yc //= 10 |
| 1953 | ye += 1 |
| 1954 | |
| 1955 | # case where xc == 1: result is 10**(xe*y), with xe*y |
| 1956 | # required to be an integer |
| 1957 | if xc == 1: |
| 1958 | if ye >= 0: |
| 1959 | exponent = xe*yc*10**ye |
| 1960 | else: |
| 1961 | exponent, remainder = divmod(xe*yc, 10**-ye) |
| 1962 | if remainder: |
| 1963 | return None |
| 1964 | if y.sign == 1: |
| 1965 | exponent = -exponent |
| 1966 | # if other is a nonnegative integer, use ideal exponent |
| 1967 | if other._isinteger() and other._sign == 0: |
| 1968 | ideal_exponent = self._exp*int(other) |
| 1969 | zeros = min(exponent-ideal_exponent, p-1) |
| 1970 | else: |
| 1971 | zeros = 0 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1972 | return _dec_from_triple(0, '1' + '0'*zeros, exponent-zeros) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1973 | |
| 1974 | # case where y is negative: xc must be either a power |
| 1975 | # of 2 or a power of 5. |
| 1976 | if y.sign == 1: |
| 1977 | last_digit = xc % 10 |
| 1978 | if last_digit in (2,4,6,8): |
| 1979 | # quick test for power of 2 |
| 1980 | if xc & -xc != xc: |
| 1981 | return None |
| 1982 | # now xc is a power of 2; e is its exponent |
| 1983 | e = _nbits(xc)-1 |
| 1984 | # find e*y and xe*y; both must be integers |
| 1985 | if ye >= 0: |
| 1986 | y_as_int = yc*10**ye |
| 1987 | e = e*y_as_int |
| 1988 | xe = xe*y_as_int |
| 1989 | else: |
| 1990 | ten_pow = 10**-ye |
| 1991 | e, remainder = divmod(e*yc, ten_pow) |
| 1992 | if remainder: |
| 1993 | return None |
| 1994 | xe, remainder = divmod(xe*yc, ten_pow) |
| 1995 | if remainder: |
| 1996 | return None |
| 1997 | |
| 1998 | if e*65 >= p*93: # 93/65 > log(10)/log(5) |
| 1999 | return None |
| 2000 | xc = 5**e |
| 2001 | |
| 2002 | elif last_digit == 5: |
| 2003 | # e >= log_5(xc) if xc is a power of 5; we have |
| 2004 | # equality all the way up to xc=5**2658 |
| 2005 | e = _nbits(xc)*28//65 |
| 2006 | xc, remainder = divmod(5**e, xc) |
| 2007 | if remainder: |
| 2008 | return None |
| 2009 | while xc % 5 == 0: |
| 2010 | xc //= 5 |
| 2011 | e -= 1 |
| 2012 | if ye >= 0: |
| 2013 | y_as_integer = yc*10**ye |
| 2014 | e = e*y_as_integer |
| 2015 | xe = xe*y_as_integer |
| 2016 | else: |
| 2017 | ten_pow = 10**-ye |
| 2018 | e, remainder = divmod(e*yc, ten_pow) |
| 2019 | if remainder: |
| 2020 | return None |
| 2021 | xe, remainder = divmod(xe*yc, ten_pow) |
| 2022 | if remainder: |
| 2023 | return None |
| 2024 | if e*3 >= p*10: # 10/3 > log(10)/log(2) |
| 2025 | return None |
| 2026 | xc = 2**e |
| 2027 | else: |
| 2028 | return None |
| 2029 | |
| 2030 | if xc >= 10**p: |
| 2031 | return None |
| 2032 | xe = -e-xe |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2033 | return _dec_from_triple(0, str(xc), xe) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2034 | |
| 2035 | # now y is positive; find m and n such that y = m/n |
| 2036 | if ye >= 0: |
| 2037 | m, n = yc*10**ye, 1 |
| 2038 | else: |
| 2039 | if xe != 0 and len(str(abs(yc*xe))) <= -ye: |
| 2040 | return None |
| 2041 | xc_bits = _nbits(xc) |
| 2042 | if xc != 1 and len(str(abs(yc)*xc_bits)) <= -ye: |
| 2043 | return None |
| 2044 | m, n = yc, 10**(-ye) |
| 2045 | while m % 2 == n % 2 == 0: |
| 2046 | m //= 2 |
| 2047 | n //= 2 |
| 2048 | while m % 5 == n % 5 == 0: |
| 2049 | m //= 5 |
| 2050 | n //= 5 |
| 2051 | |
| 2052 | # compute nth root of xc*10**xe |
| 2053 | if n > 1: |
| 2054 | # if 1 < xc < 2**n then xc isn't an nth power |
| 2055 | if xc != 1 and xc_bits <= n: |
| 2056 | return None |
| 2057 | |
| 2058 | xe, rem = divmod(xe, n) |
| 2059 | if rem != 0: |
| 2060 | return None |
| 2061 | |
| 2062 | # compute nth root of xc using Newton's method |
| 2063 | a = 1L << -(-_nbits(xc)//n) # initial estimate |
| 2064 | while True: |
| 2065 | q, r = divmod(xc, a**(n-1)) |
| 2066 | if a <= q: |
| 2067 | break |
| 2068 | else: |
| 2069 | a = (a*(n-1) + q)//n |
| 2070 | if not (a == q and r == 0): |
| 2071 | return None |
| 2072 | xc = a |
| 2073 | |
| 2074 | # now xc*10**xe is the nth root of the original xc*10**xe |
| 2075 | # compute mth power of xc*10**xe |
| 2076 | |
| 2077 | # if m > p*100//_log10_lb(xc) then m > p/log10(xc), hence xc**m > |
| 2078 | # 10**p and the result is not representable. |
| 2079 | if xc > 1 and m > p*100//_log10_lb(xc): |
| 2080 | return None |
| 2081 | xc = xc**m |
| 2082 | xe *= m |
| 2083 | if xc > 10**p: |
| 2084 | return None |
| 2085 | |
| 2086 | # by this point the result *is* exactly representable |
| 2087 | # adjust the exponent to get as close as possible to the ideal |
| 2088 | # exponent, if necessary |
| 2089 | str_xc = str(xc) |
| 2090 | if other._isinteger() and other._sign == 0: |
| 2091 | ideal_exponent = self._exp*int(other) |
| 2092 | zeros = min(xe-ideal_exponent, p-len(str_xc)) |
| 2093 | else: |
| 2094 | zeros = 0 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2095 | return _dec_from_triple(0, str_xc+'0'*zeros, xe-zeros) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2096 | |
| 2097 | def __pow__(self, other, modulo=None, context=None): |
| 2098 | """Return self ** other [ % modulo]. |
| 2099 | |
| 2100 | With two arguments, compute self**other. |
| 2101 | |
| 2102 | With three arguments, compute (self**other) % modulo. For the |
| 2103 | three argument form, the following restrictions on the |
| 2104 | arguments hold: |
| 2105 | |
| 2106 | - all three arguments must be integral |
| 2107 | - other must be nonnegative |
| 2108 | - either self or other (or both) must be nonzero |
| 2109 | - modulo must be nonzero and must have at most p digits, |
| 2110 | where p is the context precision. |
| 2111 | |
| 2112 | If any of these restrictions is violated the InvalidOperation |
| 2113 | flag is raised. |
| 2114 | |
| 2115 | The result of pow(self, other, modulo) is identical to the |
| 2116 | result that would be obtained by computing (self**other) % |
| 2117 | modulo with unbounded precision, but is computed more |
| 2118 | efficiently. It is always exact. |
| 2119 | """ |
| 2120 | |
| 2121 | if modulo is not None: |
| 2122 | return self._power_modulo(other, modulo, context) |
| 2123 | |
| 2124 | other = _convert_other(other) |
| 2125 | if other is NotImplemented: |
| 2126 | return other |
| 2127 | |
| 2128 | if context is None: |
| 2129 | context = getcontext() |
| 2130 | |
| 2131 | # either argument is a NaN => result is NaN |
| 2132 | ans = self._check_nans(other, context) |
| 2133 | if ans: |
| 2134 | return ans |
| 2135 | |
| 2136 | # 0**0 = NaN (!), x**0 = 1 for nonzero x (including +/-Infinity) |
| 2137 | if not other: |
| 2138 | if not self: |
| 2139 | return context._raise_error(InvalidOperation, '0 ** 0') |
| 2140 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2141 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2142 | |
| 2143 | # result has sign 1 iff self._sign is 1 and other is an odd integer |
| 2144 | result_sign = 0 |
| 2145 | if self._sign == 1: |
| 2146 | if other._isinteger(): |
| 2147 | if not other._iseven(): |
| 2148 | result_sign = 1 |
| 2149 | else: |
| 2150 | # -ve**noninteger = NaN |
| 2151 | # (-0)**noninteger = 0**noninteger |
| 2152 | if self: |
| 2153 | return context._raise_error(InvalidOperation, |
| 2154 | 'x ** y with x negative and y not an integer') |
| 2155 | # negate self, without doing any unwanted rounding |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2156 | self = self.copy_negate() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2157 | |
| 2158 | # 0**(+ve or Inf)= 0; 0**(-ve or -Inf) = Infinity |
| 2159 | if not self: |
| 2160 | if other._sign == 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2161 | return _dec_from_triple(result_sign, '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2162 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2163 | return _SignedInfinity[result_sign] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2164 | |
| 2165 | # Inf**(+ve or Inf) = Inf; Inf**(-ve or -Inf) = 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2166 | if self._isinfinity(): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2167 | if other._sign == 0: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2168 | return _SignedInfinity[result_sign] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2169 | else: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2170 | return _dec_from_triple(result_sign, '0', 0) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2171 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2172 | # 1**other = 1, but the choice of exponent and the flags |
| 2173 | # depend on the exponent of self, and on whether other is a |
| 2174 | # positive integer, a negative integer, or neither |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2175 | if self == _One: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2176 | if other._isinteger(): |
| 2177 | # exp = max(self._exp*max(int(other), 0), |
| 2178 | # 1-context.prec) but evaluating int(other) directly |
| 2179 | # is dangerous until we know other is small (other |
| 2180 | # could be 1e999999999) |
| 2181 | if other._sign == 1: |
| 2182 | multiplier = 0 |
| 2183 | elif other > context.prec: |
| 2184 | multiplier = context.prec |
| 2185 | else: |
| 2186 | multiplier = int(other) |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 2187 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2188 | exp = self._exp * multiplier |
| 2189 | if exp < 1-context.prec: |
| 2190 | exp = 1-context.prec |
| 2191 | context._raise_error(Rounded) |
| 2192 | else: |
| 2193 | context._raise_error(Inexact) |
| 2194 | context._raise_error(Rounded) |
| 2195 | exp = 1-context.prec |
| 2196 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2197 | return _dec_from_triple(result_sign, '1'+'0'*-exp, exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2198 | |
| 2199 | # compute adjusted exponent of self |
| 2200 | self_adj = self.adjusted() |
| 2201 | |
| 2202 | # self ** infinity is infinity if self > 1, 0 if self < 1 |
| 2203 | # self ** -infinity is infinity if self < 1, 0 if self > 1 |
| 2204 | if other._isinfinity(): |
| 2205 | if (other._sign == 0) == (self_adj < 0): |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2206 | return _dec_from_triple(result_sign, '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2207 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2208 | return _SignedInfinity[result_sign] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2209 | |
| 2210 | # from here on, the result always goes through the call |
| 2211 | # to _fix at the end of this function. |
| 2212 | ans = None |
| 2213 | |
| 2214 | # crude test to catch cases of extreme overflow/underflow. If |
| 2215 | # log10(self)*other >= 10**bound and bound >= len(str(Emax)) |
| 2216 | # then 10**bound >= 10**len(str(Emax)) >= Emax+1 and hence |
| 2217 | # self**other >= 10**(Emax+1), so overflow occurs. The test |
| 2218 | # for underflow is similar. |
| 2219 | bound = self._log10_exp_bound() + other.adjusted() |
| 2220 | if (self_adj >= 0) == (other._sign == 0): |
| 2221 | # self > 1 and other +ve, or self < 1 and other -ve |
| 2222 | # possibility of overflow |
| 2223 | if bound >= len(str(context.Emax)): |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2224 | ans = _dec_from_triple(result_sign, '1', context.Emax+1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2225 | else: |
| 2226 | # self > 1 and other -ve, or self < 1 and other +ve |
| 2227 | # possibility of underflow to 0 |
| 2228 | Etiny = context.Etiny() |
| 2229 | if bound >= len(str(-Etiny)): |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2230 | ans = _dec_from_triple(result_sign, '1', Etiny-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2231 | |
| 2232 | # try for an exact result with precision +1 |
| 2233 | if ans is None: |
| 2234 | ans = self._power_exact(other, context.prec + 1) |
| 2235 | if ans is not None and result_sign == 1: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2236 | ans = _dec_from_triple(1, ans._int, ans._exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2237 | |
| 2238 | # usual case: inexact result, x**y computed directly as exp(y*log(x)) |
| 2239 | if ans is None: |
| 2240 | p = context.prec |
| 2241 | x = _WorkRep(self) |
| 2242 | xc, xe = x.int, x.exp |
| 2243 | y = _WorkRep(other) |
| 2244 | yc, ye = y.int, y.exp |
| 2245 | if y.sign == 1: |
| 2246 | yc = -yc |
| 2247 | |
| 2248 | # compute correctly rounded result: start with precision +3, |
| 2249 | # then increase precision until result is unambiguously roundable |
| 2250 | extra = 3 |
| 2251 | while True: |
| 2252 | coeff, exp = _dpower(xc, xe, yc, ye, p+extra) |
| 2253 | if coeff % (5*10**(len(str(coeff))-p-1)): |
| 2254 | break |
| 2255 | extra += 3 |
| 2256 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2257 | ans = _dec_from_triple(result_sign, str(coeff), exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2258 | |
| 2259 | # the specification says that for non-integer other we need to |
| 2260 | # raise Inexact, even when the result is actually exact. In |
| 2261 | # the same way, we need to raise Underflow here if the result |
| 2262 | # is subnormal. (The call to _fix will take care of raising |
| 2263 | # Rounded and Subnormal, as usual.) |
| 2264 | if not other._isinteger(): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2265 | context._raise_error(Inexact) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2266 | # pad with zeros up to length context.prec+1 if necessary |
| 2267 | if len(ans._int) <= context.prec: |
| 2268 | expdiff = context.prec+1 - len(ans._int) |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2269 | ans = _dec_from_triple(ans._sign, ans._int+'0'*expdiff, |
| 2270 | ans._exp-expdiff) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2271 | if ans.adjusted() < context.Emin: |
| 2272 | context._raise_error(Underflow) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2273 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2274 | # unlike exp, ln and log10, the power function respects the |
| 2275 | # rounding mode; no need to use ROUND_HALF_EVEN here |
| 2276 | ans = ans._fix(context) |
| 2277 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2278 | |
| 2279 | def __rpow__(self, other, context=None): |
| 2280 | """Swaps self/other and returns __pow__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2281 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 2282 | if other is NotImplemented: |
| 2283 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2284 | return other.__pow__(self, context=context) |
| 2285 | |
| 2286 | def normalize(self, context=None): |
| 2287 | """Normalize- strip trailing 0s, change anything equal to 0 to 0e0""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2288 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2289 | if context is None: |
| 2290 | context = getcontext() |
| 2291 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2292 | if self._is_special: |
| 2293 | ans = self._check_nans(context=context) |
| 2294 | if ans: |
| 2295 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2296 | |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 2297 | dup = self._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2298 | if dup._isinfinity(): |
| 2299 | return dup |
| 2300 | |
| 2301 | if not dup: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2302 | return _dec_from_triple(dup._sign, '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2303 | exp_max = [context.Emax, context.Etop()][context._clamp] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2304 | end = len(dup._int) |
| 2305 | exp = dup._exp |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2306 | while dup._int[end-1] == '0' and exp < exp_max: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2307 | exp += 1 |
| 2308 | end -= 1 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2309 | return _dec_from_triple(dup._sign, dup._int[:end], exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2310 | |
Facundo Batista | bd2fe83 | 2007-09-13 18:42:09 +0000 | [diff] [blame] | 2311 | def quantize(self, exp, rounding=None, context=None, watchexp=True): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2312 | """Quantize self so its exponent is the same as that of exp. |
| 2313 | |
| 2314 | Similar to self._rescale(exp._exp) but with error checking. |
| 2315 | """ |
Facundo Batista | bd2fe83 | 2007-09-13 18:42:09 +0000 | [diff] [blame] | 2316 | exp = _convert_other(exp, raiseit=True) |
| 2317 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2318 | if context is None: |
| 2319 | context = getcontext() |
| 2320 | if rounding is None: |
| 2321 | rounding = context.rounding |
| 2322 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2323 | if self._is_special or exp._is_special: |
| 2324 | ans = self._check_nans(exp, context) |
| 2325 | if ans: |
| 2326 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2327 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2328 | if exp._isinfinity() or self._isinfinity(): |
| 2329 | if exp._isinfinity() and self._isinfinity(): |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2330 | return Decimal(self) # if both are inf, it is OK |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2331 | return context._raise_error(InvalidOperation, |
| 2332 | 'quantize with one INF') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2333 | |
Facundo Batista | bd2fe83 | 2007-09-13 18:42:09 +0000 | [diff] [blame] | 2334 | # if we're not watching exponents, do a simple rescale |
| 2335 | if not watchexp: |
| 2336 | ans = self._rescale(exp._exp, rounding) |
| 2337 | # raise Inexact and Rounded where appropriate |
| 2338 | if ans._exp > self._exp: |
| 2339 | context._raise_error(Rounded) |
| 2340 | if ans != self: |
| 2341 | context._raise_error(Inexact) |
| 2342 | return ans |
| 2343 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2344 | # exp._exp should be between Etiny and Emax |
| 2345 | if not (context.Etiny() <= exp._exp <= context.Emax): |
| 2346 | return context._raise_error(InvalidOperation, |
| 2347 | 'target exponent out of bounds in quantize') |
| 2348 | |
| 2349 | if not self: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2350 | ans = _dec_from_triple(self._sign, '0', exp._exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2351 | return ans._fix(context) |
| 2352 | |
| 2353 | self_adjusted = self.adjusted() |
| 2354 | if self_adjusted > context.Emax: |
| 2355 | return context._raise_error(InvalidOperation, |
| 2356 | 'exponent of quantize result too large for current context') |
| 2357 | if self_adjusted - exp._exp + 1 > context.prec: |
| 2358 | return context._raise_error(InvalidOperation, |
| 2359 | 'quantize result has too many digits for current context') |
| 2360 | |
| 2361 | ans = self._rescale(exp._exp, rounding) |
| 2362 | if ans.adjusted() > context.Emax: |
| 2363 | return context._raise_error(InvalidOperation, |
| 2364 | 'exponent of quantize result too large for current context') |
| 2365 | if len(ans._int) > context.prec: |
| 2366 | return context._raise_error(InvalidOperation, |
| 2367 | 'quantize result has too many digits for current context') |
| 2368 | |
| 2369 | # raise appropriate flags |
| 2370 | if ans._exp > self._exp: |
| 2371 | context._raise_error(Rounded) |
| 2372 | if ans != self: |
| 2373 | context._raise_error(Inexact) |
| 2374 | if ans and ans.adjusted() < context.Emin: |
| 2375 | context._raise_error(Subnormal) |
| 2376 | |
| 2377 | # call to fix takes care of any necessary folddown |
| 2378 | ans = ans._fix(context) |
| 2379 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2380 | |
| 2381 | def same_quantum(self, other): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2382 | """Return True if self and other have the same exponent; otherwise |
| 2383 | return False. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2384 | |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2385 | If either operand is a special value, the following rules are used: |
| 2386 | * return True if both operands are infinities |
| 2387 | * return True if both operands are NaNs |
| 2388 | * otherwise, return False. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2389 | """ |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2390 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2391 | if self._is_special or other._is_special: |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2392 | return (self.is_nan() and other.is_nan() or |
| 2393 | self.is_infinite() and other.is_infinite()) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2394 | return self._exp == other._exp |
| 2395 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2396 | def _rescale(self, exp, rounding): |
| 2397 | """Rescale self so that the exponent is exp, either by padding with zeros |
| 2398 | or by truncating digits, using the given rounding mode. |
| 2399 | |
| 2400 | Specials are returned without change. This operation is |
| 2401 | quiet: it raises no flags, and uses no information from the |
| 2402 | context. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2403 | |
| 2404 | exp = exp to scale to (an integer) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2405 | rounding = rounding mode |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2406 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2407 | if self._is_special: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2408 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2409 | if not self: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2410 | return _dec_from_triple(self._sign, '0', exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2411 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2412 | if self._exp >= exp: |
| 2413 | # pad answer with zeros if necessary |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2414 | return _dec_from_triple(self._sign, |
| 2415 | self._int + '0'*(self._exp - exp), exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2416 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2417 | # too many digits; round and lose data. If self.adjusted() < |
| 2418 | # exp-1, replace self by 10**(exp-1) before rounding |
| 2419 | digits = len(self._int) + self._exp - exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2420 | if digits < 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2421 | self = _dec_from_triple(self._sign, '1', exp-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2422 | digits = 0 |
| 2423 | this_function = getattr(self, self._pick_rounding_function[rounding]) |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 2424 | changed = this_function(digits) |
| 2425 | coeff = self._int[:digits] or '0' |
| 2426 | if changed == 1: |
| 2427 | coeff = str(int(coeff)+1) |
| 2428 | return _dec_from_triple(self._sign, coeff, exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2429 | |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 2430 | def _round(self, places, rounding): |
| 2431 | """Round a nonzero, nonspecial Decimal to a fixed number of |
| 2432 | significant figures, using the given rounding mode. |
| 2433 | |
| 2434 | Infinities, NaNs and zeros are returned unaltered. |
| 2435 | |
| 2436 | This operation is quiet: it raises no flags, and uses no |
| 2437 | information from the context. |
| 2438 | |
| 2439 | """ |
| 2440 | if places <= 0: |
| 2441 | raise ValueError("argument should be at least 1 in _round") |
| 2442 | if self._is_special or not self: |
| 2443 | return Decimal(self) |
| 2444 | ans = self._rescale(self.adjusted()+1-places, rounding) |
| 2445 | # it can happen that the rescale alters the adjusted exponent; |
| 2446 | # for example when rounding 99.97 to 3 significant figures. |
| 2447 | # When this happens we end up with an extra 0 at the end of |
| 2448 | # the number; a second rescale fixes this. |
| 2449 | if ans.adjusted() != self.adjusted(): |
| 2450 | ans = ans._rescale(ans.adjusted()+1-places, rounding) |
| 2451 | return ans |
| 2452 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2453 | def to_integral_exact(self, rounding=None, context=None): |
| 2454 | """Rounds to a nearby integer. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2455 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2456 | If no rounding mode is specified, take the rounding mode from |
| 2457 | the context. This method raises the Rounded and Inexact flags |
| 2458 | when appropriate. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2459 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2460 | See also: to_integral_value, which does exactly the same as |
| 2461 | this method except that it doesn't raise Inexact or Rounded. |
| 2462 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2463 | if self._is_special: |
| 2464 | ans = self._check_nans(context=context) |
| 2465 | if ans: |
| 2466 | return ans |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2467 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2468 | if self._exp >= 0: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2469 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2470 | if not self: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2471 | return _dec_from_triple(self._sign, '0', 0) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2472 | if context is None: |
| 2473 | context = getcontext() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2474 | if rounding is None: |
| 2475 | rounding = context.rounding |
| 2476 | context._raise_error(Rounded) |
| 2477 | ans = self._rescale(0, rounding) |
| 2478 | if ans != self: |
| 2479 | context._raise_error(Inexact) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2480 | return ans |
| 2481 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2482 | def to_integral_value(self, rounding=None, context=None): |
| 2483 | """Rounds to the nearest integer, without raising inexact, rounded.""" |
| 2484 | if context is None: |
| 2485 | context = getcontext() |
| 2486 | if rounding is None: |
| 2487 | rounding = context.rounding |
| 2488 | if self._is_special: |
| 2489 | ans = self._check_nans(context=context) |
| 2490 | if ans: |
| 2491 | return ans |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2492 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2493 | if self._exp >= 0: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2494 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2495 | else: |
| 2496 | return self._rescale(0, rounding) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2497 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2498 | # the method name changed, but we provide also the old one, for compatibility |
| 2499 | to_integral = to_integral_value |
| 2500 | |
| 2501 | def sqrt(self, context=None): |
| 2502 | """Return the square root of self.""" |
Mark Dickinson | 3b24ccb | 2008-03-25 14:33:23 +0000 | [diff] [blame] | 2503 | if context is None: |
| 2504 | context = getcontext() |
| 2505 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2506 | if self._is_special: |
| 2507 | ans = self._check_nans(context=context) |
| 2508 | if ans: |
| 2509 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2510 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2511 | if self._isinfinity() and self._sign == 0: |
| 2512 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2513 | |
| 2514 | if not self: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2515 | # exponent = self._exp // 2. sqrt(-0) = -0 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2516 | ans = _dec_from_triple(self._sign, '0', self._exp // 2) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2517 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2518 | |
| 2519 | if self._sign == 1: |
| 2520 | return context._raise_error(InvalidOperation, 'sqrt(-x), x > 0') |
| 2521 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2522 | # At this point self represents a positive number. Let p be |
| 2523 | # the desired precision and express self in the form c*100**e |
| 2524 | # with c a positive real number and e an integer, c and e |
| 2525 | # being chosen so that 100**(p-1) <= c < 100**p. Then the |
| 2526 | # (exact) square root of self is sqrt(c)*10**e, and 10**(p-1) |
| 2527 | # <= sqrt(c) < 10**p, so the closest representable Decimal at |
| 2528 | # precision p is n*10**e where n = round_half_even(sqrt(c)), |
| 2529 | # the closest integer to sqrt(c) with the even integer chosen |
| 2530 | # in the case of a tie. |
| 2531 | # |
| 2532 | # To ensure correct rounding in all cases, we use the |
| 2533 | # following trick: we compute the square root to an extra |
| 2534 | # place (precision p+1 instead of precision p), rounding down. |
| 2535 | # Then, if the result is inexact and its last digit is 0 or 5, |
| 2536 | # we increase the last digit to 1 or 6 respectively; if it's |
| 2537 | # exact we leave the last digit alone. Now the final round to |
| 2538 | # p places (or fewer in the case of underflow) will round |
| 2539 | # correctly and raise the appropriate flags. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2540 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2541 | # use an extra digit of precision |
| 2542 | prec = context.prec+1 |
| 2543 | |
| 2544 | # write argument in the form c*100**e where e = self._exp//2 |
| 2545 | # is the 'ideal' exponent, to be used if the square root is |
| 2546 | # exactly representable. l is the number of 'digits' of c in |
| 2547 | # base 100, so that 100**(l-1) <= c < 100**l. |
| 2548 | op = _WorkRep(self) |
| 2549 | e = op.exp >> 1 |
| 2550 | if op.exp & 1: |
| 2551 | c = op.int * 10 |
| 2552 | l = (len(self._int) >> 1) + 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2553 | else: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2554 | c = op.int |
| 2555 | l = len(self._int)+1 >> 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2556 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2557 | # rescale so that c has exactly prec base 100 'digits' |
| 2558 | shift = prec-l |
| 2559 | if shift >= 0: |
| 2560 | c *= 100**shift |
| 2561 | exact = True |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2562 | else: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2563 | c, remainder = divmod(c, 100**-shift) |
| 2564 | exact = not remainder |
| 2565 | e -= shift |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 2566 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2567 | # find n = floor(sqrt(c)) using Newton's method |
| 2568 | n = 10**prec |
| 2569 | while True: |
| 2570 | q = c//n |
| 2571 | if n <= q: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2572 | break |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2573 | else: |
| 2574 | n = n + q >> 1 |
| 2575 | exact = exact and n*n == c |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2576 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2577 | if exact: |
| 2578 | # result is exact; rescale to use ideal exponent e |
| 2579 | if shift >= 0: |
| 2580 | # assert n % 10**shift == 0 |
| 2581 | n //= 10**shift |
| 2582 | else: |
| 2583 | n *= 10**-shift |
| 2584 | e += shift |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2585 | else: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2586 | # result is not exact; fix last digit as described above |
| 2587 | if n % 5 == 0: |
| 2588 | n += 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2589 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2590 | ans = _dec_from_triple(0, str(n), e) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2591 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2592 | # round, and fit to current context |
| 2593 | context = context._shallow_copy() |
| 2594 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 2595 | ans = ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2596 | context.rounding = rounding |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2597 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2598 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2599 | |
| 2600 | def max(self, other, context=None): |
| 2601 | """Returns the larger value. |
| 2602 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2603 | Like max(self, other) except if one is not a number, returns |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2604 | NaN (and signals if one is sNaN). Also rounds. |
| 2605 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2606 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2607 | |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2608 | if context is None: |
| 2609 | context = getcontext() |
| 2610 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2611 | if self._is_special or other._is_special: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2612 | # If one operand is a quiet NaN and the other is number, then the |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2613 | # number is always returned |
| 2614 | sn = self._isnan() |
| 2615 | on = other._isnan() |
| 2616 | if sn or on: |
Facundo Batista | e29d435 | 2008-12-11 04:19:46 +0000 | [diff] [blame] | 2617 | if on == 1 and sn == 0: |
| 2618 | return self._fix(context) |
| 2619 | if sn == 1 and on == 0: |
| 2620 | return other._fix(context) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2621 | return self._check_nans(other, context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2622 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 2623 | c = self._cmp(other) |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2624 | if c == 0: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2625 | # If both operands are finite and equal in numerical value |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2626 | # then an ordering is applied: |
| 2627 | # |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2628 | # If the signs differ then max returns the operand with the |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2629 | # positive sign and min returns the operand with the negative sign |
| 2630 | # |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2631 | # If the signs are the same then the exponent is used to select |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2632 | # the result. This is exactly the ordering used in compare_total. |
| 2633 | c = self.compare_total(other) |
| 2634 | |
| 2635 | if c == -1: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2636 | ans = other |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2637 | else: |
| 2638 | ans = self |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2639 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 2640 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2641 | |
| 2642 | def min(self, other, context=None): |
| 2643 | """Returns the smaller value. |
| 2644 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2645 | Like min(self, other) except if one is not a number, returns |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2646 | NaN (and signals if one is sNaN). Also rounds. |
| 2647 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2648 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2649 | |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2650 | if context is None: |
| 2651 | context = getcontext() |
| 2652 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2653 | if self._is_special or other._is_special: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2654 | # If one operand is a quiet NaN and the other is number, then the |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2655 | # number is always returned |
| 2656 | sn = self._isnan() |
| 2657 | on = other._isnan() |
| 2658 | if sn or on: |
Facundo Batista | e29d435 | 2008-12-11 04:19:46 +0000 | [diff] [blame] | 2659 | if on == 1 and sn == 0: |
| 2660 | return self._fix(context) |
| 2661 | if sn == 1 and on == 0: |
| 2662 | return other._fix(context) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2663 | return self._check_nans(other, context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2664 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 2665 | c = self._cmp(other) |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2666 | if c == 0: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2667 | c = self.compare_total(other) |
| 2668 | |
| 2669 | if c == -1: |
| 2670 | ans = self |
| 2671 | else: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2672 | ans = other |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2673 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 2674 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2675 | |
| 2676 | def _isinteger(self): |
| 2677 | """Returns whether self is an integer""" |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2678 | if self._is_special: |
| 2679 | return False |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2680 | if self._exp >= 0: |
| 2681 | return True |
| 2682 | rest = self._int[self._exp:] |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2683 | return rest == '0'*len(rest) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2684 | |
| 2685 | def _iseven(self): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2686 | """Returns True if self is even. Assumes self is an integer.""" |
| 2687 | if not self or self._exp > 0: |
| 2688 | return True |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2689 | return self._int[-1+self._exp] in '02468' |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2690 | |
| 2691 | def adjusted(self): |
| 2692 | """Return the adjusted exponent of self""" |
| 2693 | try: |
| 2694 | return self._exp + len(self._int) - 1 |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2695 | # If NaN or Infinity, self._exp is string |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2696 | except TypeError: |
| 2697 | return 0 |
| 2698 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2699 | def canonical(self, context=None): |
| 2700 | """Returns the same Decimal object. |
| 2701 | |
| 2702 | As we do not have different encodings for the same number, the |
| 2703 | received object already is in its canonical form. |
| 2704 | """ |
| 2705 | return self |
| 2706 | |
| 2707 | def compare_signal(self, other, context=None): |
| 2708 | """Compares self to the other operand numerically. |
| 2709 | |
| 2710 | It's pretty much like compare(), but all NaNs signal, with signaling |
| 2711 | NaNs taking precedence over quiet NaNs. |
| 2712 | """ |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 2713 | other = _convert_other(other, raiseit = True) |
| 2714 | ans = self._compare_check_nans(other, context) |
| 2715 | if ans: |
| 2716 | return ans |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2717 | return self.compare(other, context=context) |
| 2718 | |
| 2719 | def compare_total(self, other): |
| 2720 | """Compares self to other using the abstract representations. |
| 2721 | |
| 2722 | This is not like the standard compare, which use their numerical |
| 2723 | value. Note that a total ordering is defined for all possible abstract |
| 2724 | representations. |
| 2725 | """ |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 2726 | other = _convert_other(other, raiseit=True) |
| 2727 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2728 | # if one is negative and the other is positive, it's easy |
| 2729 | if self._sign and not other._sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2730 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2731 | if not self._sign and other._sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2732 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2733 | sign = self._sign |
| 2734 | |
| 2735 | # let's handle both NaN types |
| 2736 | self_nan = self._isnan() |
| 2737 | other_nan = other._isnan() |
| 2738 | if self_nan or other_nan: |
| 2739 | if self_nan == other_nan: |
Mark Dickinson | 7a7739d | 2009-08-28 13:25:02 +0000 | [diff] [blame] | 2740 | # compare payloads as though they're integers |
| 2741 | self_key = len(self._int), self._int |
| 2742 | other_key = len(other._int), other._int |
| 2743 | if self_key < other_key: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2744 | if sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2745 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2746 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2747 | return _NegativeOne |
Mark Dickinson | 7a7739d | 2009-08-28 13:25:02 +0000 | [diff] [blame] | 2748 | if self_key > other_key: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2749 | if sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2750 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2751 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2752 | return _One |
| 2753 | return _Zero |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2754 | |
| 2755 | if sign: |
| 2756 | if self_nan == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2757 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2758 | if other_nan == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2759 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2760 | if self_nan == 2: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2761 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2762 | if other_nan == 2: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2763 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2764 | else: |
| 2765 | if self_nan == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2766 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2767 | if other_nan == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2768 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2769 | if self_nan == 2: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2770 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2771 | if other_nan == 2: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2772 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2773 | |
| 2774 | if self < other: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2775 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2776 | if self > other: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2777 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2778 | |
| 2779 | if self._exp < other._exp: |
| 2780 | if sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2781 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2782 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2783 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2784 | if self._exp > other._exp: |
| 2785 | if sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2786 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2787 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2788 | return _One |
| 2789 | return _Zero |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2790 | |
| 2791 | |
| 2792 | def compare_total_mag(self, other): |
| 2793 | """Compares self to other using abstract repr., ignoring sign. |
| 2794 | |
| 2795 | Like compare_total, but with operand's sign ignored and assumed to be 0. |
| 2796 | """ |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 2797 | other = _convert_other(other, raiseit=True) |
| 2798 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2799 | s = self.copy_abs() |
| 2800 | o = other.copy_abs() |
| 2801 | return s.compare_total(o) |
| 2802 | |
| 2803 | def copy_abs(self): |
| 2804 | """Returns a copy with the sign set to 0. """ |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2805 | return _dec_from_triple(0, self._int, self._exp, self._is_special) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2806 | |
| 2807 | def copy_negate(self): |
| 2808 | """Returns a copy with the sign inverted.""" |
| 2809 | if self._sign: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2810 | return _dec_from_triple(0, self._int, self._exp, self._is_special) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2811 | else: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2812 | return _dec_from_triple(1, self._int, self._exp, self._is_special) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2813 | |
| 2814 | def copy_sign(self, other): |
| 2815 | """Returns self with the sign of other.""" |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 2816 | other = _convert_other(other, raiseit=True) |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2817 | return _dec_from_triple(other._sign, self._int, |
| 2818 | self._exp, self._is_special) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2819 | |
| 2820 | def exp(self, context=None): |
| 2821 | """Returns e ** self.""" |
| 2822 | |
| 2823 | if context is None: |
| 2824 | context = getcontext() |
| 2825 | |
| 2826 | # exp(NaN) = NaN |
| 2827 | ans = self._check_nans(context=context) |
| 2828 | if ans: |
| 2829 | return ans |
| 2830 | |
| 2831 | # exp(-Infinity) = 0 |
| 2832 | if self._isinfinity() == -1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2833 | return _Zero |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2834 | |
| 2835 | # exp(0) = 1 |
| 2836 | if not self: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2837 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2838 | |
| 2839 | # exp(Infinity) = Infinity |
| 2840 | if self._isinfinity() == 1: |
| 2841 | return Decimal(self) |
| 2842 | |
| 2843 | # the result is now guaranteed to be inexact (the true |
| 2844 | # mathematical result is transcendental). There's no need to |
| 2845 | # raise Rounded and Inexact here---they'll always be raised as |
| 2846 | # a result of the call to _fix. |
| 2847 | p = context.prec |
| 2848 | adj = self.adjusted() |
| 2849 | |
| 2850 | # we only need to do any computation for quite a small range |
| 2851 | # of adjusted exponents---for example, -29 <= adj <= 10 for |
| 2852 | # the default context. For smaller exponent the result is |
| 2853 | # indistinguishable from 1 at the given precision, while for |
| 2854 | # larger exponent the result either overflows or underflows. |
| 2855 | if self._sign == 0 and adj > len(str((context.Emax+1)*3)): |
| 2856 | # overflow |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2857 | ans = _dec_from_triple(0, '1', context.Emax+1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2858 | elif self._sign == 1 and adj > len(str((-context.Etiny()+1)*3)): |
| 2859 | # underflow to 0 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2860 | ans = _dec_from_triple(0, '1', context.Etiny()-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2861 | elif self._sign == 0 and adj < -p: |
| 2862 | # p+1 digits; final round will raise correct flags |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2863 | ans = _dec_from_triple(0, '1' + '0'*(p-1) + '1', -p) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2864 | elif self._sign == 1 and adj < -p-1: |
| 2865 | # p+1 digits; final round will raise correct flags |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2866 | ans = _dec_from_triple(0, '9'*(p+1), -p-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2867 | # general case |
| 2868 | else: |
| 2869 | op = _WorkRep(self) |
| 2870 | c, e = op.int, op.exp |
| 2871 | if op.sign == 1: |
| 2872 | c = -c |
| 2873 | |
| 2874 | # compute correctly rounded result: increase precision by |
| 2875 | # 3 digits at a time until we get an unambiguously |
| 2876 | # roundable result |
| 2877 | extra = 3 |
| 2878 | while True: |
| 2879 | coeff, exp = _dexp(c, e, p+extra) |
| 2880 | if coeff % (5*10**(len(str(coeff))-p-1)): |
| 2881 | break |
| 2882 | extra += 3 |
| 2883 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2884 | ans = _dec_from_triple(0, str(coeff), exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2885 | |
| 2886 | # at this stage, ans should round correctly with *any* |
| 2887 | # rounding mode, not just with ROUND_HALF_EVEN |
| 2888 | context = context._shallow_copy() |
| 2889 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
| 2890 | ans = ans._fix(context) |
| 2891 | context.rounding = rounding |
| 2892 | |
| 2893 | return ans |
| 2894 | |
| 2895 | def is_canonical(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2896 | """Return True if self is canonical; otherwise return False. |
| 2897 | |
| 2898 | Currently, the encoding of a Decimal instance is always |
| 2899 | canonical, so this method returns True for any Decimal. |
| 2900 | """ |
| 2901 | return True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2902 | |
| 2903 | def is_finite(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2904 | """Return True if self is finite; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2905 | |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2906 | A Decimal instance is considered finite if it is neither |
| 2907 | infinite nor a NaN. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2908 | """ |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2909 | return not self._is_special |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2910 | |
| 2911 | def is_infinite(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2912 | """Return True if self is infinite; otherwise return False.""" |
| 2913 | return self._exp == 'F' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2914 | |
| 2915 | def is_nan(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2916 | """Return True if self is a qNaN or sNaN; otherwise return False.""" |
| 2917 | return self._exp in ('n', 'N') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2918 | |
| 2919 | def is_normal(self, context=None): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2920 | """Return True if self is a normal number; otherwise return False.""" |
| 2921 | if self._is_special or not self: |
| 2922 | return False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2923 | if context is None: |
| 2924 | context = getcontext() |
Mark Dickinson | a7a52ab | 2009-10-20 13:33:03 +0000 | [diff] [blame] | 2925 | return context.Emin <= self.adjusted() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2926 | |
| 2927 | def is_qnan(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2928 | """Return True if self is a quiet NaN; otherwise return False.""" |
| 2929 | return self._exp == 'n' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2930 | |
| 2931 | def is_signed(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2932 | """Return True if self is negative; otherwise return False.""" |
| 2933 | return self._sign == 1 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2934 | |
| 2935 | def is_snan(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2936 | """Return True if self is a signaling NaN; otherwise return False.""" |
| 2937 | return self._exp == 'N' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2938 | |
| 2939 | def is_subnormal(self, context=None): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2940 | """Return True if self is subnormal; otherwise return False.""" |
| 2941 | if self._is_special or not self: |
| 2942 | return False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2943 | if context is None: |
| 2944 | context = getcontext() |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2945 | return self.adjusted() < context.Emin |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2946 | |
| 2947 | def is_zero(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2948 | """Return True if self is a zero; otherwise return False.""" |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2949 | return not self._is_special and self._int == '0' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2950 | |
| 2951 | def _ln_exp_bound(self): |
| 2952 | """Compute a lower bound for the adjusted exponent of self.ln(). |
| 2953 | In other words, compute r such that self.ln() >= 10**r. Assumes |
| 2954 | that self is finite and positive and that self != 1. |
| 2955 | """ |
| 2956 | |
| 2957 | # for 0.1 <= x <= 10 we use the inequalities 1-1/x <= ln(x) <= x-1 |
| 2958 | adj = self._exp + len(self._int) - 1 |
| 2959 | if adj >= 1: |
| 2960 | # argument >= 10; we use 23/10 = 2.3 as a lower bound for ln(10) |
| 2961 | return len(str(adj*23//10)) - 1 |
| 2962 | if adj <= -2: |
| 2963 | # argument <= 0.1 |
| 2964 | return len(str((-1-adj)*23//10)) - 1 |
| 2965 | op = _WorkRep(self) |
| 2966 | c, e = op.int, op.exp |
| 2967 | if adj == 0: |
| 2968 | # 1 < self < 10 |
| 2969 | num = str(c-10**-e) |
| 2970 | den = str(c) |
| 2971 | return len(num) - len(den) - (num < den) |
| 2972 | # adj == -1, 0.1 <= self < 1 |
| 2973 | return e + len(str(10**-e - c)) - 1 |
| 2974 | |
| 2975 | |
| 2976 | def ln(self, context=None): |
| 2977 | """Returns the natural (base e) logarithm of self.""" |
| 2978 | |
| 2979 | if context is None: |
| 2980 | context = getcontext() |
| 2981 | |
| 2982 | # ln(NaN) = NaN |
| 2983 | ans = self._check_nans(context=context) |
| 2984 | if ans: |
| 2985 | return ans |
| 2986 | |
| 2987 | # ln(0.0) == -Infinity |
| 2988 | if not self: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2989 | return _NegativeInfinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2990 | |
| 2991 | # ln(Infinity) = Infinity |
| 2992 | if self._isinfinity() == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2993 | return _Infinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2994 | |
| 2995 | # ln(1.0) == 0.0 |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2996 | if self == _One: |
| 2997 | return _Zero |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2998 | |
| 2999 | # ln(negative) raises InvalidOperation |
| 3000 | if self._sign == 1: |
| 3001 | return context._raise_error(InvalidOperation, |
| 3002 | 'ln of a negative value') |
| 3003 | |
| 3004 | # result is irrational, so necessarily inexact |
| 3005 | op = _WorkRep(self) |
| 3006 | c, e = op.int, op.exp |
| 3007 | p = context.prec |
| 3008 | |
| 3009 | # correctly rounded result: repeatedly increase precision by 3 |
| 3010 | # until we get an unambiguously roundable result |
| 3011 | places = p - self._ln_exp_bound() + 2 # at least p+3 places |
| 3012 | while True: |
| 3013 | coeff = _dlog(c, e, places) |
| 3014 | # assert len(str(abs(coeff)))-p >= 1 |
| 3015 | if coeff % (5*10**(len(str(abs(coeff)))-p-1)): |
| 3016 | break |
| 3017 | places += 3 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3018 | ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3019 | |
| 3020 | context = context._shallow_copy() |
| 3021 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
| 3022 | ans = ans._fix(context) |
| 3023 | context.rounding = rounding |
| 3024 | return ans |
| 3025 | |
| 3026 | def _log10_exp_bound(self): |
| 3027 | """Compute a lower bound for the adjusted exponent of self.log10(). |
| 3028 | In other words, find r such that self.log10() >= 10**r. |
| 3029 | Assumes that self is finite and positive and that self != 1. |
| 3030 | """ |
| 3031 | |
| 3032 | # For x >= 10 or x < 0.1 we only need a bound on the integer |
| 3033 | # part of log10(self), and this comes directly from the |
| 3034 | # exponent of x. For 0.1 <= x <= 10 we use the inequalities |
| 3035 | # 1-1/x <= log(x) <= x-1. If x > 1 we have |log10(x)| > |
| 3036 | # (1-1/x)/2.31 > 0. If x < 1 then |log10(x)| > (1-x)/2.31 > 0 |
| 3037 | |
| 3038 | adj = self._exp + len(self._int) - 1 |
| 3039 | if adj >= 1: |
| 3040 | # self >= 10 |
| 3041 | return len(str(adj))-1 |
| 3042 | if adj <= -2: |
| 3043 | # self < 0.1 |
| 3044 | return len(str(-1-adj))-1 |
| 3045 | op = _WorkRep(self) |
| 3046 | c, e = op.int, op.exp |
| 3047 | if adj == 0: |
| 3048 | # 1 < self < 10 |
| 3049 | num = str(c-10**-e) |
| 3050 | den = str(231*c) |
| 3051 | return len(num) - len(den) - (num < den) + 2 |
| 3052 | # adj == -1, 0.1 <= self < 1 |
| 3053 | num = str(10**-e-c) |
| 3054 | return len(num) + e - (num < "231") - 1 |
| 3055 | |
| 3056 | def log10(self, context=None): |
| 3057 | """Returns the base 10 logarithm of self.""" |
| 3058 | |
| 3059 | if context is None: |
| 3060 | context = getcontext() |
| 3061 | |
| 3062 | # log10(NaN) = NaN |
| 3063 | ans = self._check_nans(context=context) |
| 3064 | if ans: |
| 3065 | return ans |
| 3066 | |
| 3067 | # log10(0.0) == -Infinity |
| 3068 | if not self: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3069 | return _NegativeInfinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3070 | |
| 3071 | # log10(Infinity) = Infinity |
| 3072 | if self._isinfinity() == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3073 | return _Infinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3074 | |
| 3075 | # log10(negative or -Infinity) raises InvalidOperation |
| 3076 | if self._sign == 1: |
| 3077 | return context._raise_error(InvalidOperation, |
| 3078 | 'log10 of a negative value') |
| 3079 | |
| 3080 | # log10(10**n) = n |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3081 | if self._int[0] == '1' and self._int[1:] == '0'*(len(self._int) - 1): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3082 | # answer may need rounding |
| 3083 | ans = Decimal(self._exp + len(self._int) - 1) |
| 3084 | else: |
| 3085 | # result is irrational, so necessarily inexact |
| 3086 | op = _WorkRep(self) |
| 3087 | c, e = op.int, op.exp |
| 3088 | p = context.prec |
| 3089 | |
| 3090 | # correctly rounded result: repeatedly increase precision |
| 3091 | # until result is unambiguously roundable |
| 3092 | places = p-self._log10_exp_bound()+2 |
| 3093 | while True: |
| 3094 | coeff = _dlog10(c, e, places) |
| 3095 | # assert len(str(abs(coeff)))-p >= 1 |
| 3096 | if coeff % (5*10**(len(str(abs(coeff)))-p-1)): |
| 3097 | break |
| 3098 | places += 3 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3099 | ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3100 | |
| 3101 | context = context._shallow_copy() |
| 3102 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
| 3103 | ans = ans._fix(context) |
| 3104 | context.rounding = rounding |
| 3105 | return ans |
| 3106 | |
| 3107 | def logb(self, context=None): |
| 3108 | """ Returns the exponent of the magnitude of self's MSD. |
| 3109 | |
| 3110 | The result is the integer which is the exponent of the magnitude |
| 3111 | of the most significant digit of self (as though it were truncated |
| 3112 | to a single digit while maintaining the value of that digit and |
| 3113 | without limiting the resulting exponent). |
| 3114 | """ |
| 3115 | # logb(NaN) = NaN |
| 3116 | ans = self._check_nans(context=context) |
| 3117 | if ans: |
| 3118 | return ans |
| 3119 | |
| 3120 | if context is None: |
| 3121 | context = getcontext() |
| 3122 | |
| 3123 | # logb(+/-Inf) = +Inf |
| 3124 | if self._isinfinity(): |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3125 | return _Infinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3126 | |
| 3127 | # logb(0) = -Inf, DivisionByZero |
| 3128 | if not self: |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 3129 | return context._raise_error(DivisionByZero, 'logb(0)', 1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3130 | |
| 3131 | # otherwise, simply return the adjusted exponent of self, as a |
| 3132 | # Decimal. Note that no attempt is made to fit the result |
| 3133 | # into the current context. |
Mark Dickinson | 15ae41c | 2009-10-07 19:22:05 +0000 | [diff] [blame] | 3134 | ans = Decimal(self.adjusted()) |
| 3135 | return ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3136 | |
| 3137 | def _islogical(self): |
| 3138 | """Return True if self is a logical operand. |
| 3139 | |
Andrew M. Kuchling | c8acc88 | 2008-01-16 00:32:03 +0000 | [diff] [blame] | 3140 | For being logical, it must be a finite number with a sign of 0, |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3141 | an exponent of 0, and a coefficient whose digits must all be |
| 3142 | either 0 or 1. |
| 3143 | """ |
| 3144 | if self._sign != 0 or self._exp != 0: |
| 3145 | return False |
| 3146 | for dig in self._int: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3147 | if dig not in '01': |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3148 | return False |
| 3149 | return True |
| 3150 | |
| 3151 | def _fill_logical(self, context, opa, opb): |
| 3152 | dif = context.prec - len(opa) |
| 3153 | if dif > 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3154 | opa = '0'*dif + opa |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3155 | elif dif < 0: |
| 3156 | opa = opa[-context.prec:] |
| 3157 | dif = context.prec - len(opb) |
| 3158 | if dif > 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3159 | opb = '0'*dif + opb |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3160 | elif dif < 0: |
| 3161 | opb = opb[-context.prec:] |
| 3162 | return opa, opb |
| 3163 | |
| 3164 | def logical_and(self, other, context=None): |
| 3165 | """Applies an 'and' operation between self and other's digits.""" |
| 3166 | if context is None: |
| 3167 | context = getcontext() |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3168 | |
| 3169 | other = _convert_other(other, raiseit=True) |
| 3170 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3171 | if not self._islogical() or not other._islogical(): |
| 3172 | return context._raise_error(InvalidOperation) |
| 3173 | |
| 3174 | # fill to context.prec |
| 3175 | (opa, opb) = self._fill_logical(context, self._int, other._int) |
| 3176 | |
| 3177 | # make the operation, and clean starting zeroes |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3178 | result = "".join([str(int(a)&int(b)) for a,b in zip(opa,opb)]) |
| 3179 | return _dec_from_triple(0, result.lstrip('0') or '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3180 | |
| 3181 | def logical_invert(self, context=None): |
| 3182 | """Invert all its digits.""" |
| 3183 | if context is None: |
| 3184 | context = getcontext() |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3185 | return self.logical_xor(_dec_from_triple(0,'1'*context.prec,0), |
| 3186 | context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3187 | |
| 3188 | def logical_or(self, other, context=None): |
| 3189 | """Applies an 'or' operation between self and other's digits.""" |
| 3190 | if context is None: |
| 3191 | context = getcontext() |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3192 | |
| 3193 | other = _convert_other(other, raiseit=True) |
| 3194 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3195 | if not self._islogical() or not other._islogical(): |
| 3196 | return context._raise_error(InvalidOperation) |
| 3197 | |
| 3198 | # fill to context.prec |
| 3199 | (opa, opb) = self._fill_logical(context, self._int, other._int) |
| 3200 | |
| 3201 | # make the operation, and clean starting zeroes |
Mark Dickinson | 65808ff | 2009-01-04 21:22:02 +0000 | [diff] [blame] | 3202 | result = "".join([str(int(a)|int(b)) for a,b in zip(opa,opb)]) |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3203 | return _dec_from_triple(0, result.lstrip('0') or '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3204 | |
| 3205 | def logical_xor(self, other, context=None): |
| 3206 | """Applies an 'xor' operation between self and other's digits.""" |
| 3207 | if context is None: |
| 3208 | context = getcontext() |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3209 | |
| 3210 | other = _convert_other(other, raiseit=True) |
| 3211 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3212 | if not self._islogical() or not other._islogical(): |
| 3213 | return context._raise_error(InvalidOperation) |
| 3214 | |
| 3215 | # fill to context.prec |
| 3216 | (opa, opb) = self._fill_logical(context, self._int, other._int) |
| 3217 | |
| 3218 | # make the operation, and clean starting zeroes |
Mark Dickinson | 65808ff | 2009-01-04 21:22:02 +0000 | [diff] [blame] | 3219 | result = "".join([str(int(a)^int(b)) for a,b in zip(opa,opb)]) |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3220 | return _dec_from_triple(0, result.lstrip('0') or '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3221 | |
| 3222 | def max_mag(self, other, context=None): |
| 3223 | """Compares the values numerically with their sign ignored.""" |
| 3224 | other = _convert_other(other, raiseit=True) |
| 3225 | |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 3226 | if context is None: |
| 3227 | context = getcontext() |
| 3228 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3229 | if self._is_special or other._is_special: |
| 3230 | # If one operand is a quiet NaN and the other is number, then the |
| 3231 | # number is always returned |
| 3232 | sn = self._isnan() |
| 3233 | on = other._isnan() |
| 3234 | if sn or on: |
Facundo Batista | e29d435 | 2008-12-11 04:19:46 +0000 | [diff] [blame] | 3235 | if on == 1 and sn == 0: |
| 3236 | return self._fix(context) |
| 3237 | if sn == 1 and on == 0: |
| 3238 | return other._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3239 | return self._check_nans(other, context) |
| 3240 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 3241 | c = self.copy_abs()._cmp(other.copy_abs()) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3242 | if c == 0: |
| 3243 | c = self.compare_total(other) |
| 3244 | |
| 3245 | if c == -1: |
| 3246 | ans = other |
| 3247 | else: |
| 3248 | ans = self |
| 3249 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 3250 | return ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3251 | |
| 3252 | def min_mag(self, other, context=None): |
| 3253 | """Compares the values numerically with their sign ignored.""" |
| 3254 | other = _convert_other(other, raiseit=True) |
| 3255 | |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 3256 | if context is None: |
| 3257 | context = getcontext() |
| 3258 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3259 | if self._is_special or other._is_special: |
| 3260 | # If one operand is a quiet NaN and the other is number, then the |
| 3261 | # number is always returned |
| 3262 | sn = self._isnan() |
| 3263 | on = other._isnan() |
| 3264 | if sn or on: |
Facundo Batista | e29d435 | 2008-12-11 04:19:46 +0000 | [diff] [blame] | 3265 | if on == 1 and sn == 0: |
| 3266 | return self._fix(context) |
| 3267 | if sn == 1 and on == 0: |
| 3268 | return other._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3269 | return self._check_nans(other, context) |
| 3270 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 3271 | c = self.copy_abs()._cmp(other.copy_abs()) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3272 | if c == 0: |
| 3273 | c = self.compare_total(other) |
| 3274 | |
| 3275 | if c == -1: |
| 3276 | ans = self |
| 3277 | else: |
| 3278 | ans = other |
| 3279 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 3280 | return ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3281 | |
| 3282 | def next_minus(self, context=None): |
| 3283 | """Returns the largest representable number smaller than itself.""" |
| 3284 | if context is None: |
| 3285 | context = getcontext() |
| 3286 | |
| 3287 | ans = self._check_nans(context=context) |
| 3288 | if ans: |
| 3289 | return ans |
| 3290 | |
| 3291 | if self._isinfinity() == -1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3292 | return _NegativeInfinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3293 | if self._isinfinity() == 1: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3294 | return _dec_from_triple(0, '9'*context.prec, context.Etop()) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3295 | |
| 3296 | context = context.copy() |
| 3297 | context._set_rounding(ROUND_FLOOR) |
| 3298 | context._ignore_all_flags() |
| 3299 | new_self = self._fix(context) |
| 3300 | if new_self != self: |
| 3301 | return new_self |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3302 | return self.__sub__(_dec_from_triple(0, '1', context.Etiny()-1), |
| 3303 | context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3304 | |
| 3305 | def next_plus(self, context=None): |
| 3306 | """Returns the smallest representable number larger than itself.""" |
| 3307 | if context is None: |
| 3308 | context = getcontext() |
| 3309 | |
| 3310 | ans = self._check_nans(context=context) |
| 3311 | if ans: |
| 3312 | return ans |
| 3313 | |
| 3314 | if self._isinfinity() == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3315 | return _Infinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3316 | if self._isinfinity() == -1: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3317 | return _dec_from_triple(1, '9'*context.prec, context.Etop()) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3318 | |
| 3319 | context = context.copy() |
| 3320 | context._set_rounding(ROUND_CEILING) |
| 3321 | context._ignore_all_flags() |
| 3322 | new_self = self._fix(context) |
| 3323 | if new_self != self: |
| 3324 | return new_self |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3325 | return self.__add__(_dec_from_triple(0, '1', context.Etiny()-1), |
| 3326 | context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3327 | |
| 3328 | def next_toward(self, other, context=None): |
| 3329 | """Returns the number closest to self, in the direction towards other. |
| 3330 | |
| 3331 | The result is the closest representable number to self |
| 3332 | (excluding self) that is in the direction towards other, |
| 3333 | unless both have the same value. If the two operands are |
| 3334 | numerically equal, then the result is a copy of self with the |
| 3335 | sign set to be the same as the sign of other. |
| 3336 | """ |
| 3337 | other = _convert_other(other, raiseit=True) |
| 3338 | |
| 3339 | if context is None: |
| 3340 | context = getcontext() |
| 3341 | |
| 3342 | ans = self._check_nans(other, context) |
| 3343 | if ans: |
| 3344 | return ans |
| 3345 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 3346 | comparison = self._cmp(other) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3347 | if comparison == 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3348 | return self.copy_sign(other) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3349 | |
| 3350 | if comparison == -1: |
| 3351 | ans = self.next_plus(context) |
| 3352 | else: # comparison == 1 |
| 3353 | ans = self.next_minus(context) |
| 3354 | |
| 3355 | # decide which flags to raise using value of ans |
| 3356 | if ans._isinfinity(): |
| 3357 | context._raise_error(Overflow, |
| 3358 | 'Infinite result from next_toward', |
| 3359 | ans._sign) |
| 3360 | context._raise_error(Rounded) |
| 3361 | context._raise_error(Inexact) |
| 3362 | elif ans.adjusted() < context.Emin: |
| 3363 | context._raise_error(Underflow) |
| 3364 | context._raise_error(Subnormal) |
| 3365 | context._raise_error(Rounded) |
| 3366 | context._raise_error(Inexact) |
| 3367 | # if precision == 1 then we don't raise Clamped for a |
| 3368 | # result 0E-Etiny. |
| 3369 | if not ans: |
| 3370 | context._raise_error(Clamped) |
| 3371 | |
| 3372 | return ans |
| 3373 | |
| 3374 | def number_class(self, context=None): |
| 3375 | """Returns an indication of the class of self. |
| 3376 | |
| 3377 | The class is one of the following strings: |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 3378 | sNaN |
| 3379 | NaN |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3380 | -Infinity |
| 3381 | -Normal |
| 3382 | -Subnormal |
| 3383 | -Zero |
| 3384 | +Zero |
| 3385 | +Subnormal |
| 3386 | +Normal |
| 3387 | +Infinity |
| 3388 | """ |
| 3389 | if self.is_snan(): |
| 3390 | return "sNaN" |
| 3391 | if self.is_qnan(): |
| 3392 | return "NaN" |
| 3393 | inf = self._isinfinity() |
| 3394 | if inf == 1: |
| 3395 | return "+Infinity" |
| 3396 | if inf == -1: |
| 3397 | return "-Infinity" |
| 3398 | if self.is_zero(): |
| 3399 | if self._sign: |
| 3400 | return "-Zero" |
| 3401 | else: |
| 3402 | return "+Zero" |
| 3403 | if context is None: |
| 3404 | context = getcontext() |
| 3405 | if self.is_subnormal(context=context): |
| 3406 | if self._sign: |
| 3407 | return "-Subnormal" |
| 3408 | else: |
| 3409 | return "+Subnormal" |
| 3410 | # just a normal, regular, boring number, :) |
| 3411 | if self._sign: |
| 3412 | return "-Normal" |
| 3413 | else: |
| 3414 | return "+Normal" |
| 3415 | |
| 3416 | def radix(self): |
| 3417 | """Just returns 10, as this is Decimal, :)""" |
| 3418 | return Decimal(10) |
| 3419 | |
| 3420 | def rotate(self, other, context=None): |
| 3421 | """Returns a rotated copy of self, value-of-other times.""" |
| 3422 | if context is None: |
| 3423 | context = getcontext() |
| 3424 | |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3425 | other = _convert_other(other, raiseit=True) |
| 3426 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3427 | ans = self._check_nans(other, context) |
| 3428 | if ans: |
| 3429 | return ans |
| 3430 | |
| 3431 | if other._exp != 0: |
| 3432 | return context._raise_error(InvalidOperation) |
| 3433 | if not (-context.prec <= int(other) <= context.prec): |
| 3434 | return context._raise_error(InvalidOperation) |
| 3435 | |
| 3436 | if self._isinfinity(): |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 3437 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3438 | |
| 3439 | # get values, pad if necessary |
| 3440 | torot = int(other) |
| 3441 | rotdig = self._int |
| 3442 | topad = context.prec - len(rotdig) |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3443 | if topad > 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3444 | rotdig = '0'*topad + rotdig |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3445 | elif topad < 0: |
| 3446 | rotdig = rotdig[-topad:] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3447 | |
| 3448 | # let's rotate! |
| 3449 | rotated = rotdig[torot:] + rotdig[:torot] |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3450 | return _dec_from_triple(self._sign, |
| 3451 | rotated.lstrip('0') or '0', self._exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3452 | |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3453 | def scaleb(self, other, context=None): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3454 | """Returns self operand after adding the second value to its exp.""" |
| 3455 | if context is None: |
| 3456 | context = getcontext() |
| 3457 | |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3458 | other = _convert_other(other, raiseit=True) |
| 3459 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3460 | ans = self._check_nans(other, context) |
| 3461 | if ans: |
| 3462 | return ans |
| 3463 | |
| 3464 | if other._exp != 0: |
| 3465 | return context._raise_error(InvalidOperation) |
| 3466 | liminf = -2 * (context.Emax + context.prec) |
| 3467 | limsup = 2 * (context.Emax + context.prec) |
| 3468 | if not (liminf <= int(other) <= limsup): |
| 3469 | return context._raise_error(InvalidOperation) |
| 3470 | |
| 3471 | if self._isinfinity(): |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 3472 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3473 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3474 | d = _dec_from_triple(self._sign, self._int, self._exp + int(other)) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3475 | d = d._fix(context) |
| 3476 | return d |
| 3477 | |
| 3478 | def shift(self, other, context=None): |
| 3479 | """Returns a shifted copy of self, value-of-other times.""" |
| 3480 | if context is None: |
| 3481 | context = getcontext() |
| 3482 | |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3483 | other = _convert_other(other, raiseit=True) |
| 3484 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3485 | ans = self._check_nans(other, context) |
| 3486 | if ans: |
| 3487 | return ans |
| 3488 | |
| 3489 | if other._exp != 0: |
| 3490 | return context._raise_error(InvalidOperation) |
| 3491 | if not (-context.prec <= int(other) <= context.prec): |
| 3492 | return context._raise_error(InvalidOperation) |
| 3493 | |
| 3494 | if self._isinfinity(): |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 3495 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3496 | |
| 3497 | # get values, pad if necessary |
| 3498 | torot = int(other) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3499 | rotdig = self._int |
| 3500 | topad = context.prec - len(rotdig) |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3501 | if topad > 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3502 | rotdig = '0'*topad + rotdig |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3503 | elif topad < 0: |
| 3504 | rotdig = rotdig[-topad:] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3505 | |
| 3506 | # let's shift! |
| 3507 | if torot < 0: |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3508 | shifted = rotdig[:torot] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3509 | else: |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3510 | shifted = rotdig + '0'*torot |
| 3511 | shifted = shifted[-context.prec:] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3512 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3513 | return _dec_from_triple(self._sign, |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3514 | shifted.lstrip('0') or '0', self._exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3515 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3516 | # Support for pickling, copy, and deepcopy |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3517 | def __reduce__(self): |
| 3518 | return (self.__class__, (str(self),)) |
| 3519 | |
| 3520 | def __copy__(self): |
Benjamin Peterson | 28e369a | 2010-01-25 03:58:21 +0000 | [diff] [blame] | 3521 | if type(self) is Decimal: |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 3522 | return self # I'm immutable; therefore I am my own clone |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3523 | return self.__class__(str(self)) |
| 3524 | |
| 3525 | def __deepcopy__(self, memo): |
Benjamin Peterson | 28e369a | 2010-01-25 03:58:21 +0000 | [diff] [blame] | 3526 | if type(self) is Decimal: |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 3527 | return self # My components are also immutable |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3528 | return self.__class__(str(self)) |
| 3529 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3530 | # PEP 3101 support. the _localeconv keyword argument should be |
| 3531 | # considered private: it's provided for ease of testing only. |
| 3532 | def __format__(self, specifier, context=None, _localeconv=None): |
Mark Dickinson | f4da777 | 2008-02-29 03:29:17 +0000 | [diff] [blame] | 3533 | """Format a Decimal instance according to the given specifier. |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3534 | |
| 3535 | The specifier should be a standard format specifier, with the |
| 3536 | form described in PEP 3101. Formatting types 'e', 'E', 'f', |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3537 | 'F', 'g', 'G', 'n' and '%' are supported. If the formatting |
| 3538 | type is omitted it defaults to 'g' or 'G', depending on the |
| 3539 | value of context.capitals. |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3540 | """ |
| 3541 | |
| 3542 | # Note: PEP 3101 says that if the type is not present then |
| 3543 | # there should be at least one digit after the decimal point. |
| 3544 | # We take the liberty of ignoring this requirement for |
| 3545 | # Decimal---it's presumably there to make sure that |
| 3546 | # format(float, '') behaves similarly to str(float). |
| 3547 | if context is None: |
| 3548 | context = getcontext() |
| 3549 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3550 | spec = _parse_format_specifier(specifier, _localeconv=_localeconv) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3551 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3552 | # special values don't care about the type or precision |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3553 | if self._is_special: |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3554 | sign = _format_sign(self._sign, spec) |
| 3555 | body = str(self.copy_abs()) |
| 3556 | return _format_align(sign, body, spec) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3557 | |
| 3558 | # a type of None defaults to 'g' or 'G', depending on context |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3559 | if spec['type'] is None: |
| 3560 | spec['type'] = ['g', 'G'][context.capitals] |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3561 | |
| 3562 | # if type is '%', adjust exponent of self accordingly |
| 3563 | if spec['type'] == '%': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3564 | self = _dec_from_triple(self._sign, self._int, self._exp+2) |
| 3565 | |
| 3566 | # round if necessary, taking rounding mode from the context |
| 3567 | rounding = context.rounding |
| 3568 | precision = spec['precision'] |
| 3569 | if precision is not None: |
| 3570 | if spec['type'] in 'eE': |
| 3571 | self = self._round(precision+1, rounding) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3572 | elif spec['type'] in 'fF%': |
| 3573 | self = self._rescale(-precision, rounding) |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3574 | elif spec['type'] in 'gG' and len(self._int) > precision: |
| 3575 | self = self._round(precision, rounding) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3576 | # special case: zeros with a positive exponent can't be |
| 3577 | # represented in fixed point; rescale them to 0e0. |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3578 | if not self and self._exp > 0 and spec['type'] in 'fF%': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3579 | self = self._rescale(0, rounding) |
| 3580 | |
| 3581 | # figure out placement of the decimal point |
| 3582 | leftdigits = self._exp + len(self._int) |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3583 | if spec['type'] in 'eE': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3584 | if not self and precision is not None: |
| 3585 | dotplace = 1 - precision |
| 3586 | else: |
| 3587 | dotplace = 1 |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3588 | elif spec['type'] in 'fF%': |
| 3589 | dotplace = leftdigits |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3590 | elif spec['type'] in 'gG': |
| 3591 | if self._exp <= 0 and leftdigits > -6: |
| 3592 | dotplace = leftdigits |
| 3593 | else: |
| 3594 | dotplace = 1 |
| 3595 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3596 | # find digits before and after decimal point, and get exponent |
| 3597 | if dotplace < 0: |
| 3598 | intpart = '0' |
| 3599 | fracpart = '0'*(-dotplace) + self._int |
| 3600 | elif dotplace > len(self._int): |
| 3601 | intpart = self._int + '0'*(dotplace-len(self._int)) |
| 3602 | fracpart = '' |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3603 | else: |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3604 | intpart = self._int[:dotplace] or '0' |
| 3605 | fracpart = self._int[dotplace:] |
| 3606 | exp = leftdigits-dotplace |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3607 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3608 | # done with the decimal-specific stuff; hand over the rest |
| 3609 | # of the formatting to the _format_number function |
| 3610 | return _format_number(self._sign, intpart, fracpart, exp, spec) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3611 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3612 | def _dec_from_triple(sign, coefficient, exponent, special=False): |
| 3613 | """Create a decimal instance directly, without any validation, |
| 3614 | normalization (e.g. removal of leading zeros) or argument |
| 3615 | conversion. |
| 3616 | |
| 3617 | This function is for *internal use only*. |
| 3618 | """ |
| 3619 | |
| 3620 | self = object.__new__(Decimal) |
| 3621 | self._sign = sign |
| 3622 | self._int = coefficient |
| 3623 | self._exp = exponent |
| 3624 | self._is_special = special |
| 3625 | |
| 3626 | return self |
| 3627 | |
Raymond Hettinger | 2c8585b | 2009-02-03 03:37:03 +0000 | [diff] [blame] | 3628 | # Register Decimal as a kind of Number (an abstract base class). |
| 3629 | # However, do not register it as Real (because Decimals are not |
| 3630 | # interoperable with floats). |
| 3631 | _numbers.Number.register(Decimal) |
| 3632 | |
| 3633 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3634 | ##### Context class ####################################################### |
Raymond Hettinger | d9c0a7a | 2004-07-03 10:02:28 +0000 | [diff] [blame] | 3635 | |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 3636 | |
| 3637 | # get rounding method function: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3638 | rounding_functions = [name for name in Decimal.__dict__.keys() |
| 3639 | if name.startswith('_round_')] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3640 | for name in rounding_functions: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3641 | # name is like _round_half_even, goes to the global ROUND_HALF_EVEN value. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3642 | globalname = name[1:].upper() |
| 3643 | val = globals()[globalname] |
| 3644 | Decimal._pick_rounding_function[val] = name |
| 3645 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3646 | del name, val, globalname, rounding_functions |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3647 | |
Nick Coghlan | ced1218 | 2006-09-02 03:54:17 +0000 | [diff] [blame] | 3648 | class _ContextManager(object): |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 3649 | """Context manager class to support localcontext(). |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3650 | |
Nick Coghlan | ced1218 | 2006-09-02 03:54:17 +0000 | [diff] [blame] | 3651 | Sets a copy of the supplied context in __enter__() and restores |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 3652 | the previous decimal context in __exit__() |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3653 | """ |
| 3654 | def __init__(self, new_context): |
Nick Coghlan | ced1218 | 2006-09-02 03:54:17 +0000 | [diff] [blame] | 3655 | self.new_context = new_context.copy() |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3656 | def __enter__(self): |
| 3657 | self.saved_context = getcontext() |
| 3658 | setcontext(self.new_context) |
| 3659 | return self.new_context |
| 3660 | def __exit__(self, t, v, tb): |
| 3661 | setcontext(self.saved_context) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3662 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3663 | class Context(object): |
| 3664 | """Contains the context for a Decimal instance. |
| 3665 | |
| 3666 | Contains: |
| 3667 | prec - precision (for use in rounding, division, square roots..) |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3668 | rounding - rounding type (how you round) |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3669 | traps - If traps[exception] = 1, then the exception is |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3670 | raised when it is caused. Otherwise, a value is |
| 3671 | substituted in. |
Mark Dickinson | 1840c1a | 2008-05-03 18:23:14 +0000 | [diff] [blame] | 3672 | flags - When an exception is caused, flags[exception] is set. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3673 | (Whether or not the trap_enabler is set) |
| 3674 | Should be reset by user of Decimal instance. |
Raymond Hettinger | 0ea241e | 2004-07-04 13:53:24 +0000 | [diff] [blame] | 3675 | Emin - Minimum exponent |
| 3676 | Emax - Maximum exponent |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3677 | capitals - If 1, 1*10^1 is printed as 1E+1. |
| 3678 | If 0, printed as 1e1 |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 3679 | _clamp - If 1, change exponents if too high (Default 0) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3680 | """ |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3681 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3682 | def __init__(self, prec=None, rounding=None, |
Raymond Hettinger | abf8a56 | 2004-10-12 09:12:16 +0000 | [diff] [blame] | 3683 | traps=None, flags=None, |
Raymond Hettinger | 0ea241e | 2004-07-04 13:53:24 +0000 | [diff] [blame] | 3684 | Emin=None, Emax=None, |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 3685 | capitals=None, _clamp=0, |
Raymond Hettinger | abf8a56 | 2004-10-12 09:12:16 +0000 | [diff] [blame] | 3686 | _ignored_flags=None): |
| 3687 | if flags is None: |
| 3688 | flags = [] |
| 3689 | if _ignored_flags is None: |
| 3690 | _ignored_flags = [] |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3691 | if not isinstance(flags, dict): |
Mark Dickinson | 71f3b85 | 2008-05-04 02:25:46 +0000 | [diff] [blame] | 3692 | flags = dict([(s, int(s in flags)) for s in _signals]) |
Raymond Hettinger | b91af52 | 2004-07-14 16:35:30 +0000 | [diff] [blame] | 3693 | del s |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3694 | if traps is not None and not isinstance(traps, dict): |
Mark Dickinson | 71f3b85 | 2008-05-04 02:25:46 +0000 | [diff] [blame] | 3695 | traps = dict([(s, int(s in traps)) for s in _signals]) |
Raymond Hettinger | b91af52 | 2004-07-14 16:35:30 +0000 | [diff] [blame] | 3696 | del s |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3697 | for name, val in locals().items(): |
| 3698 | if val is None: |
Raymond Hettinger | eb26084 | 2005-06-07 18:52:34 +0000 | [diff] [blame] | 3699 | setattr(self, name, _copy.copy(getattr(DefaultContext, name))) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3700 | else: |
| 3701 | setattr(self, name, val) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3702 | del self.self |
| 3703 | |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3704 | def __repr__(self): |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3705 | """Show the current context.""" |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3706 | s = [] |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3707 | s.append('Context(prec=%(prec)d, rounding=%(rounding)s, ' |
| 3708 | 'Emin=%(Emin)d, Emax=%(Emax)d, capitals=%(capitals)d' |
| 3709 | % vars(self)) |
| 3710 | names = [f.__name__ for f, v in self.flags.items() if v] |
| 3711 | s.append('flags=[' + ', '.join(names) + ']') |
| 3712 | names = [t.__name__ for t, v in self.traps.items() if v] |
| 3713 | s.append('traps=[' + ', '.join(names) + ']') |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3714 | return ', '.join(s) + ')' |
| 3715 | |
Raymond Hettinger | d9c0a7a | 2004-07-03 10:02:28 +0000 | [diff] [blame] | 3716 | def clear_flags(self): |
| 3717 | """Reset all flags to zero""" |
| 3718 | for flag in self.flags: |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3719 | self.flags[flag] = 0 |
Raymond Hettinger | d9c0a7a | 2004-07-03 10:02:28 +0000 | [diff] [blame] | 3720 | |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 3721 | def _shallow_copy(self): |
| 3722 | """Returns a shallow copy from self.""" |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 3723 | nc = Context(self.prec, self.rounding, self.traps, |
| 3724 | self.flags, self.Emin, self.Emax, |
| 3725 | self.capitals, self._clamp, self._ignored_flags) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3726 | return nc |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 3727 | |
| 3728 | def copy(self): |
| 3729 | """Returns a deep copy from self.""" |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3730 | nc = Context(self.prec, self.rounding, self.traps.copy(), |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 3731 | self.flags.copy(), self.Emin, self.Emax, |
| 3732 | self.capitals, self._clamp, self._ignored_flags) |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 3733 | return nc |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3734 | __copy__ = copy |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3735 | |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3736 | def _raise_error(self, condition, explanation = None, *args): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3737 | """Handles an error |
| 3738 | |
| 3739 | If the flag is in _ignored_flags, returns the default response. |
Mark Dickinson | 1840c1a | 2008-05-03 18:23:14 +0000 | [diff] [blame] | 3740 | Otherwise, it sets the flag, then, if the corresponding |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3741 | trap_enabler is set, it reaises the exception. Otherwise, it returns |
Mark Dickinson | 1840c1a | 2008-05-03 18:23:14 +0000 | [diff] [blame] | 3742 | the default value after setting the flag. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3743 | """ |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3744 | error = _condition_map.get(condition, condition) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3745 | if error in self._ignored_flags: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3746 | # Don't touch the flag |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3747 | return error().handle(self, *args) |
| 3748 | |
Mark Dickinson | 1840c1a | 2008-05-03 18:23:14 +0000 | [diff] [blame] | 3749 | self.flags[error] = 1 |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3750 | if not self.traps[error]: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3751 | # The errors define how to handle themselves. |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3752 | return condition().handle(self, *args) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3753 | |
| 3754 | # Errors should only be risked on copies of the context |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3755 | # self._ignored_flags = [] |
Mark Dickinson | 8aca9d0 | 2008-05-04 02:05:06 +0000 | [diff] [blame] | 3756 | raise error(explanation) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3757 | |
| 3758 | def _ignore_all_flags(self): |
| 3759 | """Ignore all flags, if they are raised""" |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 3760 | return self._ignore_flags(*_signals) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3761 | |
| 3762 | def _ignore_flags(self, *flags): |
| 3763 | """Ignore the flags, if they are raised""" |
| 3764 | # Do not mutate-- This way, copies of a context leave the original |
| 3765 | # alone. |
| 3766 | self._ignored_flags = (self._ignored_flags + list(flags)) |
| 3767 | return list(flags) |
| 3768 | |
| 3769 | def _regard_flags(self, *flags): |
| 3770 | """Stop ignoring the flags, if they are raised""" |
| 3771 | if flags and isinstance(flags[0], (tuple,list)): |
| 3772 | flags = flags[0] |
| 3773 | for flag in flags: |
| 3774 | self._ignored_flags.remove(flag) |
| 3775 | |
Nick Coghlan | 53663a6 | 2008-07-15 14:27:37 +0000 | [diff] [blame] | 3776 | # We inherit object.__hash__, so we must deny this explicitly |
| 3777 | __hash__ = None |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3778 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3779 | def Etiny(self): |
| 3780 | """Returns Etiny (= Emin - prec + 1)""" |
| 3781 | return int(self.Emin - self.prec + 1) |
| 3782 | |
| 3783 | def Etop(self): |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 3784 | """Returns maximum exponent (= Emax - prec + 1)""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3785 | return int(self.Emax - self.prec + 1) |
| 3786 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3787 | def _set_rounding(self, type): |
| 3788 | """Sets the rounding type. |
| 3789 | |
| 3790 | Sets the rounding type, and returns the current (previous) |
| 3791 | rounding type. Often used like: |
| 3792 | |
| 3793 | context = context.copy() |
| 3794 | # so you don't change the calling context |
| 3795 | # if an error occurs in the middle. |
| 3796 | rounding = context._set_rounding(ROUND_UP) |
| 3797 | val = self.__sub__(other, context=context) |
| 3798 | context._set_rounding(rounding) |
| 3799 | |
| 3800 | This will make it round up for that operation. |
| 3801 | """ |
| 3802 | rounding = self.rounding |
| 3803 | self.rounding= type |
| 3804 | return rounding |
| 3805 | |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 3806 | def create_decimal(self, num='0'): |
Mark Dickinson | 59bc20b | 2008-01-12 01:56:00 +0000 | [diff] [blame] | 3807 | """Creates a new Decimal instance but using self as context. |
| 3808 | |
| 3809 | This method implements the to-number operation of the |
| 3810 | IBM Decimal specification.""" |
| 3811 | |
| 3812 | if isinstance(num, basestring) and num != num.strip(): |
| 3813 | return self._raise_error(ConversionSyntax, |
| 3814 | "no trailing or leading whitespace is " |
| 3815 | "permitted.") |
| 3816 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3817 | d = Decimal(num, context=self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3818 | if d._isnan() and len(d._int) > self.prec - self._clamp: |
| 3819 | return self._raise_error(ConversionSyntax, |
| 3820 | "diagnostic info too long in NaN") |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 3821 | return d._fix(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3822 | |
Raymond Hettinger | f4d8597 | 2009-01-03 19:02:23 +0000 | [diff] [blame] | 3823 | def create_decimal_from_float(self, f): |
| 3824 | """Creates a new Decimal instance from a float but rounding using self |
| 3825 | as the context. |
| 3826 | |
| 3827 | >>> context = Context(prec=5, rounding=ROUND_DOWN) |
| 3828 | >>> context.create_decimal_from_float(3.1415926535897932) |
| 3829 | Decimal('3.1415') |
| 3830 | >>> context = Context(prec=5, traps=[Inexact]) |
| 3831 | >>> context.create_decimal_from_float(3.1415926535897932) |
| 3832 | Traceback (most recent call last): |
| 3833 | ... |
| 3834 | Inexact: None |
| 3835 | |
| 3836 | """ |
| 3837 | d = Decimal.from_float(f) # An exact conversion |
| 3838 | return d._fix(self) # Apply the context rounding |
| 3839 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3840 | # Methods |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3841 | def abs(self, a): |
| 3842 | """Returns the absolute value of the operand. |
| 3843 | |
| 3844 | If the operand is negative, the result is the same as using the minus |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3845 | operation on the operand. Otherwise, the result is the same as using |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3846 | the plus operation on the operand. |
| 3847 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3848 | >>> ExtendedContext.abs(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3849 | Decimal('2.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3850 | >>> ExtendedContext.abs(Decimal('-100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3851 | Decimal('100') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3852 | >>> ExtendedContext.abs(Decimal('101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3853 | Decimal('101.5') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3854 | >>> ExtendedContext.abs(Decimal('-101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3855 | Decimal('101.5') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3856 | >>> ExtendedContext.abs(-1) |
| 3857 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3858 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3859 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3860 | return a.__abs__(context=self) |
| 3861 | |
| 3862 | def add(self, a, b): |
| 3863 | """Return the sum of the two operands. |
| 3864 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3865 | >>> ExtendedContext.add(Decimal('12'), Decimal('7.00')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3866 | Decimal('19.00') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3867 | >>> ExtendedContext.add(Decimal('1E+2'), Decimal('1.01E+4')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3868 | Decimal('1.02E+4') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3869 | >>> ExtendedContext.add(1, Decimal(2)) |
| 3870 | Decimal('3') |
| 3871 | >>> ExtendedContext.add(Decimal(8), 5) |
| 3872 | Decimal('13') |
| 3873 | >>> ExtendedContext.add(5, 5) |
| 3874 | Decimal('10') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3875 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3876 | a = _convert_other(a, raiseit=True) |
| 3877 | r = a.__add__(b, context=self) |
| 3878 | if r is NotImplemented: |
| 3879 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 3880 | else: |
| 3881 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3882 | |
| 3883 | def _apply(self, a): |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 3884 | return str(a._fix(self)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3885 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3886 | def canonical(self, a): |
| 3887 | """Returns the same Decimal object. |
| 3888 | |
| 3889 | As we do not have different encodings for the same number, the |
| 3890 | received object already is in its canonical form. |
| 3891 | |
| 3892 | >>> ExtendedContext.canonical(Decimal('2.50')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3893 | Decimal('2.50') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3894 | """ |
| 3895 | return a.canonical(context=self) |
| 3896 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3897 | def compare(self, a, b): |
| 3898 | """Compares values numerically. |
| 3899 | |
| 3900 | If the signs of the operands differ, a value representing each operand |
| 3901 | ('-1' if the operand is less than zero, '0' if the operand is zero or |
| 3902 | negative zero, or '1' if the operand is greater than zero) is used in |
| 3903 | place of that operand for the comparison instead of the actual |
| 3904 | operand. |
| 3905 | |
| 3906 | The comparison is then effected by subtracting the second operand from |
| 3907 | the first and then returning a value according to the result of the |
| 3908 | subtraction: '-1' if the result is less than zero, '0' if the result is |
| 3909 | zero or negative zero, or '1' if the result is greater than zero. |
| 3910 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3911 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3912 | Decimal('-1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3913 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3914 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3915 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3916 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3917 | >>> ExtendedContext.compare(Decimal('3'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3918 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3919 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('-3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3920 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3921 | >>> ExtendedContext.compare(Decimal('-3'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3922 | Decimal('-1') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3923 | >>> ExtendedContext.compare(1, 2) |
| 3924 | Decimal('-1') |
| 3925 | >>> ExtendedContext.compare(Decimal(1), 2) |
| 3926 | Decimal('-1') |
| 3927 | >>> ExtendedContext.compare(1, Decimal(2)) |
| 3928 | Decimal('-1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3929 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3930 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3931 | return a.compare(b, context=self) |
| 3932 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3933 | def compare_signal(self, a, b): |
| 3934 | """Compares the values of the two operands numerically. |
| 3935 | |
| 3936 | It's pretty much like compare(), but all NaNs signal, with signaling |
| 3937 | NaNs taking precedence over quiet NaNs. |
| 3938 | |
| 3939 | >>> c = ExtendedContext |
| 3940 | >>> c.compare_signal(Decimal('2.1'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3941 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3942 | >>> c.compare_signal(Decimal('2.1'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3943 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3944 | >>> c.flags[InvalidOperation] = 0 |
| 3945 | >>> print c.flags[InvalidOperation] |
| 3946 | 0 |
| 3947 | >>> c.compare_signal(Decimal('NaN'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3948 | Decimal('NaN') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3949 | >>> print c.flags[InvalidOperation] |
| 3950 | 1 |
| 3951 | >>> c.flags[InvalidOperation] = 0 |
| 3952 | >>> print c.flags[InvalidOperation] |
| 3953 | 0 |
| 3954 | >>> c.compare_signal(Decimal('sNaN'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3955 | Decimal('NaN') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3956 | >>> print c.flags[InvalidOperation] |
| 3957 | 1 |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3958 | >>> c.compare_signal(-1, 2) |
| 3959 | Decimal('-1') |
| 3960 | >>> c.compare_signal(Decimal(-1), 2) |
| 3961 | Decimal('-1') |
| 3962 | >>> c.compare_signal(-1, Decimal(2)) |
| 3963 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3964 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3965 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3966 | return a.compare_signal(b, context=self) |
| 3967 | |
| 3968 | def compare_total(self, a, b): |
| 3969 | """Compares two operands using their abstract representation. |
| 3970 | |
| 3971 | This is not like the standard compare, which use their numerical |
| 3972 | value. Note that a total ordering is defined for all possible abstract |
| 3973 | representations. |
| 3974 | |
| 3975 | >>> ExtendedContext.compare_total(Decimal('12.73'), Decimal('127.9')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3976 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3977 | >>> ExtendedContext.compare_total(Decimal('-127'), Decimal('12')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3978 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3979 | >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3980 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3981 | >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.30')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3982 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3983 | >>> ExtendedContext.compare_total(Decimal('12.3'), Decimal('12.300')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3984 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3985 | >>> ExtendedContext.compare_total(Decimal('12.3'), Decimal('NaN')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3986 | Decimal('-1') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3987 | >>> ExtendedContext.compare_total(1, 2) |
| 3988 | Decimal('-1') |
| 3989 | >>> ExtendedContext.compare_total(Decimal(1), 2) |
| 3990 | Decimal('-1') |
| 3991 | >>> ExtendedContext.compare_total(1, Decimal(2)) |
| 3992 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3993 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3994 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3995 | return a.compare_total(b) |
| 3996 | |
| 3997 | def compare_total_mag(self, a, b): |
| 3998 | """Compares two operands using their abstract representation ignoring sign. |
| 3999 | |
| 4000 | Like compare_total, but with operand's sign ignored and assumed to be 0. |
| 4001 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4002 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4003 | return a.compare_total_mag(b) |
| 4004 | |
| 4005 | def copy_abs(self, a): |
| 4006 | """Returns a copy of the operand with the sign set to 0. |
| 4007 | |
| 4008 | >>> ExtendedContext.copy_abs(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4009 | Decimal('2.1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4010 | >>> ExtendedContext.copy_abs(Decimal('-100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4011 | Decimal('100') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4012 | >>> ExtendedContext.copy_abs(-1) |
| 4013 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4014 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4015 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4016 | return a.copy_abs() |
| 4017 | |
| 4018 | def copy_decimal(self, a): |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4019 | """Returns a copy of the decimal object. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4020 | |
| 4021 | >>> ExtendedContext.copy_decimal(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4022 | Decimal('2.1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4023 | >>> ExtendedContext.copy_decimal(Decimal('-1.00')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4024 | Decimal('-1.00') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4025 | >>> ExtendedContext.copy_decimal(1) |
| 4026 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4027 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4028 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 4029 | return Decimal(a) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4030 | |
| 4031 | def copy_negate(self, a): |
| 4032 | """Returns a copy of the operand with the sign inverted. |
| 4033 | |
| 4034 | >>> ExtendedContext.copy_negate(Decimal('101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4035 | Decimal('-101.5') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4036 | >>> ExtendedContext.copy_negate(Decimal('-101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4037 | Decimal('101.5') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4038 | >>> ExtendedContext.copy_negate(1) |
| 4039 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4040 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4041 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4042 | return a.copy_negate() |
| 4043 | |
| 4044 | def copy_sign(self, a, b): |
| 4045 | """Copies the second operand's sign to the first one. |
| 4046 | |
| 4047 | In detail, it returns a copy of the first operand with the sign |
| 4048 | equal to the sign of the second operand. |
| 4049 | |
| 4050 | >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('7.33')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4051 | Decimal('1.50') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4052 | >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('7.33')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4053 | Decimal('1.50') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4054 | >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('-7.33')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4055 | Decimal('-1.50') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4056 | >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('-7.33')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4057 | Decimal('-1.50') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4058 | >>> ExtendedContext.copy_sign(1, -2) |
| 4059 | Decimal('-1') |
| 4060 | >>> ExtendedContext.copy_sign(Decimal(1), -2) |
| 4061 | Decimal('-1') |
| 4062 | >>> ExtendedContext.copy_sign(1, Decimal(-2)) |
| 4063 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4064 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4065 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4066 | return a.copy_sign(b) |
| 4067 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4068 | def divide(self, a, b): |
| 4069 | """Decimal division in a specified context. |
| 4070 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4071 | >>> ExtendedContext.divide(Decimal('1'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4072 | Decimal('0.333333333') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4073 | >>> ExtendedContext.divide(Decimal('2'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4074 | Decimal('0.666666667') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4075 | >>> ExtendedContext.divide(Decimal('5'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4076 | Decimal('2.5') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4077 | >>> ExtendedContext.divide(Decimal('1'), Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4078 | Decimal('0.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4079 | >>> ExtendedContext.divide(Decimal('12'), Decimal('12')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4080 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4081 | >>> ExtendedContext.divide(Decimal('8.00'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4082 | Decimal('4.00') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4083 | >>> ExtendedContext.divide(Decimal('2.400'), Decimal('2.0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4084 | Decimal('1.20') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4085 | >>> ExtendedContext.divide(Decimal('1000'), Decimal('100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4086 | Decimal('10') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4087 | >>> ExtendedContext.divide(Decimal('1000'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4088 | Decimal('1000') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4089 | >>> ExtendedContext.divide(Decimal('2.40E+6'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4090 | Decimal('1.20E+6') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4091 | >>> ExtendedContext.divide(5, 5) |
| 4092 | Decimal('1') |
| 4093 | >>> ExtendedContext.divide(Decimal(5), 5) |
| 4094 | Decimal('1') |
| 4095 | >>> ExtendedContext.divide(5, Decimal(5)) |
| 4096 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4097 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4098 | a = _convert_other(a, raiseit=True) |
| 4099 | r = a.__div__(b, context=self) |
| 4100 | if r is NotImplemented: |
| 4101 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4102 | else: |
| 4103 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4104 | |
| 4105 | def divide_int(self, a, b): |
| 4106 | """Divides two numbers and returns the integer part of the result. |
| 4107 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4108 | >>> ExtendedContext.divide_int(Decimal('2'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4109 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4110 | >>> ExtendedContext.divide_int(Decimal('10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4111 | Decimal('3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4112 | >>> ExtendedContext.divide_int(Decimal('1'), Decimal('0.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4113 | Decimal('3') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4114 | >>> ExtendedContext.divide_int(10, 3) |
| 4115 | Decimal('3') |
| 4116 | >>> ExtendedContext.divide_int(Decimal(10), 3) |
| 4117 | Decimal('3') |
| 4118 | >>> ExtendedContext.divide_int(10, Decimal(3)) |
| 4119 | Decimal('3') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4120 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4121 | a = _convert_other(a, raiseit=True) |
| 4122 | r = a.__floordiv__(b, context=self) |
| 4123 | if r is NotImplemented: |
| 4124 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4125 | else: |
| 4126 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4127 | |
| 4128 | def divmod(self, a, b): |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4129 | """Return (a // b, a % b). |
Mark Dickinson | 202eb90 | 2010-01-06 16:20:22 +0000 | [diff] [blame] | 4130 | |
| 4131 | >>> ExtendedContext.divmod(Decimal(8), Decimal(3)) |
| 4132 | (Decimal('2'), Decimal('2')) |
| 4133 | >>> ExtendedContext.divmod(Decimal(8), Decimal(4)) |
| 4134 | (Decimal('2'), Decimal('0')) |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4135 | >>> ExtendedContext.divmod(8, 4) |
| 4136 | (Decimal('2'), Decimal('0')) |
| 4137 | >>> ExtendedContext.divmod(Decimal(8), 4) |
| 4138 | (Decimal('2'), Decimal('0')) |
| 4139 | >>> ExtendedContext.divmod(8, Decimal(4)) |
| 4140 | (Decimal('2'), Decimal('0')) |
Mark Dickinson | 202eb90 | 2010-01-06 16:20:22 +0000 | [diff] [blame] | 4141 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4142 | a = _convert_other(a, raiseit=True) |
| 4143 | r = a.__divmod__(b, context=self) |
| 4144 | if r is NotImplemented: |
| 4145 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4146 | else: |
| 4147 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4148 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4149 | def exp(self, a): |
| 4150 | """Returns e ** a. |
| 4151 | |
| 4152 | >>> c = ExtendedContext.copy() |
| 4153 | >>> c.Emin = -999 |
| 4154 | >>> c.Emax = 999 |
| 4155 | >>> c.exp(Decimal('-Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4156 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4157 | >>> c.exp(Decimal('-1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4158 | Decimal('0.367879441') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4159 | >>> c.exp(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4160 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4161 | >>> c.exp(Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4162 | Decimal('2.71828183') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4163 | >>> c.exp(Decimal('0.693147181')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4164 | Decimal('2.00000000') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4165 | >>> c.exp(Decimal('+Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4166 | Decimal('Infinity') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4167 | >>> c.exp(10) |
| 4168 | Decimal('22026.4658') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4169 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4170 | a =_convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4171 | return a.exp(context=self) |
| 4172 | |
| 4173 | def fma(self, a, b, c): |
| 4174 | """Returns a multiplied by b, plus c. |
| 4175 | |
| 4176 | The first two operands are multiplied together, using multiply, |
| 4177 | the third operand is then added to the result of that |
| 4178 | multiplication, using add, all with only one final rounding. |
| 4179 | |
| 4180 | >>> ExtendedContext.fma(Decimal('3'), Decimal('5'), Decimal('7')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4181 | Decimal('22') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4182 | >>> ExtendedContext.fma(Decimal('3'), Decimal('-5'), Decimal('7')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4183 | Decimal('-8') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4184 | >>> ExtendedContext.fma(Decimal('888565290'), Decimal('1557.96930'), Decimal('-86087.7578')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4185 | Decimal('1.38435736E+12') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4186 | >>> ExtendedContext.fma(1, 3, 4) |
| 4187 | Decimal('7') |
| 4188 | >>> ExtendedContext.fma(1, Decimal(3), 4) |
| 4189 | Decimal('7') |
| 4190 | >>> ExtendedContext.fma(1, 3, Decimal(4)) |
| 4191 | Decimal('7') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4192 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4193 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4194 | return a.fma(b, c, context=self) |
| 4195 | |
| 4196 | def is_canonical(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4197 | """Return True if the operand is canonical; otherwise return False. |
| 4198 | |
| 4199 | Currently, the encoding of a Decimal instance is always |
| 4200 | canonical, so this method returns True for any Decimal. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4201 | |
| 4202 | >>> ExtendedContext.is_canonical(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4203 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4204 | """ |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4205 | return a.is_canonical() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4206 | |
| 4207 | def is_finite(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4208 | """Return True if the operand is finite; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4209 | |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4210 | A Decimal instance is considered finite if it is neither |
| 4211 | infinite nor a NaN. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4212 | |
| 4213 | >>> ExtendedContext.is_finite(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4214 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4215 | >>> ExtendedContext.is_finite(Decimal('-0.3')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4216 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4217 | >>> ExtendedContext.is_finite(Decimal('0')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4218 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4219 | >>> ExtendedContext.is_finite(Decimal('Inf')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4220 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4221 | >>> ExtendedContext.is_finite(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4222 | False |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4223 | >>> ExtendedContext.is_finite(1) |
| 4224 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4225 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4226 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4227 | return a.is_finite() |
| 4228 | |
| 4229 | def is_infinite(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4230 | """Return True if the operand is infinite; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4231 | |
| 4232 | >>> ExtendedContext.is_infinite(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4233 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4234 | >>> ExtendedContext.is_infinite(Decimal('-Inf')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4235 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4236 | >>> ExtendedContext.is_infinite(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4237 | False |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4238 | >>> ExtendedContext.is_infinite(1) |
| 4239 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4240 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4241 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4242 | return a.is_infinite() |
| 4243 | |
| 4244 | def is_nan(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4245 | """Return True if the operand is a qNaN or sNaN; |
| 4246 | otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4247 | |
| 4248 | >>> ExtendedContext.is_nan(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4249 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4250 | >>> ExtendedContext.is_nan(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4251 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4252 | >>> ExtendedContext.is_nan(Decimal('-sNaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4253 | True |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4254 | >>> ExtendedContext.is_nan(1) |
| 4255 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4256 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4257 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4258 | return a.is_nan() |
| 4259 | |
| 4260 | def is_normal(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4261 | """Return True if the operand is a normal number; |
| 4262 | otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4263 | |
| 4264 | >>> c = ExtendedContext.copy() |
| 4265 | >>> c.Emin = -999 |
| 4266 | >>> c.Emax = 999 |
| 4267 | >>> c.is_normal(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4268 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4269 | >>> c.is_normal(Decimal('0.1E-999')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4270 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4271 | >>> c.is_normal(Decimal('0.00')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4272 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4273 | >>> c.is_normal(Decimal('-Inf')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4274 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4275 | >>> c.is_normal(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4276 | False |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4277 | >>> c.is_normal(1) |
| 4278 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4279 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4280 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4281 | return a.is_normal(context=self) |
| 4282 | |
| 4283 | def is_qnan(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4284 | """Return True if the operand is a quiet NaN; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4285 | |
| 4286 | >>> ExtendedContext.is_qnan(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4287 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4288 | >>> ExtendedContext.is_qnan(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4289 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4290 | >>> ExtendedContext.is_qnan(Decimal('sNaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4291 | False |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4292 | >>> ExtendedContext.is_qnan(1) |
| 4293 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4294 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4295 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4296 | return a.is_qnan() |
| 4297 | |
| 4298 | def is_signed(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4299 | """Return True if the operand is negative; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4300 | |
| 4301 | >>> ExtendedContext.is_signed(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4302 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4303 | >>> ExtendedContext.is_signed(Decimal('-12')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4304 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4305 | >>> ExtendedContext.is_signed(Decimal('-0')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4306 | True |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4307 | >>> ExtendedContext.is_signed(8) |
| 4308 | False |
| 4309 | >>> ExtendedContext.is_signed(-8) |
| 4310 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4311 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4312 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4313 | return a.is_signed() |
| 4314 | |
| 4315 | def is_snan(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4316 | """Return True if the operand is a signaling NaN; |
| 4317 | otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4318 | |
| 4319 | >>> ExtendedContext.is_snan(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4320 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4321 | >>> ExtendedContext.is_snan(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4322 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4323 | >>> ExtendedContext.is_snan(Decimal('sNaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4324 | True |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4325 | >>> ExtendedContext.is_snan(1) |
| 4326 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4327 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4328 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4329 | return a.is_snan() |
| 4330 | |
| 4331 | def is_subnormal(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4332 | """Return True if the operand is subnormal; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4333 | |
| 4334 | >>> c = ExtendedContext.copy() |
| 4335 | >>> c.Emin = -999 |
| 4336 | >>> c.Emax = 999 |
| 4337 | >>> c.is_subnormal(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4338 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4339 | >>> c.is_subnormal(Decimal('0.1E-999')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4340 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4341 | >>> c.is_subnormal(Decimal('0.00')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4342 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4343 | >>> c.is_subnormal(Decimal('-Inf')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4344 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4345 | >>> c.is_subnormal(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4346 | False |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4347 | >>> c.is_subnormal(1) |
| 4348 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4349 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4350 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4351 | return a.is_subnormal(context=self) |
| 4352 | |
| 4353 | def is_zero(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4354 | """Return True if the operand is a zero; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4355 | |
| 4356 | >>> ExtendedContext.is_zero(Decimal('0')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4357 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4358 | >>> ExtendedContext.is_zero(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4359 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4360 | >>> ExtendedContext.is_zero(Decimal('-0E+2')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4361 | True |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4362 | >>> ExtendedContext.is_zero(1) |
| 4363 | False |
| 4364 | >>> ExtendedContext.is_zero(0) |
| 4365 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4366 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4367 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4368 | return a.is_zero() |
| 4369 | |
| 4370 | def ln(self, a): |
| 4371 | """Returns the natural (base e) logarithm of the operand. |
| 4372 | |
| 4373 | >>> c = ExtendedContext.copy() |
| 4374 | >>> c.Emin = -999 |
| 4375 | >>> c.Emax = 999 |
| 4376 | >>> c.ln(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4377 | Decimal('-Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4378 | >>> c.ln(Decimal('1.000')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4379 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4380 | >>> c.ln(Decimal('2.71828183')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4381 | Decimal('1.00000000') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4382 | >>> c.ln(Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4383 | Decimal('2.30258509') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4384 | >>> c.ln(Decimal('+Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4385 | Decimal('Infinity') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4386 | >>> c.ln(1) |
| 4387 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4388 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4389 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4390 | return a.ln(context=self) |
| 4391 | |
| 4392 | def log10(self, a): |
| 4393 | """Returns the base 10 logarithm of the operand. |
| 4394 | |
| 4395 | >>> c = ExtendedContext.copy() |
| 4396 | >>> c.Emin = -999 |
| 4397 | >>> c.Emax = 999 |
| 4398 | >>> c.log10(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4399 | Decimal('-Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4400 | >>> c.log10(Decimal('0.001')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4401 | Decimal('-3') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4402 | >>> c.log10(Decimal('1.000')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4403 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4404 | >>> c.log10(Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4405 | Decimal('0.301029996') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4406 | >>> c.log10(Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4407 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4408 | >>> c.log10(Decimal('70')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4409 | Decimal('1.84509804') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4410 | >>> c.log10(Decimal('+Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4411 | Decimal('Infinity') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4412 | >>> c.log10(0) |
| 4413 | Decimal('-Infinity') |
| 4414 | >>> c.log10(1) |
| 4415 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4416 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4417 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4418 | return a.log10(context=self) |
| 4419 | |
| 4420 | def logb(self, a): |
| 4421 | """ Returns the exponent of the magnitude of the operand's MSD. |
| 4422 | |
| 4423 | The result is the integer which is the exponent of the magnitude |
| 4424 | of the most significant digit of the operand (as though the |
| 4425 | operand were truncated to a single digit while maintaining the |
| 4426 | value of that digit and without limiting the resulting exponent). |
| 4427 | |
| 4428 | >>> ExtendedContext.logb(Decimal('250')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4429 | Decimal('2') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4430 | >>> ExtendedContext.logb(Decimal('2.50')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4431 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4432 | >>> ExtendedContext.logb(Decimal('0.03')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4433 | Decimal('-2') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4434 | >>> ExtendedContext.logb(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4435 | Decimal('-Infinity') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4436 | >>> ExtendedContext.logb(1) |
| 4437 | Decimal('0') |
| 4438 | >>> ExtendedContext.logb(10) |
| 4439 | Decimal('1') |
| 4440 | >>> ExtendedContext.logb(100) |
| 4441 | Decimal('2') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4442 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4443 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4444 | return a.logb(context=self) |
| 4445 | |
| 4446 | def logical_and(self, a, b): |
| 4447 | """Applies the logical operation 'and' between each operand's digits. |
| 4448 | |
| 4449 | The operands must be both logical numbers. |
| 4450 | |
| 4451 | >>> ExtendedContext.logical_and(Decimal('0'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4452 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4453 | >>> ExtendedContext.logical_and(Decimal('0'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4454 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4455 | >>> ExtendedContext.logical_and(Decimal('1'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4456 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4457 | >>> ExtendedContext.logical_and(Decimal('1'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4458 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4459 | >>> ExtendedContext.logical_and(Decimal('1100'), Decimal('1010')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4460 | Decimal('1000') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4461 | >>> ExtendedContext.logical_and(Decimal('1111'), Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4462 | Decimal('10') |
Mark Dickinson | 456e165 | 2010-02-18 14:45:33 +0000 | [diff] [blame] | 4463 | >>> ExtendedContext.logical_and(110, 1101) |
| 4464 | Decimal('100') |
| 4465 | >>> ExtendedContext.logical_and(Decimal(110), 1101) |
| 4466 | Decimal('100') |
| 4467 | >>> ExtendedContext.logical_and(110, Decimal(1101)) |
| 4468 | Decimal('100') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4469 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4470 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4471 | return a.logical_and(b, context=self) |
| 4472 | |
| 4473 | def logical_invert(self, a): |
| 4474 | """Invert all the digits in the operand. |
| 4475 | |
| 4476 | The operand must be a logical number. |
| 4477 | |
| 4478 | >>> ExtendedContext.logical_invert(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4479 | Decimal('111111111') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4480 | >>> ExtendedContext.logical_invert(Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4481 | Decimal('111111110') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4482 | >>> ExtendedContext.logical_invert(Decimal('111111111')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4483 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4484 | >>> ExtendedContext.logical_invert(Decimal('101010101')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4485 | Decimal('10101010') |
Mark Dickinson | 456e165 | 2010-02-18 14:45:33 +0000 | [diff] [blame] | 4486 | >>> ExtendedContext.logical_invert(1101) |
| 4487 | Decimal('111110010') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4488 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4489 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4490 | return a.logical_invert(context=self) |
| 4491 | |
| 4492 | def logical_or(self, a, b): |
| 4493 | """Applies the logical operation 'or' between each operand's digits. |
| 4494 | |
| 4495 | The operands must be both logical numbers. |
| 4496 | |
| 4497 | >>> ExtendedContext.logical_or(Decimal('0'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4498 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4499 | >>> ExtendedContext.logical_or(Decimal('0'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4500 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4501 | >>> ExtendedContext.logical_or(Decimal('1'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4502 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4503 | >>> ExtendedContext.logical_or(Decimal('1'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4504 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4505 | >>> ExtendedContext.logical_or(Decimal('1100'), Decimal('1010')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4506 | Decimal('1110') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4507 | >>> ExtendedContext.logical_or(Decimal('1110'), Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4508 | Decimal('1110') |
Mark Dickinson | 456e165 | 2010-02-18 14:45:33 +0000 | [diff] [blame] | 4509 | >>> ExtendedContext.logical_or(110, 1101) |
| 4510 | Decimal('1111') |
| 4511 | >>> ExtendedContext.logical_or(Decimal(110), 1101) |
| 4512 | Decimal('1111') |
| 4513 | >>> ExtendedContext.logical_or(110, Decimal(1101)) |
| 4514 | Decimal('1111') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4515 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4516 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4517 | return a.logical_or(b, context=self) |
| 4518 | |
| 4519 | def logical_xor(self, a, b): |
| 4520 | """Applies the logical operation 'xor' between each operand's digits. |
| 4521 | |
| 4522 | The operands must be both logical numbers. |
| 4523 | |
| 4524 | >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4525 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4526 | >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4527 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4528 | >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4529 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4530 | >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4531 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4532 | >>> ExtendedContext.logical_xor(Decimal('1100'), Decimal('1010')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4533 | Decimal('110') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4534 | >>> ExtendedContext.logical_xor(Decimal('1111'), Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4535 | Decimal('1101') |
Mark Dickinson | 456e165 | 2010-02-18 14:45:33 +0000 | [diff] [blame] | 4536 | >>> ExtendedContext.logical_xor(110, 1101) |
| 4537 | Decimal('1011') |
| 4538 | >>> ExtendedContext.logical_xor(Decimal(110), 1101) |
| 4539 | Decimal('1011') |
| 4540 | >>> ExtendedContext.logical_xor(110, Decimal(1101)) |
| 4541 | Decimal('1011') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4542 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4543 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4544 | return a.logical_xor(b, context=self) |
| 4545 | |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4546 | def max(self, a, b): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4547 | """max compares two values numerically and returns the maximum. |
| 4548 | |
| 4549 | If either operand is a NaN then the general rules apply. |
Andrew M. Kuchling | c8acc88 | 2008-01-16 00:32:03 +0000 | [diff] [blame] | 4550 | Otherwise, the operands are compared as though by the compare |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 4551 | operation. If they are numerically equal then the left-hand operand |
| 4552 | is chosen as the result. Otherwise the maximum (closer to positive |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4553 | infinity) of the two operands is chosen as the result. |
| 4554 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4555 | >>> ExtendedContext.max(Decimal('3'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4556 | Decimal('3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4557 | >>> ExtendedContext.max(Decimal('-10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4558 | Decimal('3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4559 | >>> ExtendedContext.max(Decimal('1.0'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4560 | Decimal('1') |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 4561 | >>> ExtendedContext.max(Decimal('7'), Decimal('NaN')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4562 | Decimal('7') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4563 | >>> ExtendedContext.max(1, 2) |
| 4564 | Decimal('2') |
| 4565 | >>> ExtendedContext.max(Decimal(1), 2) |
| 4566 | Decimal('2') |
| 4567 | >>> ExtendedContext.max(1, Decimal(2)) |
| 4568 | Decimal('2') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4569 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4570 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4571 | return a.max(b, context=self) |
| 4572 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4573 | def max_mag(self, a, b): |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4574 | """Compares the values numerically with their sign ignored. |
| 4575 | |
| 4576 | >>> ExtendedContext.max_mag(Decimal('7'), Decimal('NaN')) |
| 4577 | Decimal('7') |
| 4578 | >>> ExtendedContext.max_mag(Decimal('7'), Decimal('-10')) |
| 4579 | Decimal('-10') |
| 4580 | >>> ExtendedContext.max_mag(1, -2) |
| 4581 | Decimal('-2') |
| 4582 | >>> ExtendedContext.max_mag(Decimal(1), -2) |
| 4583 | Decimal('-2') |
| 4584 | >>> ExtendedContext.max_mag(1, Decimal(-2)) |
| 4585 | Decimal('-2') |
| 4586 | """ |
| 4587 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4588 | return a.max_mag(b, context=self) |
| 4589 | |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4590 | def min(self, a, b): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4591 | """min compares two values numerically and returns the minimum. |
| 4592 | |
| 4593 | If either operand is a NaN then the general rules apply. |
Andrew M. Kuchling | c8acc88 | 2008-01-16 00:32:03 +0000 | [diff] [blame] | 4594 | Otherwise, the operands are compared as though by the compare |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 4595 | operation. If they are numerically equal then the left-hand operand |
| 4596 | is chosen as the result. Otherwise the minimum (closer to negative |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4597 | infinity) of the two operands is chosen as the result. |
| 4598 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4599 | >>> ExtendedContext.min(Decimal('3'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4600 | Decimal('2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4601 | >>> ExtendedContext.min(Decimal('-10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4602 | Decimal('-10') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4603 | >>> ExtendedContext.min(Decimal('1.0'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4604 | Decimal('1.0') |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 4605 | >>> ExtendedContext.min(Decimal('7'), Decimal('NaN')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4606 | Decimal('7') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4607 | >>> ExtendedContext.min(1, 2) |
| 4608 | Decimal('1') |
| 4609 | >>> ExtendedContext.min(Decimal(1), 2) |
| 4610 | Decimal('1') |
| 4611 | >>> ExtendedContext.min(1, Decimal(29)) |
| 4612 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4613 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4614 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4615 | return a.min(b, context=self) |
| 4616 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4617 | def min_mag(self, a, b): |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4618 | """Compares the values numerically with their sign ignored. |
| 4619 | |
| 4620 | >>> ExtendedContext.min_mag(Decimal('3'), Decimal('-2')) |
| 4621 | Decimal('-2') |
| 4622 | >>> ExtendedContext.min_mag(Decimal('-3'), Decimal('NaN')) |
| 4623 | Decimal('-3') |
| 4624 | >>> ExtendedContext.min_mag(1, -2) |
| 4625 | Decimal('1') |
| 4626 | >>> ExtendedContext.min_mag(Decimal(1), -2) |
| 4627 | Decimal('1') |
| 4628 | >>> ExtendedContext.min_mag(1, Decimal(-2)) |
| 4629 | Decimal('1') |
| 4630 | """ |
| 4631 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4632 | return a.min_mag(b, context=self) |
| 4633 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4634 | def minus(self, a): |
| 4635 | """Minus corresponds to unary prefix minus in Python. |
| 4636 | |
| 4637 | The operation is evaluated using the same rules as subtract; the |
| 4638 | operation minus(a) is calculated as subtract('0', a) where the '0' |
| 4639 | has the same exponent as the operand. |
| 4640 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4641 | >>> ExtendedContext.minus(Decimal('1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4642 | Decimal('-1.3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4643 | >>> ExtendedContext.minus(Decimal('-1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4644 | Decimal('1.3') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4645 | >>> ExtendedContext.minus(1) |
| 4646 | Decimal('-1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4647 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4648 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4649 | return a.__neg__(context=self) |
| 4650 | |
| 4651 | def multiply(self, a, b): |
| 4652 | """multiply multiplies two operands. |
| 4653 | |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 4654 | If either operand is a special value then the general rules apply. |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4655 | Otherwise, the operands are multiplied together |
| 4656 | ('long multiplication'), resulting in a number which may be as long as |
| 4657 | the sum of the lengths of the two operands. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4658 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4659 | >>> ExtendedContext.multiply(Decimal('1.20'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4660 | Decimal('3.60') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4661 | >>> ExtendedContext.multiply(Decimal('7'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4662 | Decimal('21') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4663 | >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('0.8')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4664 | Decimal('0.72') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4665 | >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('-0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4666 | Decimal('-0.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4667 | >>> ExtendedContext.multiply(Decimal('654321'), Decimal('654321')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4668 | Decimal('4.28135971E+11') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4669 | >>> ExtendedContext.multiply(7, 7) |
| 4670 | Decimal('49') |
| 4671 | >>> ExtendedContext.multiply(Decimal(7), 7) |
| 4672 | Decimal('49') |
| 4673 | >>> ExtendedContext.multiply(7, Decimal(7)) |
| 4674 | Decimal('49') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4675 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4676 | a = _convert_other(a, raiseit=True) |
| 4677 | r = a.__mul__(b, context=self) |
| 4678 | if r is NotImplemented: |
| 4679 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4680 | else: |
| 4681 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4682 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4683 | def next_minus(self, a): |
| 4684 | """Returns the largest representable number smaller than a. |
| 4685 | |
| 4686 | >>> c = ExtendedContext.copy() |
| 4687 | >>> c.Emin = -999 |
| 4688 | >>> c.Emax = 999 |
| 4689 | >>> ExtendedContext.next_minus(Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4690 | Decimal('0.999999999') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4691 | >>> c.next_minus(Decimal('1E-1007')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4692 | Decimal('0E-1007') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4693 | >>> ExtendedContext.next_minus(Decimal('-1.00000003')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4694 | Decimal('-1.00000004') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4695 | >>> c.next_minus(Decimal('Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4696 | Decimal('9.99999999E+999') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4697 | >>> c.next_minus(1) |
| 4698 | Decimal('0.999999999') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4699 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4700 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4701 | return a.next_minus(context=self) |
| 4702 | |
| 4703 | def next_plus(self, a): |
| 4704 | """Returns the smallest representable number larger than a. |
| 4705 | |
| 4706 | >>> c = ExtendedContext.copy() |
| 4707 | >>> c.Emin = -999 |
| 4708 | >>> c.Emax = 999 |
| 4709 | >>> ExtendedContext.next_plus(Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4710 | Decimal('1.00000001') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4711 | >>> c.next_plus(Decimal('-1E-1007')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4712 | Decimal('-0E-1007') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4713 | >>> ExtendedContext.next_plus(Decimal('-1.00000003')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4714 | Decimal('-1.00000002') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4715 | >>> c.next_plus(Decimal('-Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4716 | Decimal('-9.99999999E+999') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4717 | >>> c.next_plus(1) |
| 4718 | Decimal('1.00000001') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4719 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4720 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4721 | return a.next_plus(context=self) |
| 4722 | |
| 4723 | def next_toward(self, a, b): |
| 4724 | """Returns the number closest to a, in direction towards b. |
| 4725 | |
| 4726 | The result is the closest representable number from the first |
| 4727 | operand (but not the first operand) that is in the direction |
| 4728 | towards the second operand, unless the operands have the same |
| 4729 | value. |
| 4730 | |
| 4731 | >>> c = ExtendedContext.copy() |
| 4732 | >>> c.Emin = -999 |
| 4733 | >>> c.Emax = 999 |
| 4734 | >>> c.next_toward(Decimal('1'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4735 | Decimal('1.00000001') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4736 | >>> c.next_toward(Decimal('-1E-1007'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4737 | Decimal('-0E-1007') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4738 | >>> c.next_toward(Decimal('-1.00000003'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4739 | Decimal('-1.00000002') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4740 | >>> c.next_toward(Decimal('1'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4741 | Decimal('0.999999999') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4742 | >>> c.next_toward(Decimal('1E-1007'), Decimal('-100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4743 | Decimal('0E-1007') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4744 | >>> c.next_toward(Decimal('-1.00000003'), Decimal('-10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4745 | Decimal('-1.00000004') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4746 | >>> c.next_toward(Decimal('0.00'), Decimal('-0.0000')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4747 | Decimal('-0.00') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4748 | >>> c.next_toward(0, 1) |
| 4749 | Decimal('1E-1007') |
| 4750 | >>> c.next_toward(Decimal(0), 1) |
| 4751 | Decimal('1E-1007') |
| 4752 | >>> c.next_toward(0, Decimal(1)) |
| 4753 | Decimal('1E-1007') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4754 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4755 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4756 | return a.next_toward(b, context=self) |
| 4757 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4758 | def normalize(self, a): |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 4759 | """normalize reduces an operand to its simplest form. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4760 | |
| 4761 | Essentially a plus operation with all trailing zeros removed from the |
| 4762 | result. |
| 4763 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4764 | >>> ExtendedContext.normalize(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4765 | Decimal('2.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4766 | >>> ExtendedContext.normalize(Decimal('-2.0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4767 | Decimal('-2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4768 | >>> ExtendedContext.normalize(Decimal('1.200')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4769 | Decimal('1.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4770 | >>> ExtendedContext.normalize(Decimal('-120')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4771 | Decimal('-1.2E+2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4772 | >>> ExtendedContext.normalize(Decimal('120.00')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4773 | Decimal('1.2E+2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4774 | >>> ExtendedContext.normalize(Decimal('0.00')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4775 | Decimal('0') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4776 | >>> ExtendedContext.normalize(6) |
| 4777 | Decimal('6') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4778 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4779 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4780 | return a.normalize(context=self) |
| 4781 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4782 | def number_class(self, a): |
| 4783 | """Returns an indication of the class of the operand. |
| 4784 | |
| 4785 | The class is one of the following strings: |
| 4786 | -sNaN |
| 4787 | -NaN |
| 4788 | -Infinity |
| 4789 | -Normal |
| 4790 | -Subnormal |
| 4791 | -Zero |
| 4792 | +Zero |
| 4793 | +Subnormal |
| 4794 | +Normal |
| 4795 | +Infinity |
| 4796 | |
| 4797 | >>> c = Context(ExtendedContext) |
| 4798 | >>> c.Emin = -999 |
| 4799 | >>> c.Emax = 999 |
| 4800 | >>> c.number_class(Decimal('Infinity')) |
| 4801 | '+Infinity' |
| 4802 | >>> c.number_class(Decimal('1E-10')) |
| 4803 | '+Normal' |
| 4804 | >>> c.number_class(Decimal('2.50')) |
| 4805 | '+Normal' |
| 4806 | >>> c.number_class(Decimal('0.1E-999')) |
| 4807 | '+Subnormal' |
| 4808 | >>> c.number_class(Decimal('0')) |
| 4809 | '+Zero' |
| 4810 | >>> c.number_class(Decimal('-0')) |
| 4811 | '-Zero' |
| 4812 | >>> c.number_class(Decimal('-0.1E-999')) |
| 4813 | '-Subnormal' |
| 4814 | >>> c.number_class(Decimal('-1E-10')) |
| 4815 | '-Normal' |
| 4816 | >>> c.number_class(Decimal('-2.50')) |
| 4817 | '-Normal' |
| 4818 | >>> c.number_class(Decimal('-Infinity')) |
| 4819 | '-Infinity' |
| 4820 | >>> c.number_class(Decimal('NaN')) |
| 4821 | 'NaN' |
| 4822 | >>> c.number_class(Decimal('-NaN')) |
| 4823 | 'NaN' |
| 4824 | >>> c.number_class(Decimal('sNaN')) |
| 4825 | 'sNaN' |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4826 | >>> c.number_class(123) |
| 4827 | '+Normal' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4828 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4829 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4830 | return a.number_class(context=self) |
| 4831 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4832 | def plus(self, a): |
| 4833 | """Plus corresponds to unary prefix plus in Python. |
| 4834 | |
| 4835 | The operation is evaluated using the same rules as add; the |
| 4836 | operation plus(a) is calculated as add('0', a) where the '0' |
| 4837 | has the same exponent as the operand. |
| 4838 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4839 | >>> ExtendedContext.plus(Decimal('1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4840 | Decimal('1.3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4841 | >>> ExtendedContext.plus(Decimal('-1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4842 | Decimal('-1.3') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4843 | >>> ExtendedContext.plus(-1) |
| 4844 | Decimal('-1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4845 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4846 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4847 | return a.__pos__(context=self) |
| 4848 | |
| 4849 | def power(self, a, b, modulo=None): |
| 4850 | """Raises a to the power of b, to modulo if given. |
| 4851 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4852 | With two arguments, compute a**b. If a is negative then b |
| 4853 | must be integral. The result will be inexact unless b is |
| 4854 | integral and the result is finite and can be expressed exactly |
| 4855 | in 'precision' digits. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4856 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4857 | With three arguments, compute (a**b) % modulo. For the |
| 4858 | three argument form, the following restrictions on the |
| 4859 | arguments hold: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4860 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4861 | - all three arguments must be integral |
| 4862 | - b must be nonnegative |
| 4863 | - at least one of a or b must be nonzero |
| 4864 | - modulo must be nonzero and have at most 'precision' digits |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4865 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4866 | The result of pow(a, b, modulo) is identical to the result |
| 4867 | that would be obtained by computing (a**b) % modulo with |
| 4868 | unbounded precision, but is computed more efficiently. It is |
| 4869 | always exact. |
| 4870 | |
| 4871 | >>> c = ExtendedContext.copy() |
| 4872 | >>> c.Emin = -999 |
| 4873 | >>> c.Emax = 999 |
| 4874 | >>> c.power(Decimal('2'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4875 | Decimal('8') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4876 | >>> c.power(Decimal('-2'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4877 | Decimal('-8') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4878 | >>> c.power(Decimal('2'), Decimal('-3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4879 | Decimal('0.125') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4880 | >>> c.power(Decimal('1.7'), Decimal('8')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4881 | Decimal('69.7575744') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4882 | >>> c.power(Decimal('10'), Decimal('0.301029996')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4883 | Decimal('2.00000000') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4884 | >>> c.power(Decimal('Infinity'), Decimal('-1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4885 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4886 | >>> c.power(Decimal('Infinity'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4887 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4888 | >>> c.power(Decimal('Infinity'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4889 | Decimal('Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4890 | >>> c.power(Decimal('-Infinity'), Decimal('-1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4891 | Decimal('-0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4892 | >>> c.power(Decimal('-Infinity'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4893 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4894 | >>> c.power(Decimal('-Infinity'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4895 | Decimal('-Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4896 | >>> c.power(Decimal('-Infinity'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4897 | Decimal('Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4898 | >>> c.power(Decimal('0'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4899 | Decimal('NaN') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4900 | |
| 4901 | >>> c.power(Decimal('3'), Decimal('7'), Decimal('16')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4902 | Decimal('11') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4903 | >>> c.power(Decimal('-3'), Decimal('7'), Decimal('16')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4904 | Decimal('-11') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4905 | >>> c.power(Decimal('-3'), Decimal('8'), Decimal('16')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4906 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4907 | >>> c.power(Decimal('3'), Decimal('7'), Decimal('-16')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4908 | Decimal('11') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4909 | >>> c.power(Decimal('23E12345'), Decimal('67E189'), Decimal('123456789')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4910 | Decimal('11729830') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4911 | >>> c.power(Decimal('-0'), Decimal('17'), Decimal('1729')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4912 | Decimal('-0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4913 | >>> c.power(Decimal('-23'), Decimal('0'), Decimal('65537')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4914 | Decimal('1') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4915 | >>> ExtendedContext.power(7, 7) |
| 4916 | Decimal('823543') |
| 4917 | >>> ExtendedContext.power(Decimal(7), 7) |
| 4918 | Decimal('823543') |
| 4919 | >>> ExtendedContext.power(7, Decimal(7), 2) |
| 4920 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4921 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4922 | a = _convert_other(a, raiseit=True) |
| 4923 | r = a.__pow__(b, modulo, context=self) |
| 4924 | if r is NotImplemented: |
| 4925 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4926 | else: |
| 4927 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4928 | |
| 4929 | def quantize(self, a, b): |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 4930 | """Returns a value equal to 'a' (rounded), having the exponent of 'b'. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4931 | |
| 4932 | The coefficient of the result is derived from that of the left-hand |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 4933 | operand. It may be rounded using the current rounding setting (if the |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4934 | exponent is being increased), multiplied by a positive power of ten (if |
| 4935 | the exponent is being decreased), or is unchanged (if the exponent is |
| 4936 | already equal to that of the right-hand operand). |
| 4937 | |
| 4938 | Unlike other operations, if the length of the coefficient after the |
| 4939 | quantize operation would be greater than precision then an Invalid |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 4940 | operation condition is raised. This guarantees that, unless there is |
| 4941 | an error condition, the exponent of the result of a quantize is always |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4942 | equal to that of the right-hand operand. |
| 4943 | |
| 4944 | Also unlike other operations, quantize will never raise Underflow, even |
| 4945 | if the result is subnormal and inexact. |
| 4946 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4947 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.001')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4948 | Decimal('2.170') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4949 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.01')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4950 | Decimal('2.17') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4951 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4952 | Decimal('2.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4953 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4954 | Decimal('2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4955 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4956 | Decimal('0E+1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4957 | >>> ExtendedContext.quantize(Decimal('-Inf'), Decimal('Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4958 | Decimal('-Infinity') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4959 | >>> ExtendedContext.quantize(Decimal('2'), Decimal('Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4960 | Decimal('NaN') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4961 | >>> ExtendedContext.quantize(Decimal('-0.1'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4962 | Decimal('-0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4963 | >>> ExtendedContext.quantize(Decimal('-0'), Decimal('1e+5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4964 | Decimal('-0E+5') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4965 | >>> ExtendedContext.quantize(Decimal('+35236450.6'), Decimal('1e-2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4966 | Decimal('NaN') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4967 | >>> ExtendedContext.quantize(Decimal('-35236450.6'), Decimal('1e-2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4968 | Decimal('NaN') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4969 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4970 | Decimal('217.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4971 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4972 | Decimal('217') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4973 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4974 | Decimal('2.2E+2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4975 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4976 | Decimal('2E+2') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4977 | >>> ExtendedContext.quantize(1, 2) |
| 4978 | Decimal('1') |
| 4979 | >>> ExtendedContext.quantize(Decimal(1), 2) |
| 4980 | Decimal('1') |
| 4981 | >>> ExtendedContext.quantize(1, Decimal(2)) |
| 4982 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4983 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4984 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4985 | return a.quantize(b, context=self) |
| 4986 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4987 | def radix(self): |
| 4988 | """Just returns 10, as this is Decimal, :) |
| 4989 | |
| 4990 | >>> ExtendedContext.radix() |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4991 | Decimal('10') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4992 | """ |
| 4993 | return Decimal(10) |
| 4994 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4995 | def remainder(self, a, b): |
| 4996 | """Returns the remainder from integer division. |
| 4997 | |
| 4998 | The result is the residue of the dividend after the operation of |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 4999 | calculating integer division as described for divide-integer, rounded |
Neal Norwitz | 0d4c06e | 2007-04-25 06:30:05 +0000 | [diff] [blame] | 5000 | to precision digits if necessary. The sign of the result, if |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5001 | non-zero, is the same as that of the original dividend. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5002 | |
| 5003 | This operation will fail under the same conditions as integer division |
| 5004 | (that is, if integer division on the same two operands would fail, the |
| 5005 | remainder cannot be calculated). |
| 5006 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5007 | >>> ExtendedContext.remainder(Decimal('2.1'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5008 | Decimal('2.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5009 | >>> ExtendedContext.remainder(Decimal('10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5010 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5011 | >>> ExtendedContext.remainder(Decimal('-10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5012 | Decimal('-1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5013 | >>> ExtendedContext.remainder(Decimal('10.2'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5014 | Decimal('0.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5015 | >>> ExtendedContext.remainder(Decimal('10'), Decimal('0.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5016 | Decimal('0.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5017 | >>> ExtendedContext.remainder(Decimal('3.6'), Decimal('1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5018 | Decimal('1.0') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5019 | >>> ExtendedContext.remainder(22, 6) |
| 5020 | Decimal('4') |
| 5021 | >>> ExtendedContext.remainder(Decimal(22), 6) |
| 5022 | Decimal('4') |
| 5023 | >>> ExtendedContext.remainder(22, Decimal(6)) |
| 5024 | Decimal('4') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5025 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5026 | a = _convert_other(a, raiseit=True) |
| 5027 | r = a.__mod__(b, context=self) |
| 5028 | if r is NotImplemented: |
| 5029 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 5030 | else: |
| 5031 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5032 | |
| 5033 | def remainder_near(self, a, b): |
| 5034 | """Returns to be "a - b * n", where n is the integer nearest the exact |
| 5035 | value of "x / b" (if two integers are equally near then the even one |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5036 | is chosen). If the result is equal to 0 then its sign will be the |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5037 | sign of a. |
| 5038 | |
| 5039 | This operation will fail under the same conditions as integer division |
| 5040 | (that is, if integer division on the same two operands would fail, the |
| 5041 | remainder cannot be calculated). |
| 5042 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5043 | >>> ExtendedContext.remainder_near(Decimal('2.1'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5044 | Decimal('-0.9') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5045 | >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('6')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5046 | Decimal('-2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5047 | >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5048 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5049 | >>> ExtendedContext.remainder_near(Decimal('-10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5050 | Decimal('-1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5051 | >>> ExtendedContext.remainder_near(Decimal('10.2'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5052 | Decimal('0.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5053 | >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('0.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5054 | Decimal('0.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5055 | >>> ExtendedContext.remainder_near(Decimal('3.6'), Decimal('1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5056 | Decimal('-0.3') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5057 | >>> ExtendedContext.remainder_near(3, 11) |
| 5058 | Decimal('3') |
| 5059 | >>> ExtendedContext.remainder_near(Decimal(3), 11) |
| 5060 | Decimal('3') |
| 5061 | >>> ExtendedContext.remainder_near(3, Decimal(11)) |
| 5062 | Decimal('3') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5063 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5064 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5065 | return a.remainder_near(b, context=self) |
| 5066 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5067 | def rotate(self, a, b): |
| 5068 | """Returns a rotated copy of a, b times. |
| 5069 | |
| 5070 | The coefficient of the result is a rotated copy of the digits in |
| 5071 | the coefficient of the first operand. The number of places of |
| 5072 | rotation is taken from the absolute value of the second operand, |
| 5073 | with the rotation being to the left if the second operand is |
| 5074 | positive or to the right otherwise. |
| 5075 | |
| 5076 | >>> ExtendedContext.rotate(Decimal('34'), Decimal('8')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5077 | Decimal('400000003') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5078 | >>> ExtendedContext.rotate(Decimal('12'), Decimal('9')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5079 | Decimal('12') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5080 | >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('-2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5081 | Decimal('891234567') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5082 | >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5083 | Decimal('123456789') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5084 | >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('+2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5085 | Decimal('345678912') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5086 | >>> ExtendedContext.rotate(1333333, 1) |
| 5087 | Decimal('13333330') |
| 5088 | >>> ExtendedContext.rotate(Decimal(1333333), 1) |
| 5089 | Decimal('13333330') |
| 5090 | >>> ExtendedContext.rotate(1333333, Decimal(1)) |
| 5091 | Decimal('13333330') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5092 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5093 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5094 | return a.rotate(b, context=self) |
| 5095 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5096 | def same_quantum(self, a, b): |
| 5097 | """Returns True if the two operands have the same exponent. |
| 5098 | |
| 5099 | The result is never affected by either the sign or the coefficient of |
| 5100 | either operand. |
| 5101 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5102 | >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.001')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5103 | False |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5104 | >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.01')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5105 | True |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5106 | >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('1')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5107 | False |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5108 | >>> ExtendedContext.same_quantum(Decimal('Inf'), Decimal('-Inf')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5109 | True |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5110 | >>> ExtendedContext.same_quantum(10000, -1) |
| 5111 | True |
| 5112 | >>> ExtendedContext.same_quantum(Decimal(10000), -1) |
| 5113 | True |
| 5114 | >>> ExtendedContext.same_quantum(10000, Decimal(-1)) |
| 5115 | True |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5116 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5117 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5118 | return a.same_quantum(b) |
| 5119 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5120 | def scaleb (self, a, b): |
| 5121 | """Returns the first operand after adding the second value its exp. |
| 5122 | |
| 5123 | >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('-2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5124 | Decimal('0.0750') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5125 | >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5126 | Decimal('7.50') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5127 | >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5128 | Decimal('7.50E+3') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5129 | >>> ExtendedContext.scaleb(1, 4) |
| 5130 | Decimal('1E+4') |
| 5131 | >>> ExtendedContext.scaleb(Decimal(1), 4) |
| 5132 | Decimal('1E+4') |
| 5133 | >>> ExtendedContext.scaleb(1, Decimal(4)) |
| 5134 | Decimal('1E+4') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5135 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5136 | a = _convert_other(a, raiseit=True) |
| 5137 | return a.scaleb(b, context=self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5138 | |
| 5139 | def shift(self, a, b): |
| 5140 | """Returns a shifted copy of a, b times. |
| 5141 | |
| 5142 | The coefficient of the result is a shifted copy of the digits |
| 5143 | in the coefficient of the first operand. The number of places |
| 5144 | to shift is taken from the absolute value of the second operand, |
| 5145 | with the shift being to the left if the second operand is |
| 5146 | positive or to the right otherwise. Digits shifted into the |
| 5147 | coefficient are zeros. |
| 5148 | |
| 5149 | >>> ExtendedContext.shift(Decimal('34'), Decimal('8')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5150 | Decimal('400000000') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5151 | >>> ExtendedContext.shift(Decimal('12'), Decimal('9')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5152 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5153 | >>> ExtendedContext.shift(Decimal('123456789'), Decimal('-2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5154 | Decimal('1234567') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5155 | >>> ExtendedContext.shift(Decimal('123456789'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5156 | Decimal('123456789') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5157 | >>> ExtendedContext.shift(Decimal('123456789'), Decimal('+2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5158 | Decimal('345678900') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5159 | >>> ExtendedContext.shift(88888888, 2) |
| 5160 | Decimal('888888800') |
| 5161 | >>> ExtendedContext.shift(Decimal(88888888), 2) |
| 5162 | Decimal('888888800') |
| 5163 | >>> ExtendedContext.shift(88888888, Decimal(2)) |
| 5164 | Decimal('888888800') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5165 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5166 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5167 | return a.shift(b, context=self) |
| 5168 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5169 | def sqrt(self, a): |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5170 | """Square root of a non-negative number to context precision. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5171 | |
| 5172 | If the result must be inexact, it is rounded using the round-half-even |
| 5173 | algorithm. |
| 5174 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5175 | >>> ExtendedContext.sqrt(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5176 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5177 | >>> ExtendedContext.sqrt(Decimal('-0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5178 | Decimal('-0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5179 | >>> ExtendedContext.sqrt(Decimal('0.39')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5180 | Decimal('0.624499800') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5181 | >>> ExtendedContext.sqrt(Decimal('100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5182 | Decimal('10') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5183 | >>> ExtendedContext.sqrt(Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5184 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5185 | >>> ExtendedContext.sqrt(Decimal('1.0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5186 | Decimal('1.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5187 | >>> ExtendedContext.sqrt(Decimal('1.00')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5188 | Decimal('1.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5189 | >>> ExtendedContext.sqrt(Decimal('7')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5190 | Decimal('2.64575131') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5191 | >>> ExtendedContext.sqrt(Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5192 | Decimal('3.16227766') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5193 | >>> ExtendedContext.sqrt(2) |
| 5194 | Decimal('1.41421356') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5195 | >>> ExtendedContext.prec |
Raymond Hettinger | 6ea4845 | 2004-07-03 12:26:21 +0000 | [diff] [blame] | 5196 | 9 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5197 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5198 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5199 | return a.sqrt(context=self) |
| 5200 | |
| 5201 | def subtract(self, a, b): |
Georg Brandl | f33d01d | 2005-08-22 19:35:18 +0000 | [diff] [blame] | 5202 | """Return the difference between the two operands. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5203 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5204 | >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.07')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5205 | Decimal('0.23') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5206 | >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.30')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5207 | Decimal('0.00') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5208 | >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('2.07')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5209 | Decimal('-0.77') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5210 | >>> ExtendedContext.subtract(8, 5) |
| 5211 | Decimal('3') |
| 5212 | >>> ExtendedContext.subtract(Decimal(8), 5) |
| 5213 | Decimal('3') |
| 5214 | >>> ExtendedContext.subtract(8, Decimal(5)) |
| 5215 | Decimal('3') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5216 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5217 | a = _convert_other(a, raiseit=True) |
| 5218 | r = a.__sub__(b, context=self) |
| 5219 | if r is NotImplemented: |
| 5220 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 5221 | else: |
| 5222 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5223 | |
| 5224 | def to_eng_string(self, a): |
| 5225 | """Converts a number to a string, using scientific notation. |
| 5226 | |
| 5227 | The operation is not affected by the context. |
| 5228 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5229 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5230 | return a.to_eng_string(context=self) |
| 5231 | |
| 5232 | def to_sci_string(self, a): |
| 5233 | """Converts a number to a string, using scientific notation. |
| 5234 | |
| 5235 | The operation is not affected by the context. |
| 5236 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5237 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5238 | return a.__str__(context=self) |
| 5239 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5240 | def to_integral_exact(self, a): |
| 5241 | """Rounds to an integer. |
| 5242 | |
| 5243 | When the operand has a negative exponent, the result is the same |
| 5244 | as using the quantize() operation using the given operand as the |
| 5245 | left-hand-operand, 1E+0 as the right-hand-operand, and the precision |
| 5246 | of the operand as the precision setting; Inexact and Rounded flags |
| 5247 | are allowed in this operation. The rounding mode is taken from the |
| 5248 | context. |
| 5249 | |
| 5250 | >>> ExtendedContext.to_integral_exact(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5251 | Decimal('2') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5252 | >>> ExtendedContext.to_integral_exact(Decimal('100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5253 | Decimal('100') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5254 | >>> ExtendedContext.to_integral_exact(Decimal('100.0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5255 | Decimal('100') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5256 | >>> ExtendedContext.to_integral_exact(Decimal('101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5257 | Decimal('102') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5258 | >>> ExtendedContext.to_integral_exact(Decimal('-101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5259 | Decimal('-102') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5260 | >>> ExtendedContext.to_integral_exact(Decimal('10E+5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5261 | Decimal('1.0E+6') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5262 | >>> ExtendedContext.to_integral_exact(Decimal('7.89E+77')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5263 | Decimal('7.89E+77') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5264 | >>> ExtendedContext.to_integral_exact(Decimal('-Inf')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5265 | Decimal('-Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5266 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5267 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5268 | return a.to_integral_exact(context=self) |
| 5269 | |
| 5270 | def to_integral_value(self, a): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5271 | """Rounds to an integer. |
| 5272 | |
| 5273 | When the operand has a negative exponent, the result is the same |
| 5274 | as using the quantize() operation using the given operand as the |
| 5275 | left-hand-operand, 1E+0 as the right-hand-operand, and the precision |
| 5276 | of the operand as the precision setting, except that no flags will |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5277 | be set. The rounding mode is taken from the context. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5278 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5279 | >>> ExtendedContext.to_integral_value(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5280 | Decimal('2') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5281 | >>> ExtendedContext.to_integral_value(Decimal('100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5282 | Decimal('100') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5283 | >>> ExtendedContext.to_integral_value(Decimal('100.0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5284 | Decimal('100') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5285 | >>> ExtendedContext.to_integral_value(Decimal('101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5286 | Decimal('102') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5287 | >>> ExtendedContext.to_integral_value(Decimal('-101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5288 | Decimal('-102') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5289 | >>> ExtendedContext.to_integral_value(Decimal('10E+5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5290 | Decimal('1.0E+6') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5291 | >>> ExtendedContext.to_integral_value(Decimal('7.89E+77')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5292 | Decimal('7.89E+77') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5293 | >>> ExtendedContext.to_integral_value(Decimal('-Inf')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5294 | Decimal('-Infinity') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5295 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5296 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5297 | return a.to_integral_value(context=self) |
| 5298 | |
| 5299 | # the method name changed, but we provide also the old one, for compatibility |
| 5300 | to_integral = to_integral_value |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5301 | |
| 5302 | class _WorkRep(object): |
| 5303 | __slots__ = ('sign','int','exp') |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 5304 | # sign: 0 or 1 |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5305 | # int: int or long |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5306 | # exp: None, int, or string |
| 5307 | |
| 5308 | def __init__(self, value=None): |
| 5309 | if value is None: |
| 5310 | self.sign = None |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5311 | self.int = 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5312 | self.exp = None |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 5313 | elif isinstance(value, Decimal): |
| 5314 | self.sign = value._sign |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5315 | self.int = int(value._int) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5316 | self.exp = value._exp |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 5317 | else: |
| 5318 | # assert isinstance(value, tuple) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5319 | self.sign = value[0] |
| 5320 | self.int = value[1] |
| 5321 | self.exp = value[2] |
| 5322 | |
| 5323 | def __repr__(self): |
| 5324 | return "(%r, %r, %r)" % (self.sign, self.int, self.exp) |
| 5325 | |
| 5326 | __str__ = __repr__ |
| 5327 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5328 | |
| 5329 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 5330 | def _normalize(op1, op2, prec = 0): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5331 | """Normalizes op1, op2 to have the same exp and length of coefficient. |
| 5332 | |
| 5333 | Done during addition. |
| 5334 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5335 | if op1.exp < op2.exp: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5336 | tmp = op2 |
| 5337 | other = op1 |
| 5338 | else: |
| 5339 | tmp = op1 |
| 5340 | other = op2 |
| 5341 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5342 | # Let exp = min(tmp.exp - 1, tmp.adjusted() - precision - 1). |
| 5343 | # Then adding 10**exp to tmp has the same effect (after rounding) |
| 5344 | # as adding any positive quantity smaller than 10**exp; similarly |
| 5345 | # for subtraction. So if other is smaller than 10**exp we replace |
| 5346 | # it with 10**exp. This avoids tmp.exp - other.exp getting too large. |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 5347 | tmp_len = len(str(tmp.int)) |
| 5348 | other_len = len(str(other.int)) |
| 5349 | exp = tmp.exp + min(-1, tmp_len - prec - 2) |
| 5350 | if other_len + other.exp - 1 < exp: |
| 5351 | other.int = 1 |
| 5352 | other.exp = exp |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5353 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5354 | tmp.int *= 10 ** (tmp.exp - other.exp) |
| 5355 | tmp.exp = other.exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5356 | return op1, op2 |
| 5357 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5358 | ##### Integer arithmetic functions used by ln, log10, exp and __pow__ ##### |
| 5359 | |
| 5360 | # This function from Tim Peters was taken from here: |
| 5361 | # http://mail.python.org/pipermail/python-list/1999-July/007758.html |
| 5362 | # The correction being in the function definition is for speed, and |
| 5363 | # the whole function is not resolved with math.log because of avoiding |
| 5364 | # the use of floats. |
| 5365 | def _nbits(n, correction = { |
| 5366 | '0': 4, '1': 3, '2': 2, '3': 2, |
| 5367 | '4': 1, '5': 1, '6': 1, '7': 1, |
| 5368 | '8': 0, '9': 0, 'a': 0, 'b': 0, |
| 5369 | 'c': 0, 'd': 0, 'e': 0, 'f': 0}): |
| 5370 | """Number of bits in binary representation of the positive integer n, |
| 5371 | or 0 if n == 0. |
| 5372 | """ |
| 5373 | if n < 0: |
| 5374 | raise ValueError("The argument to _nbits should be nonnegative.") |
| 5375 | hex_n = "%x" % n |
| 5376 | return 4*len(hex_n) - correction[hex_n[0]] |
| 5377 | |
| 5378 | def _sqrt_nearest(n, a): |
| 5379 | """Closest integer to the square root of the positive integer n. a is |
| 5380 | an initial approximation to the square root. Any positive integer |
| 5381 | will do for a, but the closer a is to the square root of n the |
| 5382 | faster convergence will be. |
| 5383 | |
| 5384 | """ |
| 5385 | if n <= 0 or a <= 0: |
| 5386 | raise ValueError("Both arguments to _sqrt_nearest should be positive.") |
| 5387 | |
| 5388 | b=0 |
| 5389 | while a != b: |
| 5390 | b, a = a, a--n//a>>1 |
| 5391 | return a |
| 5392 | |
| 5393 | def _rshift_nearest(x, shift): |
| 5394 | """Given an integer x and a nonnegative integer shift, return closest |
| 5395 | integer to x / 2**shift; use round-to-even in case of a tie. |
| 5396 | |
| 5397 | """ |
| 5398 | b, q = 1L << shift, x >> shift |
| 5399 | return q + (2*(x & (b-1)) + (q&1) > b) |
| 5400 | |
| 5401 | def _div_nearest(a, b): |
| 5402 | """Closest integer to a/b, a and b positive integers; rounds to even |
| 5403 | in the case of a tie. |
| 5404 | |
| 5405 | """ |
| 5406 | q, r = divmod(a, b) |
| 5407 | return q + (2*r + (q&1) > b) |
| 5408 | |
| 5409 | def _ilog(x, M, L = 8): |
| 5410 | """Integer approximation to M*log(x/M), with absolute error boundable |
| 5411 | in terms only of x/M. |
| 5412 | |
| 5413 | Given positive integers x and M, return an integer approximation to |
| 5414 | M * log(x/M). For L = 8 and 0.1 <= x/M <= 10 the difference |
| 5415 | between the approximation and the exact result is at most 22. For |
| 5416 | L = 8 and 1.0 <= x/M <= 10.0 the difference is at most 15. In |
| 5417 | both cases these are upper bounds on the error; it will usually be |
| 5418 | much smaller.""" |
| 5419 | |
| 5420 | # The basic algorithm is the following: let log1p be the function |
| 5421 | # log1p(x) = log(1+x). Then log(x/M) = log1p((x-M)/M). We use |
| 5422 | # the reduction |
| 5423 | # |
| 5424 | # log1p(y) = 2*log1p(y/(1+sqrt(1+y))) |
| 5425 | # |
| 5426 | # repeatedly until the argument to log1p is small (< 2**-L in |
| 5427 | # absolute value). For small y we can use the Taylor series |
| 5428 | # expansion |
| 5429 | # |
| 5430 | # log1p(y) ~ y - y**2/2 + y**3/3 - ... - (-y)**T/T |
| 5431 | # |
| 5432 | # truncating at T such that y**T is small enough. The whole |
| 5433 | # computation is carried out in a form of fixed-point arithmetic, |
| 5434 | # with a real number z being represented by an integer |
| 5435 | # approximation to z*M. To avoid loss of precision, the y below |
| 5436 | # is actually an integer approximation to 2**R*y*M, where R is the |
| 5437 | # number of reductions performed so far. |
| 5438 | |
| 5439 | y = x-M |
| 5440 | # argument reduction; R = number of reductions performed |
| 5441 | R = 0 |
| 5442 | while (R <= L and long(abs(y)) << L-R >= M or |
| 5443 | R > L and abs(y) >> R-L >= M): |
| 5444 | y = _div_nearest(long(M*y) << 1, |
| 5445 | M + _sqrt_nearest(M*(M+_rshift_nearest(y, R)), M)) |
| 5446 | R += 1 |
| 5447 | |
| 5448 | # Taylor series with T terms |
| 5449 | T = -int(-10*len(str(M))//(3*L)) |
| 5450 | yshift = _rshift_nearest(y, R) |
| 5451 | w = _div_nearest(M, T) |
| 5452 | for k in xrange(T-1, 0, -1): |
| 5453 | w = _div_nearest(M, k) - _div_nearest(yshift*w, M) |
| 5454 | |
| 5455 | return _div_nearest(w*y, M) |
| 5456 | |
| 5457 | def _dlog10(c, e, p): |
| 5458 | """Given integers c, e and p with c > 0, p >= 0, compute an integer |
| 5459 | approximation to 10**p * log10(c*10**e), with an absolute error of |
| 5460 | at most 1. Assumes that c*10**e is not exactly 1.""" |
| 5461 | |
| 5462 | # increase precision by 2; compensate for this by dividing |
| 5463 | # final result by 100 |
| 5464 | p += 2 |
| 5465 | |
| 5466 | # write c*10**e as d*10**f with either: |
| 5467 | # f >= 0 and 1 <= d <= 10, or |
| 5468 | # f <= 0 and 0.1 <= d <= 1. |
| 5469 | # Thus for c*10**e close to 1, f = 0 |
| 5470 | l = len(str(c)) |
| 5471 | f = e+l - (e+l >= 1) |
| 5472 | |
| 5473 | if p > 0: |
| 5474 | M = 10**p |
| 5475 | k = e+p-f |
| 5476 | if k >= 0: |
| 5477 | c *= 10**k |
| 5478 | else: |
| 5479 | c = _div_nearest(c, 10**-k) |
| 5480 | |
| 5481 | log_d = _ilog(c, M) # error < 5 + 22 = 27 |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5482 | log_10 = _log10_digits(p) # error < 1 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5483 | log_d = _div_nearest(log_d*M, log_10) |
| 5484 | log_tenpower = f*M # exact |
| 5485 | else: |
| 5486 | log_d = 0 # error < 2.31 |
Neal Norwitz | 18aa388 | 2008-08-24 05:04:52 +0000 | [diff] [blame] | 5487 | log_tenpower = _div_nearest(f, 10**-p) # error < 0.5 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5488 | |
| 5489 | return _div_nearest(log_tenpower+log_d, 100) |
| 5490 | |
| 5491 | def _dlog(c, e, p): |
| 5492 | """Given integers c, e and p with c > 0, compute an integer |
| 5493 | approximation to 10**p * log(c*10**e), with an absolute error of |
| 5494 | at most 1. Assumes that c*10**e is not exactly 1.""" |
| 5495 | |
| 5496 | # Increase precision by 2. The precision increase is compensated |
| 5497 | # for at the end with a division by 100. |
| 5498 | p += 2 |
| 5499 | |
| 5500 | # rewrite c*10**e as d*10**f with either f >= 0 and 1 <= d <= 10, |
| 5501 | # or f <= 0 and 0.1 <= d <= 1. Then we can compute 10**p * log(c*10**e) |
| 5502 | # as 10**p * log(d) + 10**p*f * log(10). |
| 5503 | l = len(str(c)) |
| 5504 | f = e+l - (e+l >= 1) |
| 5505 | |
| 5506 | # compute approximation to 10**p*log(d), with error < 27 |
| 5507 | if p > 0: |
| 5508 | k = e+p-f |
| 5509 | if k >= 0: |
| 5510 | c *= 10**k |
| 5511 | else: |
| 5512 | c = _div_nearest(c, 10**-k) # error of <= 0.5 in c |
| 5513 | |
| 5514 | # _ilog magnifies existing error in c by a factor of at most 10 |
| 5515 | log_d = _ilog(c, 10**p) # error < 5 + 22 = 27 |
| 5516 | else: |
| 5517 | # p <= 0: just approximate the whole thing by 0; error < 2.31 |
| 5518 | log_d = 0 |
| 5519 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5520 | # compute approximation to f*10**p*log(10), with error < 11. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5521 | if f: |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5522 | extra = len(str(abs(f)))-1 |
| 5523 | if p + extra >= 0: |
| 5524 | # error in f * _log10_digits(p+extra) < |f| * 1 = |f| |
| 5525 | # after division, error < |f|/10**extra + 0.5 < 10 + 0.5 < 11 |
| 5526 | f_log_ten = _div_nearest(f*_log10_digits(p+extra), 10**extra) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5527 | else: |
| 5528 | f_log_ten = 0 |
| 5529 | else: |
| 5530 | f_log_ten = 0 |
| 5531 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5532 | # error in sum < 11+27 = 38; error after division < 0.38 + 0.5 < 1 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5533 | return _div_nearest(f_log_ten + log_d, 100) |
| 5534 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5535 | class _Log10Memoize(object): |
| 5536 | """Class to compute, store, and allow retrieval of, digits of the |
| 5537 | constant log(10) = 2.302585.... This constant is needed by |
| 5538 | Decimal.ln, Decimal.log10, Decimal.exp and Decimal.__pow__.""" |
| 5539 | def __init__(self): |
| 5540 | self.digits = "23025850929940456840179914546843642076011014886" |
| 5541 | |
| 5542 | def getdigits(self, p): |
| 5543 | """Given an integer p >= 0, return floor(10**p)*log(10). |
| 5544 | |
| 5545 | For example, self.getdigits(3) returns 2302. |
| 5546 | """ |
| 5547 | # digits are stored as a string, for quick conversion to |
| 5548 | # integer in the case that we've already computed enough |
| 5549 | # digits; the stored digits should always be correct |
| 5550 | # (truncated, not rounded to nearest). |
| 5551 | if p < 0: |
| 5552 | raise ValueError("p should be nonnegative") |
| 5553 | |
| 5554 | if p >= len(self.digits): |
| 5555 | # compute p+3, p+6, p+9, ... digits; continue until at |
| 5556 | # least one of the extra digits is nonzero |
| 5557 | extra = 3 |
| 5558 | while True: |
| 5559 | # compute p+extra digits, correct to within 1ulp |
| 5560 | M = 10**(p+extra+2) |
| 5561 | digits = str(_div_nearest(_ilog(10*M, M), 100)) |
| 5562 | if digits[-extra:] != '0'*extra: |
| 5563 | break |
| 5564 | extra += 3 |
| 5565 | # keep all reliable digits so far; remove trailing zeros |
| 5566 | # and next nonzero digit |
| 5567 | self.digits = digits.rstrip('0')[:-1] |
| 5568 | return int(self.digits[:p+1]) |
| 5569 | |
| 5570 | _log10_digits = _Log10Memoize().getdigits |
| 5571 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5572 | def _iexp(x, M, L=8): |
| 5573 | """Given integers x and M, M > 0, such that x/M is small in absolute |
| 5574 | value, compute an integer approximation to M*exp(x/M). For 0 <= |
| 5575 | x/M <= 2.4, the absolute error in the result is bounded by 60 (and |
| 5576 | is usually much smaller).""" |
| 5577 | |
| 5578 | # Algorithm: to compute exp(z) for a real number z, first divide z |
| 5579 | # by a suitable power R of 2 so that |z/2**R| < 2**-L. Then |
| 5580 | # compute expm1(z/2**R) = exp(z/2**R) - 1 using the usual Taylor |
| 5581 | # series |
| 5582 | # |
| 5583 | # expm1(x) = x + x**2/2! + x**3/3! + ... |
| 5584 | # |
| 5585 | # Now use the identity |
| 5586 | # |
| 5587 | # expm1(2x) = expm1(x)*(expm1(x)+2) |
| 5588 | # |
| 5589 | # R times to compute the sequence expm1(z/2**R), |
| 5590 | # expm1(z/2**(R-1)), ... , exp(z/2), exp(z). |
| 5591 | |
| 5592 | # Find R such that x/2**R/M <= 2**-L |
| 5593 | R = _nbits((long(x)<<L)//M) |
| 5594 | |
| 5595 | # Taylor series. (2**L)**T > M |
| 5596 | T = -int(-10*len(str(M))//(3*L)) |
| 5597 | y = _div_nearest(x, T) |
| 5598 | Mshift = long(M)<<R |
| 5599 | for i in xrange(T-1, 0, -1): |
| 5600 | y = _div_nearest(x*(Mshift + y), Mshift * i) |
| 5601 | |
| 5602 | # Expansion |
| 5603 | for k in xrange(R-1, -1, -1): |
| 5604 | Mshift = long(M)<<(k+2) |
| 5605 | y = _div_nearest(y*(y+Mshift), Mshift) |
| 5606 | |
| 5607 | return M+y |
| 5608 | |
| 5609 | def _dexp(c, e, p): |
| 5610 | """Compute an approximation to exp(c*10**e), with p decimal places of |
| 5611 | precision. |
| 5612 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5613 | Returns integers d, f such that: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5614 | |
| 5615 | 10**(p-1) <= d <= 10**p, and |
| 5616 | (d-1)*10**f < exp(c*10**e) < (d+1)*10**f |
| 5617 | |
| 5618 | In other words, d*10**f is an approximation to exp(c*10**e) with p |
| 5619 | digits of precision, and with an error in d of at most 1. This is |
| 5620 | almost, but not quite, the same as the error being < 1ulp: when d |
| 5621 | = 10**(p-1) the error could be up to 10 ulp.""" |
| 5622 | |
| 5623 | # we'll call iexp with M = 10**(p+2), giving p+3 digits of precision |
| 5624 | p += 2 |
| 5625 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5626 | # compute log(10) with extra precision = adjusted exponent of c*10**e |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5627 | extra = max(0, e + len(str(c)) - 1) |
| 5628 | q = p + extra |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5629 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5630 | # compute quotient c*10**e/(log(10)) = c*10**(e+q)/(log(10)*10**q), |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5631 | # rounding down |
| 5632 | shift = e+q |
| 5633 | if shift >= 0: |
| 5634 | cshift = c*10**shift |
| 5635 | else: |
| 5636 | cshift = c//10**-shift |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5637 | quot, rem = divmod(cshift, _log10_digits(q)) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5638 | |
| 5639 | # reduce remainder back to original precision |
| 5640 | rem = _div_nearest(rem, 10**extra) |
| 5641 | |
| 5642 | # error in result of _iexp < 120; error after division < 0.62 |
| 5643 | return _div_nearest(_iexp(rem, 10**p), 1000), quot - p + 3 |
| 5644 | |
| 5645 | def _dpower(xc, xe, yc, ye, p): |
| 5646 | """Given integers xc, xe, yc and ye representing Decimals x = xc*10**xe and |
| 5647 | y = yc*10**ye, compute x**y. Returns a pair of integers (c, e) such that: |
| 5648 | |
| 5649 | 10**(p-1) <= c <= 10**p, and |
| 5650 | (c-1)*10**e < x**y < (c+1)*10**e |
| 5651 | |
| 5652 | in other words, c*10**e is an approximation to x**y with p digits |
| 5653 | of precision, and with an error in c of at most 1. (This is |
| 5654 | almost, but not quite, the same as the error being < 1ulp: when c |
| 5655 | == 10**(p-1) we can only guarantee error < 10ulp.) |
| 5656 | |
| 5657 | We assume that: x is positive and not equal to 1, and y is nonzero. |
| 5658 | """ |
| 5659 | |
| 5660 | # Find b such that 10**(b-1) <= |y| <= 10**b |
| 5661 | b = len(str(abs(yc))) + ye |
| 5662 | |
| 5663 | # log(x) = lxc*10**(-p-b-1), to p+b+1 places after the decimal point |
| 5664 | lxc = _dlog(xc, xe, p+b+1) |
| 5665 | |
| 5666 | # compute product y*log(x) = yc*lxc*10**(-p-b-1+ye) = pc*10**(-p-1) |
| 5667 | shift = ye-b |
| 5668 | if shift >= 0: |
| 5669 | pc = lxc*yc*10**shift |
| 5670 | else: |
| 5671 | pc = _div_nearest(lxc*yc, 10**-shift) |
| 5672 | |
| 5673 | if pc == 0: |
| 5674 | # we prefer a result that isn't exactly 1; this makes it |
| 5675 | # easier to compute a correctly rounded result in __pow__ |
| 5676 | if ((len(str(xc)) + xe >= 1) == (yc > 0)): # if x**y > 1: |
| 5677 | coeff, exp = 10**(p-1)+1, 1-p |
| 5678 | else: |
| 5679 | coeff, exp = 10**p-1, -p |
| 5680 | else: |
| 5681 | coeff, exp = _dexp(pc, -(p+1), p+1) |
| 5682 | coeff = _div_nearest(coeff, 10) |
| 5683 | exp += 1 |
| 5684 | |
| 5685 | return coeff, exp |
| 5686 | |
| 5687 | def _log10_lb(c, correction = { |
| 5688 | '1': 100, '2': 70, '3': 53, '4': 40, '5': 31, |
| 5689 | '6': 23, '7': 16, '8': 10, '9': 5}): |
| 5690 | """Compute a lower bound for 100*log10(c) for a positive integer c.""" |
| 5691 | if c <= 0: |
| 5692 | raise ValueError("The argument to _log10_lb should be nonnegative.") |
| 5693 | str_c = str(c) |
| 5694 | return 100*len(str_c) - correction[str_c[0]] |
| 5695 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5696 | ##### Helper Functions #################################################### |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5697 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5698 | def _convert_other(other, raiseit=False): |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5699 | """Convert other to Decimal. |
| 5700 | |
| 5701 | Verifies that it's ok to use in an implicit construction. |
| 5702 | """ |
| 5703 | if isinstance(other, Decimal): |
| 5704 | return other |
| 5705 | if isinstance(other, (int, long)): |
| 5706 | return Decimal(other) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5707 | if raiseit: |
| 5708 | raise TypeError("Unable to convert %s to Decimal" % other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 5709 | return NotImplemented |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5710 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5711 | ##### Setup Specific Contexts ############################################ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5712 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5713 | # The default context prototype used by Context() |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 5714 | # Is mutable, so that new contexts can have different default values |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5715 | |
| 5716 | DefaultContext = Context( |
Raymond Hettinger | 6ea4845 | 2004-07-03 12:26:21 +0000 | [diff] [blame] | 5717 | prec=28, rounding=ROUND_HALF_EVEN, |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 5718 | traps=[DivisionByZero, Overflow, InvalidOperation], |
| 5719 | flags=[], |
Raymond Hettinger | 99148e7 | 2004-07-14 19:56:56 +0000 | [diff] [blame] | 5720 | Emax=999999999, |
| 5721 | Emin=-999999999, |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 5722 | capitals=1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5723 | ) |
| 5724 | |
| 5725 | # Pre-made alternate contexts offered by the specification |
| 5726 | # Don't change these; the user should be able to select these |
| 5727 | # contexts and be able to reproduce results from other implementations |
| 5728 | # of the spec. |
| 5729 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5730 | BasicContext = Context( |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5731 | prec=9, rounding=ROUND_HALF_UP, |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 5732 | traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow], |
| 5733 | flags=[], |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5734 | ) |
| 5735 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5736 | ExtendedContext = Context( |
Raymond Hettinger | 6ea4845 | 2004-07-03 12:26:21 +0000 | [diff] [blame] | 5737 | prec=9, rounding=ROUND_HALF_EVEN, |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 5738 | traps=[], |
| 5739 | flags=[], |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5740 | ) |
| 5741 | |
| 5742 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5743 | ##### crud for parsing strings ############################################# |
Mark Dickinson | 6a123cb | 2008-02-24 18:12:36 +0000 | [diff] [blame] | 5744 | # |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5745 | # Regular expression used for parsing numeric strings. Additional |
| 5746 | # comments: |
| 5747 | # |
| 5748 | # 1. Uncomment the two '\s*' lines to allow leading and/or trailing |
| 5749 | # whitespace. But note that the specification disallows whitespace in |
| 5750 | # a numeric string. |
| 5751 | # |
| 5752 | # 2. For finite numbers (not infinities and NaNs) the body of the |
| 5753 | # number between the optional sign and the optional exponent must have |
| 5754 | # at least one decimal digit, possibly after the decimal point. The |
| 5755 | # lookahead expression '(?=\d|\.\d)' checks this. |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5756 | |
| 5757 | import re |
Mark Dickinson | 70c3289 | 2008-07-02 09:37:01 +0000 | [diff] [blame] | 5758 | _parser = re.compile(r""" # A numeric string consists of: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5759 | # \s* |
Mark Dickinson | 70c3289 | 2008-07-02 09:37:01 +0000 | [diff] [blame] | 5760 | (?P<sign>[-+])? # an optional sign, followed by either... |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5761 | ( |
Mark Dickinson | 4326ad8 | 2009-08-02 10:59:36 +0000 | [diff] [blame] | 5762 | (?=\d|\.\d) # ...a number (with at least one digit) |
| 5763 | (?P<int>\d*) # having a (possibly empty) integer part |
| 5764 | (\.(?P<frac>\d*))? # followed by an optional fractional part |
| 5765 | (E(?P<exp>[-+]?\d+))? # followed by an optional exponent, or... |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5766 | | |
Mark Dickinson | 70c3289 | 2008-07-02 09:37:01 +0000 | [diff] [blame] | 5767 | Inf(inity)? # ...an infinity, or... |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5768 | | |
Mark Dickinson | 70c3289 | 2008-07-02 09:37:01 +0000 | [diff] [blame] | 5769 | (?P<signal>s)? # ...an (optionally signaling) |
| 5770 | NaN # NaN |
Mark Dickinson | 4326ad8 | 2009-08-02 10:59:36 +0000 | [diff] [blame] | 5771 | (?P<diag>\d*) # with (possibly empty) diagnostic info. |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5772 | ) |
| 5773 | # \s* |
Mark Dickinson | 59bc20b | 2008-01-12 01:56:00 +0000 | [diff] [blame] | 5774 | \Z |
Mark Dickinson | 4326ad8 | 2009-08-02 10:59:36 +0000 | [diff] [blame] | 5775 | """, re.VERBOSE | re.IGNORECASE | re.UNICODE).match |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5776 | |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 5777 | _all_zeros = re.compile('0*$').match |
| 5778 | _exact_half = re.compile('50*$').match |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5779 | |
| 5780 | ##### PEP3101 support functions ############################################## |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5781 | # The functions in this section have little to do with the Decimal |
| 5782 | # class, and could potentially be reused or adapted for other pure |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5783 | # Python numeric classes that want to implement __format__ |
| 5784 | # |
| 5785 | # A format specifier for Decimal looks like: |
| 5786 | # |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5787 | # [[fill]align][sign][0][minimumwidth][,][.precision][type] |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5788 | |
| 5789 | _parse_format_specifier_regex = re.compile(r"""\A |
| 5790 | (?: |
| 5791 | (?P<fill>.)? |
| 5792 | (?P<align>[<>=^]) |
| 5793 | )? |
| 5794 | (?P<sign>[-+ ])? |
| 5795 | (?P<zeropad>0)? |
| 5796 | (?P<minimumwidth>(?!0)\d+)? |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5797 | (?P<thousands_sep>,)? |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5798 | (?:\.(?P<precision>0|(?!0)\d+))? |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5799 | (?P<type>[eEfFgGn%])? |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5800 | \Z |
| 5801 | """, re.VERBOSE) |
| 5802 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5803 | del re |
| 5804 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5805 | # The locale module is only needed for the 'n' format specifier. The |
| 5806 | # rest of the PEP 3101 code functions quite happily without it, so we |
| 5807 | # don't care too much if locale isn't present. |
| 5808 | try: |
| 5809 | import locale as _locale |
| 5810 | except ImportError: |
| 5811 | pass |
| 5812 | |
| 5813 | def _parse_format_specifier(format_spec, _localeconv=None): |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5814 | """Parse and validate a format specifier. |
| 5815 | |
| 5816 | Turns a standard numeric format specifier into a dict, with the |
| 5817 | following entries: |
| 5818 | |
| 5819 | fill: fill character to pad field to minimum width |
| 5820 | align: alignment type, either '<', '>', '=' or '^' |
| 5821 | sign: either '+', '-' or ' ' |
| 5822 | minimumwidth: nonnegative integer giving minimum width |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5823 | zeropad: boolean, indicating whether to pad with zeros |
| 5824 | thousands_sep: string to use as thousands separator, or '' |
| 5825 | grouping: grouping for thousands separators, in format |
| 5826 | used by localeconv |
| 5827 | decimal_point: string to use for decimal point |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5828 | precision: nonnegative integer giving precision, or None |
| 5829 | type: one of the characters 'eEfFgG%', or None |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5830 | unicode: boolean (always True for Python 3.x) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5831 | |
| 5832 | """ |
| 5833 | m = _parse_format_specifier_regex.match(format_spec) |
| 5834 | if m is None: |
| 5835 | raise ValueError("Invalid format specifier: " + format_spec) |
| 5836 | |
| 5837 | # get the dictionary |
| 5838 | format_dict = m.groupdict() |
| 5839 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5840 | # zeropad; defaults for fill and alignment. If zero padding |
| 5841 | # is requested, the fill and align fields should be absent. |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5842 | fill = format_dict['fill'] |
| 5843 | align = format_dict['align'] |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5844 | format_dict['zeropad'] = (format_dict['zeropad'] is not None) |
| 5845 | if format_dict['zeropad']: |
| 5846 | if fill is not None: |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5847 | raise ValueError("Fill character conflicts with '0'" |
| 5848 | " in format specifier: " + format_spec) |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5849 | if align is not None: |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5850 | raise ValueError("Alignment conflicts with '0' in " |
| 5851 | "format specifier: " + format_spec) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5852 | format_dict['fill'] = fill or ' ' |
Mark Dickinson | 5cfa804 | 2009-09-08 20:20:19 +0000 | [diff] [blame] | 5853 | # PEP 3101 originally specified that the default alignment should |
| 5854 | # be left; it was later agreed that right-aligned makes more sense |
| 5855 | # for numeric types. See http://bugs.python.org/issue6857. |
| 5856 | format_dict['align'] = align or '>' |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5857 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5858 | # default sign handling: '-' for negative, '' for positive |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5859 | if format_dict['sign'] is None: |
| 5860 | format_dict['sign'] = '-' |
| 5861 | |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5862 | # minimumwidth defaults to 0; precision remains None if not given |
| 5863 | format_dict['minimumwidth'] = int(format_dict['minimumwidth'] or '0') |
| 5864 | if format_dict['precision'] is not None: |
| 5865 | format_dict['precision'] = int(format_dict['precision']) |
| 5866 | |
| 5867 | # if format type is 'g' or 'G' then a precision of 0 makes little |
| 5868 | # sense; convert it to 1. Same if format type is unspecified. |
| 5869 | if format_dict['precision'] == 0: |
Mark Dickinson | 491ea55 | 2009-09-07 16:17:41 +0000 | [diff] [blame] | 5870 | if format_dict['type'] is None or format_dict['type'] in 'gG': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5871 | format_dict['precision'] = 1 |
| 5872 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5873 | # determine thousands separator, grouping, and decimal separator, and |
| 5874 | # add appropriate entries to format_dict |
| 5875 | if format_dict['type'] == 'n': |
| 5876 | # apart from separators, 'n' behaves just like 'g' |
| 5877 | format_dict['type'] = 'g' |
| 5878 | if _localeconv is None: |
| 5879 | _localeconv = _locale.localeconv() |
| 5880 | if format_dict['thousands_sep'] is not None: |
| 5881 | raise ValueError("Explicit thousands separator conflicts with " |
| 5882 | "'n' type in format specifier: " + format_spec) |
| 5883 | format_dict['thousands_sep'] = _localeconv['thousands_sep'] |
| 5884 | format_dict['grouping'] = _localeconv['grouping'] |
| 5885 | format_dict['decimal_point'] = _localeconv['decimal_point'] |
| 5886 | else: |
| 5887 | if format_dict['thousands_sep'] is None: |
| 5888 | format_dict['thousands_sep'] = '' |
| 5889 | format_dict['grouping'] = [3, 0] |
| 5890 | format_dict['decimal_point'] = '.' |
| 5891 | |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5892 | # record whether return type should be str or unicode |
| 5893 | format_dict['unicode'] = isinstance(format_spec, unicode) |
| 5894 | |
| 5895 | return format_dict |
| 5896 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5897 | def _format_align(sign, body, spec): |
| 5898 | """Given an unpadded, non-aligned numeric string 'body' and sign |
| 5899 | string 'sign', add padding and aligment conforming to the given |
| 5900 | format specifier dictionary 'spec' (as produced by |
| 5901 | parse_format_specifier). |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5902 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5903 | Also converts result to unicode if necessary. |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5904 | |
| 5905 | """ |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5906 | # how much extra space do we have to play with? |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5907 | minimumwidth = spec['minimumwidth'] |
| 5908 | fill = spec['fill'] |
| 5909 | padding = fill*(minimumwidth - len(sign) - len(body)) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5910 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5911 | align = spec['align'] |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5912 | if align == '<': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5913 | result = sign + body + padding |
Mark Dickinson | b065e52 | 2009-03-17 18:01:03 +0000 | [diff] [blame] | 5914 | elif align == '>': |
| 5915 | result = padding + sign + body |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5916 | elif align == '=': |
| 5917 | result = sign + padding + body |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5918 | elif align == '^': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5919 | half = len(padding)//2 |
| 5920 | result = padding[:half] + sign + body + padding[half:] |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5921 | else: |
| 5922 | raise ValueError('Unrecognised alignment field') |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5923 | |
| 5924 | # make sure that result is unicode if necessary |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5925 | if spec['unicode']: |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5926 | result = unicode(result) |
| 5927 | |
| 5928 | return result |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5929 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5930 | def _group_lengths(grouping): |
| 5931 | """Convert a localeconv-style grouping into a (possibly infinite) |
| 5932 | iterable of integers representing group lengths. |
| 5933 | |
| 5934 | """ |
| 5935 | # The result from localeconv()['grouping'], and the input to this |
| 5936 | # function, should be a list of integers in one of the |
| 5937 | # following three forms: |
| 5938 | # |
| 5939 | # (1) an empty list, or |
| 5940 | # (2) nonempty list of positive integers + [0] |
| 5941 | # (3) list of positive integers + [locale.CHAR_MAX], or |
| 5942 | |
| 5943 | from itertools import chain, repeat |
| 5944 | if not grouping: |
| 5945 | return [] |
| 5946 | elif grouping[-1] == 0 and len(grouping) >= 2: |
| 5947 | return chain(grouping[:-1], repeat(grouping[-2])) |
| 5948 | elif grouping[-1] == _locale.CHAR_MAX: |
| 5949 | return grouping[:-1] |
| 5950 | else: |
| 5951 | raise ValueError('unrecognised format for grouping') |
| 5952 | |
| 5953 | def _insert_thousands_sep(digits, spec, min_width=1): |
| 5954 | """Insert thousands separators into a digit string. |
| 5955 | |
| 5956 | spec is a dictionary whose keys should include 'thousands_sep' and |
| 5957 | 'grouping'; typically it's the result of parsing the format |
| 5958 | specifier using _parse_format_specifier. |
| 5959 | |
| 5960 | The min_width keyword argument gives the minimum length of the |
| 5961 | result, which will be padded on the left with zeros if necessary. |
| 5962 | |
| 5963 | If necessary, the zero padding adds an extra '0' on the left to |
| 5964 | avoid a leading thousands separator. For example, inserting |
| 5965 | commas every three digits in '123456', with min_width=8, gives |
| 5966 | '0,123,456', even though that has length 9. |
| 5967 | |
| 5968 | """ |
| 5969 | |
| 5970 | sep = spec['thousands_sep'] |
| 5971 | grouping = spec['grouping'] |
| 5972 | |
| 5973 | groups = [] |
| 5974 | for l in _group_lengths(grouping): |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5975 | if l <= 0: |
| 5976 | raise ValueError("group length should be positive") |
| 5977 | # max(..., 1) forces at least 1 digit to the left of a separator |
| 5978 | l = min(max(len(digits), min_width, 1), l) |
| 5979 | groups.append('0'*(l - len(digits)) + digits[-l:]) |
| 5980 | digits = digits[:-l] |
| 5981 | min_width -= l |
| 5982 | if not digits and min_width <= 0: |
| 5983 | break |
Mark Dickinson | b14514a | 2009-03-18 08:22:51 +0000 | [diff] [blame] | 5984 | min_width -= len(sep) |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5985 | else: |
| 5986 | l = max(len(digits), min_width, 1) |
| 5987 | groups.append('0'*(l - len(digits)) + digits[-l:]) |
| 5988 | return sep.join(reversed(groups)) |
| 5989 | |
| 5990 | def _format_sign(is_negative, spec): |
| 5991 | """Determine sign character.""" |
| 5992 | |
| 5993 | if is_negative: |
| 5994 | return '-' |
| 5995 | elif spec['sign'] in ' +': |
| 5996 | return spec['sign'] |
| 5997 | else: |
| 5998 | return '' |
| 5999 | |
| 6000 | def _format_number(is_negative, intpart, fracpart, exp, spec): |
| 6001 | """Format a number, given the following data: |
| 6002 | |
| 6003 | is_negative: true if the number is negative, else false |
| 6004 | intpart: string of digits that must appear before the decimal point |
| 6005 | fracpart: string of digits that must come after the point |
| 6006 | exp: exponent, as an integer |
| 6007 | spec: dictionary resulting from parsing the format specifier |
| 6008 | |
| 6009 | This function uses the information in spec to: |
| 6010 | insert separators (decimal separator and thousands separators) |
| 6011 | format the sign |
| 6012 | format the exponent |
| 6013 | add trailing '%' for the '%' type |
| 6014 | zero-pad if necessary |
| 6015 | fill and align if necessary |
| 6016 | """ |
| 6017 | |
| 6018 | sign = _format_sign(is_negative, spec) |
| 6019 | |
| 6020 | if fracpart: |
| 6021 | fracpart = spec['decimal_point'] + fracpart |
| 6022 | |
| 6023 | if exp != 0 or spec['type'] in 'eE': |
| 6024 | echar = {'E': 'E', 'e': 'e', 'G': 'E', 'g': 'e'}[spec['type']] |
| 6025 | fracpart += "{0}{1:+}".format(echar, exp) |
| 6026 | if spec['type'] == '%': |
| 6027 | fracpart += '%' |
| 6028 | |
| 6029 | if spec['zeropad']: |
| 6030 | min_width = spec['minimumwidth'] - len(fracpart) - len(sign) |
| 6031 | else: |
| 6032 | min_width = 0 |
| 6033 | intpart = _insert_thousands_sep(intpart, spec, min_width) |
| 6034 | |
| 6035 | return _format_align(sign, intpart+fracpart, spec) |
| 6036 | |
| 6037 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 6038 | ##### Useful Constants (internal use only) ################################ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6039 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 6040 | # Reusable defaults |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 6041 | _Infinity = Decimal('Inf') |
| 6042 | _NegativeInfinity = Decimal('-Inf') |
Mark Dickinson | c5de096 | 2009-01-02 23:07:08 +0000 | [diff] [blame] | 6043 | _NaN = Decimal('NaN') |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 6044 | _Zero = Decimal(0) |
| 6045 | _One = Decimal(1) |
| 6046 | _NegativeOne = Decimal(-1) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6047 | |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 6048 | # _SignedInfinity[sign] is infinity w/ that sign |
| 6049 | _SignedInfinity = (_Infinity, _NegativeInfinity) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6050 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6051 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6052 | |
| 6053 | if __name__ == '__main__': |
| 6054 | import doctest, sys |
| 6055 | doctest.testmod(sys.modules[__name__]) |