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 |
Stefan Krah | 8a6f3fe | 2010-05-19 15:46:39 +0000 | [diff] [blame] | 171 | trap_enabler is not set. First argument is self, second is the |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 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): |
Raymond Hettinger | ed171ab | 2010-04-02 18:39:24 +0000 | [diff] [blame] | 651 | value = Decimal.from_float(value) |
| 652 | self._exp = value._exp |
| 653 | self._sign = value._sign |
| 654 | self._int = value._int |
| 655 | self._is_special = value._is_special |
| 656 | return self |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 657 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 658 | raise TypeError("Cannot convert %r to Decimal" % value) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 659 | |
Mark Dickinson | 6a96163 | 2009-01-04 21:10:56 +0000 | [diff] [blame] | 660 | # @classmethod, but @decorator is not valid Python 2.3 syntax, so |
| 661 | # 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] | 662 | def from_float(cls, f): |
| 663 | """Converts a float to a decimal number, exactly. |
| 664 | |
| 665 | Note that Decimal.from_float(0.1) is not the same as Decimal('0.1'). |
| 666 | Since 0.1 is not exactly representable in binary floating point, the |
| 667 | value is stored as the nearest representable value which is |
| 668 | 0x1.999999999999ap-4. The exact equivalent of the value in decimal |
| 669 | is 0.1000000000000000055511151231257827021181583404541015625. |
| 670 | |
| 671 | >>> Decimal.from_float(0.1) |
| 672 | Decimal('0.1000000000000000055511151231257827021181583404541015625') |
| 673 | >>> Decimal.from_float(float('nan')) |
| 674 | Decimal('NaN') |
| 675 | >>> Decimal.from_float(float('inf')) |
| 676 | Decimal('Infinity') |
| 677 | >>> Decimal.from_float(-float('inf')) |
| 678 | Decimal('-Infinity') |
| 679 | >>> Decimal.from_float(-0.0) |
| 680 | Decimal('-0') |
| 681 | |
| 682 | """ |
| 683 | if isinstance(f, (int, long)): # handle integer inputs |
| 684 | return cls(f) |
| 685 | if _math.isinf(f) or _math.isnan(f): # raises TypeError if not a float |
| 686 | return cls(repr(f)) |
Mark Dickinson | 6a96163 | 2009-01-04 21:10:56 +0000 | [diff] [blame] | 687 | if _math.copysign(1.0, f) == 1.0: |
| 688 | sign = 0 |
| 689 | else: |
| 690 | sign = 1 |
Raymond Hettinger | f4d8597 | 2009-01-03 19:02:23 +0000 | [diff] [blame] | 691 | n, d = abs(f).as_integer_ratio() |
| 692 | k = d.bit_length() - 1 |
| 693 | result = _dec_from_triple(sign, str(n*5**k), -k) |
Mark Dickinson | 6a96163 | 2009-01-04 21:10:56 +0000 | [diff] [blame] | 694 | if cls is Decimal: |
| 695 | return result |
| 696 | else: |
| 697 | return cls(result) |
| 698 | from_float = classmethod(from_float) |
Raymond Hettinger | f4d8597 | 2009-01-03 19:02:23 +0000 | [diff] [blame] | 699 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 700 | def _isnan(self): |
| 701 | """Returns whether the number is not actually one. |
| 702 | |
| 703 | 0 if a number |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 704 | 1 if NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 705 | 2 if sNaN |
| 706 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 707 | if self._is_special: |
| 708 | exp = self._exp |
| 709 | if exp == 'n': |
| 710 | return 1 |
| 711 | elif exp == 'N': |
| 712 | return 2 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 713 | return 0 |
| 714 | |
| 715 | def _isinfinity(self): |
| 716 | """Returns whether the number is infinite |
| 717 | |
| 718 | 0 if finite or not a number |
| 719 | 1 if +INF |
| 720 | -1 if -INF |
| 721 | """ |
| 722 | if self._exp == 'F': |
| 723 | if self._sign: |
| 724 | return -1 |
| 725 | return 1 |
| 726 | return 0 |
| 727 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 728 | def _check_nans(self, other=None, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 729 | """Returns whether the number is not actually one. |
| 730 | |
| 731 | if self, other are sNaN, signal |
| 732 | if self, other are NaN return nan |
| 733 | return 0 |
| 734 | |
| 735 | Done before operations. |
| 736 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 737 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 738 | self_is_nan = self._isnan() |
| 739 | if other is None: |
| 740 | other_is_nan = False |
| 741 | else: |
| 742 | other_is_nan = other._isnan() |
| 743 | |
| 744 | if self_is_nan or other_is_nan: |
| 745 | if context is None: |
| 746 | context = getcontext() |
| 747 | |
| 748 | if self_is_nan == 2: |
| 749 | return context._raise_error(InvalidOperation, 'sNaN', |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 750 | self) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 751 | if other_is_nan == 2: |
| 752 | return context._raise_error(InvalidOperation, 'sNaN', |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 753 | other) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 754 | if self_is_nan: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 755 | return self._fix_nan(context) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 756 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 757 | return other._fix_nan(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 758 | return 0 |
| 759 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 760 | def _compare_check_nans(self, other, context): |
| 761 | """Version of _check_nans used for the signaling comparisons |
| 762 | compare_signal, __le__, __lt__, __ge__, __gt__. |
| 763 | |
| 764 | Signal InvalidOperation if either self or other is a (quiet |
| 765 | or signaling) NaN. Signaling NaNs take precedence over quiet |
| 766 | NaNs. |
| 767 | |
| 768 | Return 0 if neither operand is a NaN. |
| 769 | |
| 770 | """ |
| 771 | if context is None: |
| 772 | context = getcontext() |
| 773 | |
| 774 | if self._is_special or other._is_special: |
| 775 | if self.is_snan(): |
| 776 | return context._raise_error(InvalidOperation, |
| 777 | 'comparison involving sNaN', |
| 778 | self) |
| 779 | elif other.is_snan(): |
| 780 | return context._raise_error(InvalidOperation, |
| 781 | 'comparison involving sNaN', |
| 782 | other) |
| 783 | elif self.is_qnan(): |
| 784 | return context._raise_error(InvalidOperation, |
| 785 | 'comparison involving NaN', |
| 786 | self) |
| 787 | elif other.is_qnan(): |
| 788 | return context._raise_error(InvalidOperation, |
| 789 | 'comparison involving NaN', |
| 790 | other) |
| 791 | return 0 |
| 792 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 793 | def __nonzero__(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 794 | """Return True if self is nonzero; otherwise return False. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 795 | |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 796 | NaNs and infinities are considered nonzero. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 797 | """ |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 798 | return self._is_special or self._int != '0' |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 799 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 800 | def _cmp(self, other): |
| 801 | """Compare the two non-NaN decimal instances self and other. |
| 802 | |
| 803 | Returns -1 if self < other, 0 if self == other and 1 |
| 804 | if self > other. This routine is for internal use only.""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 805 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 806 | if self._is_special or other._is_special: |
Mark Dickinson | e52c314 | 2009-01-25 10:39:15 +0000 | [diff] [blame] | 807 | self_inf = self._isinfinity() |
| 808 | other_inf = other._isinfinity() |
| 809 | if self_inf == other_inf: |
| 810 | return 0 |
| 811 | elif self_inf < other_inf: |
| 812 | return -1 |
| 813 | else: |
| 814 | return 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 815 | |
Mark Dickinson | e52c314 | 2009-01-25 10:39:15 +0000 | [diff] [blame] | 816 | # check for zeros; Decimal('0') == Decimal('-0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 817 | if not self: |
| 818 | if not other: |
| 819 | return 0 |
| 820 | else: |
| 821 | return -((-1)**other._sign) |
| 822 | if not other: |
| 823 | return (-1)**self._sign |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 824 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 825 | # If different signs, neg one is less |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 826 | if other._sign < self._sign: |
| 827 | return -1 |
| 828 | if self._sign < other._sign: |
| 829 | return 1 |
| 830 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 831 | self_adjusted = self.adjusted() |
| 832 | other_adjusted = other.adjusted() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 833 | if self_adjusted == other_adjusted: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 834 | self_padded = self._int + '0'*(self._exp - other._exp) |
| 835 | other_padded = other._int + '0'*(other._exp - self._exp) |
Mark Dickinson | e52c314 | 2009-01-25 10:39:15 +0000 | [diff] [blame] | 836 | if self_padded == other_padded: |
| 837 | return 0 |
| 838 | elif self_padded < other_padded: |
| 839 | return -(-1)**self._sign |
| 840 | else: |
| 841 | return (-1)**self._sign |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 842 | elif self_adjusted > other_adjusted: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 843 | return (-1)**self._sign |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 844 | else: # self_adjusted < other_adjusted |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 845 | return -((-1)**self._sign) |
| 846 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 847 | # Note: The Decimal standard doesn't cover rich comparisons for |
| 848 | # Decimals. In particular, the specification is silent on the |
| 849 | # subject of what should happen for a comparison involving a NaN. |
| 850 | # We take the following approach: |
| 851 | # |
Mark Dickinson | e096e82 | 2010-04-02 10:17:07 +0000 | [diff] [blame] | 852 | # == comparisons involving a quiet NaN always return False |
| 853 | # != comparisons involving a quiet NaN always return True |
| 854 | # == or != comparisons involving a signaling NaN signal |
| 855 | # InvalidOperation, and return False or True as above if the |
| 856 | # InvalidOperation is not trapped. |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 857 | # <, >, <= and >= comparisons involving a (quiet or signaling) |
| 858 | # NaN signal InvalidOperation, and return False if the |
Mark Dickinson | 3a94ee0 | 2008-02-10 15:19:58 +0000 | [diff] [blame] | 859 | # InvalidOperation is not trapped. |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 860 | # |
| 861 | # This behavior is designed to conform as closely as possible to |
| 862 | # that specified by IEEE 754. |
| 863 | |
Mark Dickinson | e096e82 | 2010-04-02 10:17:07 +0000 | [diff] [blame] | 864 | def __eq__(self, other, context=None): |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 865 | other = _convert_other(other, allow_float=True) |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 866 | if other is NotImplemented: |
| 867 | return other |
Mark Dickinson | e096e82 | 2010-04-02 10:17:07 +0000 | [diff] [blame] | 868 | if self._check_nans(other, context): |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 869 | return False |
| 870 | return self._cmp(other) == 0 |
Raymond Hettinger | 0aeac10 | 2004-07-05 22:53:03 +0000 | [diff] [blame] | 871 | |
Mark Dickinson | e096e82 | 2010-04-02 10:17:07 +0000 | [diff] [blame] | 872 | def __ne__(self, other, context=None): |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 873 | other = _convert_other(other, allow_float=True) |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 874 | if other is NotImplemented: |
| 875 | return other |
Mark Dickinson | e096e82 | 2010-04-02 10:17:07 +0000 | [diff] [blame] | 876 | if self._check_nans(other, context): |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 877 | return True |
| 878 | return self._cmp(other) != 0 |
| 879 | |
| 880 | def __lt__(self, other, context=None): |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 881 | other = _convert_other(other, allow_float=True) |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 882 | if other is NotImplemented: |
| 883 | return other |
| 884 | ans = self._compare_check_nans(other, context) |
| 885 | if ans: |
| 886 | return False |
| 887 | return self._cmp(other) < 0 |
| 888 | |
| 889 | def __le__(self, other, context=None): |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 890 | other = _convert_other(other, allow_float=True) |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 891 | if other is NotImplemented: |
| 892 | return other |
| 893 | ans = self._compare_check_nans(other, context) |
| 894 | if ans: |
| 895 | return False |
| 896 | return self._cmp(other) <= 0 |
| 897 | |
| 898 | def __gt__(self, other, context=None): |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 899 | other = _convert_other(other, allow_float=True) |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 900 | if other is NotImplemented: |
| 901 | return other |
| 902 | ans = self._compare_check_nans(other, context) |
| 903 | if ans: |
| 904 | return False |
| 905 | return self._cmp(other) > 0 |
| 906 | |
| 907 | def __ge__(self, other, context=None): |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 908 | other = _convert_other(other, allow_float=True) |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 909 | if other is NotImplemented: |
| 910 | return other |
| 911 | ans = self._compare_check_nans(other, context) |
| 912 | if ans: |
| 913 | return False |
| 914 | return self._cmp(other) >= 0 |
Raymond Hettinger | 0aeac10 | 2004-07-05 22:53:03 +0000 | [diff] [blame] | 915 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 916 | def compare(self, other, context=None): |
| 917 | """Compares one to another. |
| 918 | |
| 919 | -1 => a < b |
| 920 | 0 => a = b |
| 921 | 1 => a > b |
| 922 | NaN => one is NaN |
| 923 | Like __cmp__, but returns Decimal instances. |
| 924 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 925 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 926 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 927 | # Compare(NaN, NaN) = NaN |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 928 | if (self._is_special or other and other._is_special): |
| 929 | ans = self._check_nans(other, context) |
| 930 | if ans: |
| 931 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 932 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 933 | return Decimal(self._cmp(other)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 934 | |
| 935 | def __hash__(self): |
| 936 | """x.__hash__() <==> hash(x)""" |
| 937 | # Decimal integers must hash the same as the ints |
Facundo Batista | 52b2579 | 2008-01-08 12:25:20 +0000 | [diff] [blame] | 938 | # |
| 939 | # The hash of a nonspecial noninteger Decimal must depend only |
| 940 | # on the value of that Decimal, and not on its representation. |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 941 | # For example: hash(Decimal('100E-1')) == hash(Decimal('10')). |
Mark Dickinson | f3eeca1 | 2010-04-02 10:35:12 +0000 | [diff] [blame] | 942 | |
| 943 | # Equality comparisons involving signaling nans can raise an |
| 944 | # exception; since equality checks are implicitly and |
| 945 | # unpredictably used when checking set and dict membership, we |
| 946 | # prevent signaling nans from being used as set elements or |
| 947 | # dict keys by making __hash__ raise an exception. |
| 948 | if self._is_special: |
| 949 | if self.is_snan(): |
| 950 | raise TypeError('Cannot hash a signaling NaN value.') |
| 951 | elif self.is_nan(): |
| 952 | # 0 to match hash(float('nan')) |
| 953 | return 0 |
| 954 | else: |
| 955 | # values chosen to match hash(float('inf')) and |
| 956 | # hash(float('-inf')). |
| 957 | if self._sign: |
| 958 | return -271828 |
| 959 | else: |
| 960 | return 314159 |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 961 | |
| 962 | # In Python 2.7, we're allowing comparisons (but not |
| 963 | # arithmetic operations) between floats and Decimals; so if |
| 964 | # a Decimal instance is exactly representable as a float then |
Mark Dickinson | f3eeca1 | 2010-04-02 10:35:12 +0000 | [diff] [blame] | 965 | # its hash should match that of the float. |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 966 | self_as_float = float(self) |
| 967 | if Decimal.from_float(self_as_float) == self: |
| 968 | return hash(self_as_float) |
| 969 | |
Facundo Batista | 8c20244 | 2007-09-19 17:53:25 +0000 | [diff] [blame] | 970 | if self._isinteger(): |
| 971 | op = _WorkRep(self.to_integral_value()) |
| 972 | # to make computation feasible for Decimals with large |
| 973 | # exponent, we use the fact that hash(n) == hash(m) for |
| 974 | # any two nonzero integers n and m such that (i) n and m |
| 975 | # have the same sign, and (ii) n is congruent to m modulo |
| 976 | # 2**64-1. So we can replace hash((-1)**s*c*10**e) with |
| 977 | # hash((-1)**s*c*pow(10, e, 2**64-1). |
| 978 | 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] | 979 | # The value of a nonzero nonspecial Decimal instance is |
| 980 | # faithfully represented by the triple consisting of its sign, |
| 981 | # its adjusted exponent, and its coefficient with trailing |
| 982 | # zeros removed. |
| 983 | return hash((self._sign, |
| 984 | self._exp+len(self._int), |
| 985 | self._int.rstrip('0'))) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 986 | |
| 987 | def as_tuple(self): |
| 988 | """Represents the number as a triple tuple. |
| 989 | |
| 990 | To show the internals exactly as they are. |
| 991 | """ |
Raymond Hettinger | 097a190 | 2008-01-11 02:24:13 +0000 | [diff] [blame] | 992 | return DecimalTuple(self._sign, tuple(map(int, self._int)), self._exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 993 | |
| 994 | def __repr__(self): |
| 995 | """Represents the number as an instance of Decimal.""" |
| 996 | # Invariant: eval(repr(d)) == d |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 997 | return "Decimal('%s')" % str(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 998 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 999 | def __str__(self, eng=False, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1000 | """Return string representation of the number in scientific notation. |
| 1001 | |
| 1002 | Captures all of the information in the underlying representation. |
| 1003 | """ |
| 1004 | |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 1005 | sign = ['', '-'][self._sign] |
Raymond Hettinger | e5a0a96 | 2005-06-20 09:49:42 +0000 | [diff] [blame] | 1006 | if self._is_special: |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 1007 | if self._exp == 'F': |
| 1008 | return sign + 'Infinity' |
| 1009 | elif self._exp == 'n': |
| 1010 | return sign + 'NaN' + self._int |
| 1011 | else: # self._exp == 'N' |
| 1012 | return sign + 'sNaN' + self._int |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1013 | |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 1014 | # number of digits of self._int to left of decimal point |
| 1015 | leftdigits = self._exp + len(self._int) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1016 | |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 1017 | # dotplace is number of digits of self._int to the left of the |
| 1018 | # decimal point in the mantissa of the output string (that is, |
| 1019 | # after adjusting the exponent) |
| 1020 | if self._exp <= 0 and leftdigits > -6: |
| 1021 | # no exponent required |
| 1022 | dotplace = leftdigits |
| 1023 | elif not eng: |
| 1024 | # usual scientific notation: 1 digit on left of the point |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1025 | dotplace = 1 |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 1026 | elif self._int == '0': |
| 1027 | # engineering notation, zero |
| 1028 | dotplace = (leftdigits + 1) % 3 - 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1029 | else: |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 1030 | # engineering notation, nonzero |
| 1031 | dotplace = (leftdigits - 1) % 3 + 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1032 | |
Facundo Batista | 62edb71 | 2007-12-03 16:29:52 +0000 | [diff] [blame] | 1033 | if dotplace <= 0: |
| 1034 | intpart = '0' |
| 1035 | fracpart = '.' + '0'*(-dotplace) + self._int |
| 1036 | elif dotplace >= len(self._int): |
| 1037 | intpart = self._int+'0'*(dotplace-len(self._int)) |
| 1038 | fracpart = '' |
| 1039 | else: |
| 1040 | intpart = self._int[:dotplace] |
| 1041 | fracpart = '.' + self._int[dotplace:] |
| 1042 | if leftdigits == dotplace: |
| 1043 | exp = '' |
| 1044 | else: |
| 1045 | if context is None: |
| 1046 | context = getcontext() |
| 1047 | exp = ['e', 'E'][context.capitals] + "%+d" % (leftdigits-dotplace) |
| 1048 | |
| 1049 | return sign + intpart + fracpart + exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1050 | |
| 1051 | def to_eng_string(self, context=None): |
| 1052 | """Convert to engineering-type string. |
| 1053 | |
| 1054 | Engineering notation has an exponent which is a multiple of 3, so there |
| 1055 | are up to 3 digits left of the decimal place. |
| 1056 | |
| 1057 | Same rules for when in exponential and when as a value as in __str__. |
| 1058 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1059 | return self.__str__(eng=True, context=context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1060 | |
| 1061 | def __neg__(self, context=None): |
| 1062 | """Returns a copy with the sign switched. |
| 1063 | |
| 1064 | Rounds, if it has reason. |
| 1065 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1066 | if self._is_special: |
| 1067 | ans = self._check_nans(context=context) |
| 1068 | if ans: |
| 1069 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1070 | |
Mark Dickinson | 2c8c62e | 2011-03-12 11:05:32 +0000 | [diff] [blame] | 1071 | if context is None: |
| 1072 | context = getcontext() |
| 1073 | |
| 1074 | if not self and context.rounding != ROUND_FLOOR: |
| 1075 | # -Decimal('0') is Decimal('0'), not Decimal('-0'), except |
| 1076 | # in ROUND_FLOOR rounding mode. |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1077 | ans = self.copy_abs() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1078 | else: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1079 | ans = self.copy_negate() |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1080 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1081 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1082 | |
| 1083 | def __pos__(self, context=None): |
| 1084 | """Returns a copy, unless it is a sNaN. |
| 1085 | |
| 1086 | Rounds the number (if more then precision digits) |
| 1087 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1088 | if self._is_special: |
| 1089 | ans = self._check_nans(context=context) |
| 1090 | if ans: |
| 1091 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1092 | |
Mark Dickinson | 2c8c62e | 2011-03-12 11:05:32 +0000 | [diff] [blame] | 1093 | if context is None: |
| 1094 | context = getcontext() |
| 1095 | |
| 1096 | if not self and context.rounding != ROUND_FLOOR: |
| 1097 | # + (-0) = 0, except in ROUND_FLOOR rounding mode. |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1098 | ans = self.copy_abs() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1099 | else: |
| 1100 | ans = Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1101 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1102 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1103 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1104 | def __abs__(self, round=True, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1105 | """Returns the absolute value of self. |
| 1106 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1107 | If the keyword argument 'round' is false, do not round. The |
| 1108 | expression self.__abs__(round=False) is equivalent to |
| 1109 | self.copy_abs(). |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1110 | """ |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1111 | if not round: |
| 1112 | return self.copy_abs() |
| 1113 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1114 | if self._is_special: |
| 1115 | ans = self._check_nans(context=context) |
| 1116 | if ans: |
| 1117 | return ans |
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 | if self._sign: |
| 1120 | ans = self.__neg__(context=context) |
| 1121 | else: |
| 1122 | ans = self.__pos__(context=context) |
| 1123 | |
| 1124 | return ans |
| 1125 | |
| 1126 | def __add__(self, other, context=None): |
| 1127 | """Returns self + other. |
| 1128 | |
| 1129 | -INF + INF (or the reverse) cause InvalidOperation errors. |
| 1130 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1131 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1132 | if other is NotImplemented: |
| 1133 | return other |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1134 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1135 | if context is None: |
| 1136 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1137 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1138 | if self._is_special or other._is_special: |
| 1139 | ans = self._check_nans(other, context) |
| 1140 | if ans: |
| 1141 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1142 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1143 | if self._isinfinity(): |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1144 | # If both INF, same sign => same as both, opposite => error. |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1145 | if self._sign != other._sign and other._isinfinity(): |
| 1146 | return context._raise_error(InvalidOperation, '-INF + INF') |
| 1147 | return Decimal(self) |
| 1148 | if other._isinfinity(): |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1149 | return Decimal(other) # Can't both be infinity here |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1150 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1151 | exp = min(self._exp, other._exp) |
| 1152 | negativezero = 0 |
| 1153 | if context.rounding == ROUND_FLOOR and self._sign != other._sign: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1154 | # 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] | 1155 | negativezero = 1 |
| 1156 | |
| 1157 | if not self and not other: |
| 1158 | sign = min(self._sign, other._sign) |
| 1159 | if negativezero: |
| 1160 | sign = 1 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1161 | ans = _dec_from_triple(sign, '0', exp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1162 | ans = ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1163 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1164 | if not self: |
Facundo Batista | 99b5548 | 2004-10-26 23:38:46 +0000 | [diff] [blame] | 1165 | exp = max(exp, other._exp - context.prec-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1166 | ans = other._rescale(exp, context.rounding) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1167 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1168 | return ans |
| 1169 | if not other: |
Facundo Batista | 99b5548 | 2004-10-26 23:38:46 +0000 | [diff] [blame] | 1170 | exp = max(exp, self._exp - context.prec-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1171 | ans = self._rescale(exp, context.rounding) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1172 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1173 | return ans |
| 1174 | |
| 1175 | op1 = _WorkRep(self) |
| 1176 | op2 = _WorkRep(other) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1177 | op1, op2 = _normalize(op1, op2, context.prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1178 | |
| 1179 | result = _WorkRep() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1180 | if op1.sign != op2.sign: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1181 | # Equal and opposite |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1182 | if op1.int == op2.int: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1183 | ans = _dec_from_triple(negativezero, '0', exp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1184 | ans = ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1185 | return ans |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1186 | if op1.int < op2.int: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1187 | op1, op2 = op2, op1 |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1188 | # OK, now abs(op1) > abs(op2) |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1189 | if op1.sign == 1: |
| 1190 | result.sign = 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1191 | op1.sign, op2.sign = op2.sign, op1.sign |
| 1192 | else: |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1193 | result.sign = 0 |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1194 | # So we know the sign, and op1 > 0. |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1195 | elif op1.sign == 1: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1196 | result.sign = 1 |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1197 | op1.sign, op2.sign = (0, 0) |
| 1198 | else: |
| 1199 | result.sign = 0 |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 1200 | # Now, op1 > abs(op2) > 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1201 | |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1202 | if op2.sign == 0: |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1203 | result.int = op1.int + op2.int |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1204 | else: |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1205 | result.int = op1.int - op2.int |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1206 | |
| 1207 | result.exp = op1.exp |
| 1208 | ans = Decimal(result) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1209 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1210 | return ans |
| 1211 | |
| 1212 | __radd__ = __add__ |
| 1213 | |
| 1214 | def __sub__(self, other, context=None): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1215 | """Return self - other""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1216 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1217 | if other is NotImplemented: |
| 1218 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1219 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1220 | if self._is_special or other._is_special: |
| 1221 | ans = self._check_nans(other, context=context) |
| 1222 | if ans: |
| 1223 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1224 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1225 | # self - other is computed as self + other.copy_negate() |
| 1226 | return self.__add__(other.copy_negate(), context=context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1227 | |
| 1228 | def __rsub__(self, other, context=None): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1229 | """Return other - self""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1230 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1231 | if other is NotImplemented: |
| 1232 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1233 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1234 | return other.__sub__(self, context=context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1235 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1236 | def __mul__(self, other, context=None): |
| 1237 | """Return self * other. |
| 1238 | |
| 1239 | (+-) INF * 0 (or its reverse) raise InvalidOperation. |
| 1240 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1241 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1242 | if other is NotImplemented: |
| 1243 | return other |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1244 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1245 | if context is None: |
| 1246 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1247 | |
Raymond Hettinger | d87ac8f | 2004-07-09 10:52:54 +0000 | [diff] [blame] | 1248 | resultsign = self._sign ^ other._sign |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1249 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1250 | if self._is_special or other._is_special: |
| 1251 | ans = self._check_nans(other, context) |
| 1252 | if ans: |
| 1253 | return ans |
| 1254 | |
| 1255 | if self._isinfinity(): |
| 1256 | if not other: |
| 1257 | return context._raise_error(InvalidOperation, '(+-)INF * 0') |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1258 | return _SignedInfinity[resultsign] |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1259 | |
| 1260 | if other._isinfinity(): |
| 1261 | if not self: |
| 1262 | return context._raise_error(InvalidOperation, '0 * (+-)INF') |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1263 | return _SignedInfinity[resultsign] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1264 | |
| 1265 | resultexp = self._exp + other._exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1266 | |
| 1267 | # Special case for multiplying by zero |
| 1268 | if not self or not other: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1269 | ans = _dec_from_triple(resultsign, '0', resultexp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1270 | # Fixing in case the exponent is out of bounds |
| 1271 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1272 | return ans |
| 1273 | |
| 1274 | # Special case for multiplying by power of 10 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1275 | if self._int == '1': |
| 1276 | ans = _dec_from_triple(resultsign, other._int, resultexp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1277 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1278 | return ans |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1279 | if other._int == '1': |
| 1280 | ans = _dec_from_triple(resultsign, self._int, resultexp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1281 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1282 | return ans |
| 1283 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1284 | op1 = _WorkRep(self) |
| 1285 | op2 = _WorkRep(other) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1286 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1287 | ans = _dec_from_triple(resultsign, str(op1.int * op2.int), resultexp) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1288 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1289 | |
| 1290 | return ans |
| 1291 | __rmul__ = __mul__ |
| 1292 | |
Mark Dickinson | 8aca9d0 | 2008-05-04 02:05:06 +0000 | [diff] [blame] | 1293 | def __truediv__(self, other, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1294 | """Return self / other.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1295 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1296 | if other is NotImplemented: |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1297 | return NotImplemented |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1298 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1299 | if context is None: |
| 1300 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1301 | |
Raymond Hettinger | d87ac8f | 2004-07-09 10:52:54 +0000 | [diff] [blame] | 1302 | sign = self._sign ^ other._sign |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1303 | |
| 1304 | if self._is_special or other._is_special: |
| 1305 | ans = self._check_nans(other, context) |
| 1306 | if ans: |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1307 | return ans |
| 1308 | |
| 1309 | if self._isinfinity() and other._isinfinity(): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1310 | return context._raise_error(InvalidOperation, '(+-)INF/(+-)INF') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1311 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1312 | if self._isinfinity(): |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1313 | return _SignedInfinity[sign] |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1314 | |
| 1315 | if other._isinfinity(): |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1316 | context._raise_error(Clamped, 'Division by infinity') |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1317 | return _dec_from_triple(sign, '0', context.Etiny()) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1318 | |
| 1319 | # Special cases for zeroes |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1320 | if not other: |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1321 | if not self: |
| 1322 | return context._raise_error(DivisionUndefined, '0 / 0') |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1323 | return context._raise_error(DivisionByZero, 'x / 0', sign) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1324 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1325 | if not self: |
| 1326 | exp = self._exp - other._exp |
| 1327 | coeff = 0 |
| 1328 | else: |
| 1329 | # OK, so neither = 0, INF or NaN |
| 1330 | shift = len(other._int) - len(self._int) + context.prec + 1 |
| 1331 | exp = self._exp - other._exp - shift |
| 1332 | op1 = _WorkRep(self) |
| 1333 | op2 = _WorkRep(other) |
| 1334 | if shift >= 0: |
| 1335 | coeff, remainder = divmod(op1.int * 10**shift, op2.int) |
| 1336 | else: |
| 1337 | coeff, remainder = divmod(op1.int, op2.int * 10**-shift) |
| 1338 | if remainder: |
| 1339 | # result is not exact; adjust to ensure correct rounding |
| 1340 | if coeff % 5 == 0: |
| 1341 | coeff += 1 |
| 1342 | else: |
| 1343 | # result is exact; get as close to ideal exponent as possible |
| 1344 | ideal_exp = self._exp - other._exp |
| 1345 | while exp < ideal_exp and coeff % 10 == 0: |
| 1346 | coeff //= 10 |
| 1347 | exp += 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1348 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1349 | ans = _dec_from_triple(sign, str(coeff), exp) |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1350 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1351 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1352 | def _divide(self, other, context): |
| 1353 | """Return (self // other, self % other), to context.prec precision. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1354 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1355 | Assumes that neither self nor other is a NaN, that self is not |
| 1356 | infinite and that other is nonzero. |
| 1357 | """ |
| 1358 | sign = self._sign ^ other._sign |
| 1359 | if other._isinfinity(): |
| 1360 | ideal_exp = self._exp |
| 1361 | else: |
| 1362 | ideal_exp = min(self._exp, other._exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1363 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1364 | expdiff = self.adjusted() - other.adjusted() |
| 1365 | if not self or other._isinfinity() or expdiff <= -2: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1366 | return (_dec_from_triple(sign, '0', 0), |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1367 | self._rescale(ideal_exp, context.rounding)) |
| 1368 | if expdiff <= context.prec: |
| 1369 | op1 = _WorkRep(self) |
| 1370 | op2 = _WorkRep(other) |
| 1371 | if op1.exp >= op2.exp: |
| 1372 | op1.int *= 10**(op1.exp - op2.exp) |
| 1373 | else: |
| 1374 | op2.int *= 10**(op2.exp - op1.exp) |
| 1375 | q, r = divmod(op1.int, op2.int) |
| 1376 | if q < 10**context.prec: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1377 | return (_dec_from_triple(sign, str(q), 0), |
| 1378 | _dec_from_triple(self._sign, str(r), ideal_exp)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1379 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1380 | # Here the quotient is too large to be representable |
| 1381 | ans = context._raise_error(DivisionImpossible, |
| 1382 | 'quotient too large in //, % or divmod') |
| 1383 | return ans, ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1384 | |
Mark Dickinson | 8aca9d0 | 2008-05-04 02:05:06 +0000 | [diff] [blame] | 1385 | def __rtruediv__(self, other, context=None): |
| 1386 | """Swaps self/other and returns __truediv__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1387 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1388 | if other is NotImplemented: |
| 1389 | return other |
Mark Dickinson | 8aca9d0 | 2008-05-04 02:05:06 +0000 | [diff] [blame] | 1390 | return other.__truediv__(self, context=context) |
| 1391 | |
| 1392 | __div__ = __truediv__ |
| 1393 | __rdiv__ = __rtruediv__ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1394 | |
| 1395 | def __divmod__(self, other, context=None): |
| 1396 | """ |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1397 | Return (self // other, self % other) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1398 | """ |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1399 | other = _convert_other(other) |
| 1400 | if other is NotImplemented: |
| 1401 | return other |
| 1402 | |
| 1403 | if context is None: |
| 1404 | context = getcontext() |
| 1405 | |
| 1406 | ans = self._check_nans(other, context) |
| 1407 | if ans: |
| 1408 | return (ans, ans) |
| 1409 | |
| 1410 | sign = self._sign ^ other._sign |
| 1411 | if self._isinfinity(): |
| 1412 | if other._isinfinity(): |
| 1413 | ans = context._raise_error(InvalidOperation, 'divmod(INF, INF)') |
| 1414 | return ans, ans |
| 1415 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1416 | return (_SignedInfinity[sign], |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1417 | context._raise_error(InvalidOperation, 'INF % x')) |
| 1418 | |
| 1419 | if not other: |
| 1420 | if not self: |
| 1421 | ans = context._raise_error(DivisionUndefined, 'divmod(0, 0)') |
| 1422 | return ans, ans |
| 1423 | else: |
| 1424 | return (context._raise_error(DivisionByZero, 'x // 0', sign), |
| 1425 | context._raise_error(InvalidOperation, 'x % 0')) |
| 1426 | |
| 1427 | quotient, remainder = self._divide(other, context) |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1428 | remainder = remainder._fix(context) |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1429 | return quotient, remainder |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1430 | |
| 1431 | def __rdivmod__(self, other, context=None): |
| 1432 | """Swaps self/other and returns __divmod__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1433 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1434 | if other is NotImplemented: |
| 1435 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1436 | return other.__divmod__(self, context=context) |
| 1437 | |
| 1438 | def __mod__(self, other, context=None): |
| 1439 | """ |
| 1440 | self % other |
| 1441 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1442 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1443 | if other is NotImplemented: |
| 1444 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1445 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1446 | if context is None: |
| 1447 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1448 | |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +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 | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1453 | if self._isinfinity(): |
| 1454 | return context._raise_error(InvalidOperation, 'INF % x') |
| 1455 | elif not other: |
| 1456 | if self: |
| 1457 | return context._raise_error(InvalidOperation, 'x % 0') |
| 1458 | else: |
| 1459 | return context._raise_error(DivisionUndefined, '0 % 0') |
| 1460 | |
| 1461 | remainder = self._divide(other, context)[1] |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 1462 | remainder = remainder._fix(context) |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1463 | return remainder |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1464 | |
| 1465 | def __rmod__(self, other, context=None): |
| 1466 | """Swaps self/other and returns __mod__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1467 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1468 | if other is NotImplemented: |
| 1469 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1470 | return other.__mod__(self, context=context) |
| 1471 | |
| 1472 | def remainder_near(self, other, context=None): |
| 1473 | """ |
| 1474 | Remainder nearest to 0- abs(remainder-near) <= other/2 |
| 1475 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1476 | if context is None: |
| 1477 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1478 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1479 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1480 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1481 | ans = self._check_nans(other, context) |
| 1482 | if ans: |
| 1483 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1484 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1485 | # self == +/-infinity -> InvalidOperation |
| 1486 | if self._isinfinity(): |
| 1487 | return context._raise_error(InvalidOperation, |
| 1488 | 'remainder_near(infinity, x)') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1489 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1490 | # other == 0 -> either InvalidOperation or DivisionUndefined |
| 1491 | if not other: |
| 1492 | if self: |
| 1493 | return context._raise_error(InvalidOperation, |
| 1494 | 'remainder_near(x, 0)') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1495 | else: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1496 | return context._raise_error(DivisionUndefined, |
| 1497 | 'remainder_near(0, 0)') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1498 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1499 | # other = +/-infinity -> remainder = self |
| 1500 | if other._isinfinity(): |
| 1501 | ans = Decimal(self) |
| 1502 | return ans._fix(context) |
| 1503 | |
| 1504 | # self = 0 -> remainder = self, with ideal exponent |
| 1505 | ideal_exponent = min(self._exp, other._exp) |
| 1506 | if not self: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1507 | ans = _dec_from_triple(self._sign, '0', ideal_exponent) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1508 | return ans._fix(context) |
| 1509 | |
| 1510 | # catch most cases of large or small quotient |
| 1511 | expdiff = self.adjusted() - other.adjusted() |
| 1512 | if expdiff >= context.prec + 1: |
| 1513 | # expdiff >= prec+1 => abs(self/other) > 10**prec |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1514 | return context._raise_error(DivisionImpossible) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1515 | if expdiff <= -2: |
| 1516 | # expdiff <= -2 => abs(self/other) < 0.1 |
| 1517 | ans = self._rescale(ideal_exponent, context.rounding) |
| 1518 | return ans._fix(context) |
| 1519 | |
| 1520 | # adjust both arguments to have the same exponent, then divide |
| 1521 | op1 = _WorkRep(self) |
| 1522 | op2 = _WorkRep(other) |
| 1523 | if op1.exp >= op2.exp: |
| 1524 | op1.int *= 10**(op1.exp - op2.exp) |
| 1525 | else: |
| 1526 | op2.int *= 10**(op2.exp - op1.exp) |
| 1527 | q, r = divmod(op1.int, op2.int) |
| 1528 | # remainder is r*10**ideal_exponent; other is +/-op2.int * |
| 1529 | # 10**ideal_exponent. Apply correction to ensure that |
| 1530 | # abs(remainder) <= abs(other)/2 |
| 1531 | if 2*r + (q&1) > op2.int: |
| 1532 | r -= op2.int |
| 1533 | q += 1 |
| 1534 | |
| 1535 | if q >= 10**context.prec: |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1536 | return context._raise_error(DivisionImpossible) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1537 | |
| 1538 | # result has same sign as self unless r is negative |
| 1539 | sign = self._sign |
| 1540 | if r < 0: |
| 1541 | sign = 1-sign |
| 1542 | r = -r |
| 1543 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1544 | ans = _dec_from_triple(sign, str(r), ideal_exponent) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1545 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1546 | |
| 1547 | def __floordiv__(self, other, context=None): |
| 1548 | """self // other""" |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1549 | other = _convert_other(other) |
| 1550 | if other is NotImplemented: |
| 1551 | return other |
| 1552 | |
| 1553 | if context is None: |
| 1554 | context = getcontext() |
| 1555 | |
| 1556 | ans = self._check_nans(other, context) |
| 1557 | if ans: |
| 1558 | return ans |
| 1559 | |
| 1560 | if self._isinfinity(): |
| 1561 | if other._isinfinity(): |
| 1562 | return context._raise_error(InvalidOperation, 'INF // INF') |
| 1563 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1564 | return _SignedInfinity[self._sign ^ other._sign] |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 1565 | |
| 1566 | if not other: |
| 1567 | if self: |
| 1568 | return context._raise_error(DivisionByZero, 'x // 0', |
| 1569 | self._sign ^ other._sign) |
| 1570 | else: |
| 1571 | return context._raise_error(DivisionUndefined, '0 // 0') |
| 1572 | |
| 1573 | return self._divide(other, context)[0] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1574 | |
| 1575 | def __rfloordiv__(self, other, context=None): |
| 1576 | """Swaps self/other and returns __floordiv__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1577 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1578 | if other is NotImplemented: |
| 1579 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1580 | return other.__floordiv__(self, context=context) |
| 1581 | |
| 1582 | def __float__(self): |
| 1583 | """Float representation.""" |
| 1584 | return float(str(self)) |
| 1585 | |
| 1586 | def __int__(self): |
Brett Cannon | 46b0802 | 2005-03-01 03:12:26 +0000 | [diff] [blame] | 1587 | """Converts self to an int, truncating if necessary.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1588 | if self._is_special: |
| 1589 | if self._isnan(): |
Mark Dickinson | 968f169 | 2009-09-07 18:04:58 +0000 | [diff] [blame] | 1590 | raise ValueError("Cannot convert NaN to integer") |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1591 | elif self._isinfinity(): |
Mark Dickinson | 968f169 | 2009-09-07 18:04:58 +0000 | [diff] [blame] | 1592 | raise OverflowError("Cannot convert infinity to integer") |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1593 | s = (-1)**self._sign |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1594 | if self._exp >= 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1595 | return s*int(self._int)*10**self._exp |
Raymond Hettinger | 605ed02 | 2004-11-24 07:28:48 +0000 | [diff] [blame] | 1596 | else: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1597 | return s*int(self._int[:self._exp] or '0') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1598 | |
Raymond Hettinger | 5a05364 | 2008-01-24 19:05:29 +0000 | [diff] [blame] | 1599 | __trunc__ = __int__ |
| 1600 | |
Raymond Hettinger | 116f72f | 2008-02-12 01:18:03 +0000 | [diff] [blame] | 1601 | def real(self): |
| 1602 | return self |
Mark Dickinson | 65808ff | 2009-01-04 21:22:02 +0000 | [diff] [blame] | 1603 | real = property(real) |
Raymond Hettinger | 116f72f | 2008-02-12 01:18:03 +0000 | [diff] [blame] | 1604 | |
Raymond Hettinger | 116f72f | 2008-02-12 01:18:03 +0000 | [diff] [blame] | 1605 | def imag(self): |
| 1606 | return Decimal(0) |
Mark Dickinson | 65808ff | 2009-01-04 21:22:02 +0000 | [diff] [blame] | 1607 | imag = property(imag) |
Raymond Hettinger | 116f72f | 2008-02-12 01:18:03 +0000 | [diff] [blame] | 1608 | |
| 1609 | def conjugate(self): |
| 1610 | return self |
| 1611 | |
| 1612 | def __complex__(self): |
| 1613 | return complex(float(self)) |
| 1614 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1615 | def __long__(self): |
| 1616 | """Converts to a long. |
| 1617 | |
| 1618 | Equivalent to long(int(self)) |
| 1619 | """ |
| 1620 | return long(self.__int__()) |
| 1621 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1622 | def _fix_nan(self, context): |
| 1623 | """Decapitate the payload of a NaN to fit the context""" |
| 1624 | payload = self._int |
| 1625 | |
| 1626 | # maximum length of payload is precision if _clamp=0, |
| 1627 | # precision-1 if _clamp=1. |
| 1628 | max_payload_len = context.prec - context._clamp |
| 1629 | if len(payload) > max_payload_len: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1630 | payload = payload[len(payload)-max_payload_len:].lstrip('0') |
| 1631 | return _dec_from_triple(self._sign, payload, self._exp, True) |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1632 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1633 | |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 1634 | def _fix(self, context): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1635 | """Round if it is necessary to keep self within prec precision. |
| 1636 | |
| 1637 | Rounds and fixes the exponent. Does not raise on a sNaN. |
| 1638 | |
| 1639 | Arguments: |
| 1640 | self - Decimal instance |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1641 | context - context used. |
| 1642 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1643 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1644 | if self._is_special: |
| 1645 | if self._isnan(): |
| 1646 | # decapitate payload if necessary |
| 1647 | return self._fix_nan(context) |
| 1648 | else: |
| 1649 | # self is +/-Infinity; return unaltered |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1650 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1651 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1652 | # if self is zero then exponent should be between Etiny and |
| 1653 | # Emax if _clamp==0, and between Etiny and Etop if _clamp==1. |
| 1654 | Etiny = context.Etiny() |
| 1655 | Etop = context.Etop() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1656 | if not self: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1657 | exp_max = [context.Emax, Etop][context._clamp] |
| 1658 | new_exp = min(max(self._exp, Etiny), exp_max) |
| 1659 | if new_exp != self._exp: |
| 1660 | context._raise_error(Clamped) |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1661 | return _dec_from_triple(self._sign, '0', new_exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1662 | else: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1663 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1664 | |
| 1665 | # exp_min is the smallest allowable exponent of the result, |
| 1666 | # equal to max(self.adjusted()-context.prec+1, Etiny) |
| 1667 | exp_min = len(self._int) + self._exp - context.prec |
| 1668 | if exp_min > Etop: |
| 1669 | # overflow: exp_min > Etop iff self.adjusted() > Emax |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 1670 | ans = context._raise_error(Overflow, 'above Emax', self._sign) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1671 | context._raise_error(Inexact) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1672 | context._raise_error(Rounded) |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 1673 | return ans |
| 1674 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1675 | self_is_subnormal = exp_min < Etiny |
| 1676 | if self_is_subnormal: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1677 | exp_min = Etiny |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1678 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1679 | # round if self has too many digits |
| 1680 | if self._exp < exp_min: |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1681 | digits = len(self._int) + self._exp - exp_min |
| 1682 | if digits < 0: |
| 1683 | self = _dec_from_triple(self._sign, '1', exp_min-1) |
| 1684 | digits = 0 |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 1685 | rounding_method = self._pick_rounding_function[context.rounding] |
| 1686 | changed = getattr(self, rounding_method)(digits) |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1687 | coeff = self._int[:digits] or '0' |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 1688 | if changed > 0: |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1689 | coeff = str(int(coeff)+1) |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 1690 | if len(coeff) > context.prec: |
| 1691 | coeff = coeff[:-1] |
| 1692 | exp_min += 1 |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1693 | |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 1694 | # check whether the rounding pushed the exponent out of range |
| 1695 | if exp_min > Etop: |
| 1696 | ans = context._raise_error(Overflow, 'above Emax', self._sign) |
| 1697 | else: |
| 1698 | ans = _dec_from_triple(self._sign, coeff, exp_min) |
| 1699 | |
| 1700 | # raise the appropriate signals, taking care to respect |
| 1701 | # the precedence described in the specification |
| 1702 | if changed and self_is_subnormal: |
| 1703 | context._raise_error(Underflow) |
| 1704 | if self_is_subnormal: |
| 1705 | context._raise_error(Subnormal) |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1706 | if changed: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1707 | context._raise_error(Inexact) |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 1708 | context._raise_error(Rounded) |
| 1709 | if not ans: |
| 1710 | # raise Clamped on underflow to 0 |
| 1711 | context._raise_error(Clamped) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1712 | return ans |
| 1713 | |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 1714 | if self_is_subnormal: |
| 1715 | context._raise_error(Subnormal) |
| 1716 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1717 | # fold down if _clamp == 1 and self has too few digits |
| 1718 | if context._clamp == 1 and self._exp > Etop: |
| 1719 | context._raise_error(Clamped) |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1720 | self_padded = self._int + '0'*(self._exp - Etop) |
| 1721 | return _dec_from_triple(self._sign, self_padded, Etop) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1722 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1723 | # here self was representable to begin with; return unchanged |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1724 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1725 | |
| 1726 | _pick_rounding_function = {} |
| 1727 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1728 | # for each of the rounding functions below: |
| 1729 | # self is a finite, nonzero Decimal |
| 1730 | # prec is an integer satisfying 0 <= prec < len(self._int) |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1731 | # |
| 1732 | # each function returns either -1, 0, or 1, as follows: |
| 1733 | # 1 indicates that self should be rounded up (away from zero) |
| 1734 | # 0 indicates that self should be truncated, and that all the |
| 1735 | # digits to be truncated are zeros (so the value is unchanged) |
| 1736 | # -1 indicates that there are nonzero digits to be truncated |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1737 | |
| 1738 | def _round_down(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1739 | """Also known as round-towards-0, truncate.""" |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1740 | if _all_zeros(self._int, prec): |
| 1741 | return 0 |
| 1742 | else: |
| 1743 | return -1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1744 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1745 | def _round_up(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1746 | """Rounds away from 0.""" |
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_half_up(self, prec): |
| 1750 | """Rounds 5 up (away from 0)""" |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1751 | if self._int[prec] in '56789': |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1752 | return 1 |
| 1753 | elif _all_zeros(self._int, prec): |
| 1754 | return 0 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1755 | else: |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1756 | return -1 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1757 | |
| 1758 | def _round_half_down(self, prec): |
| 1759 | """Round 5 down""" |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1760 | if _exact_half(self._int, prec): |
| 1761 | return -1 |
| 1762 | else: |
| 1763 | return self._round_half_up(prec) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1764 | |
| 1765 | def _round_half_even(self, prec): |
| 1766 | """Round 5 to even, rest to nearest.""" |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1767 | if _exact_half(self._int, prec) and \ |
| 1768 | (prec == 0 or self._int[prec-1] in '02468'): |
| 1769 | return -1 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1770 | else: |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1771 | return self._round_half_up(prec) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1772 | |
| 1773 | def _round_ceiling(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1774 | """Rounds up (not away from 0 if negative.)""" |
| 1775 | if self._sign: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1776 | return self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1777 | else: |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1778 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1779 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1780 | def _round_floor(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1781 | """Rounds down (not towards 0 if negative)""" |
| 1782 | if not self._sign: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1783 | return self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1784 | else: |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1785 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1786 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1787 | def _round_05up(self, prec): |
| 1788 | """Round down unless digit prec-1 is 0 or 5.""" |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1789 | if prec and self._int[prec-1] not in '05': |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1790 | return self._round_down(prec) |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 1791 | else: |
| 1792 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1793 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1794 | def fma(self, other, third, context=None): |
| 1795 | """Fused multiply-add. |
| 1796 | |
| 1797 | Returns self*other+third with no rounding of the intermediate |
| 1798 | product self*other. |
| 1799 | |
| 1800 | self and other are multiplied together, with no rounding of |
| 1801 | the result. The third operand is then added to the result, |
| 1802 | and a single final rounding is performed. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1803 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1804 | |
| 1805 | other = _convert_other(other, raiseit=True) |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1806 | |
| 1807 | # compute product; raise InvalidOperation if either operand is |
| 1808 | # a signaling NaN or if the product is zero times infinity. |
| 1809 | if self._is_special or other._is_special: |
| 1810 | if context is None: |
| 1811 | context = getcontext() |
| 1812 | if self._exp == 'N': |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1813 | return context._raise_error(InvalidOperation, 'sNaN', self) |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1814 | if other._exp == 'N': |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1815 | return context._raise_error(InvalidOperation, 'sNaN', other) |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1816 | if self._exp == 'n': |
| 1817 | product = self |
| 1818 | elif other._exp == 'n': |
| 1819 | product = other |
| 1820 | elif self._exp == 'F': |
| 1821 | if not other: |
| 1822 | return context._raise_error(InvalidOperation, |
| 1823 | 'INF * 0 in fma') |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1824 | product = _SignedInfinity[self._sign ^ other._sign] |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1825 | elif other._exp == 'F': |
| 1826 | if not self: |
| 1827 | return context._raise_error(InvalidOperation, |
| 1828 | '0 * INF in fma') |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 1829 | product = _SignedInfinity[self._sign ^ other._sign] |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1830 | else: |
| 1831 | product = _dec_from_triple(self._sign ^ other._sign, |
| 1832 | str(int(self._int) * int(other._int)), |
| 1833 | self._exp + other._exp) |
| 1834 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1835 | third = _convert_other(third, raiseit=True) |
Facundo Batista | 58f6f2e | 2007-12-04 16:31:53 +0000 | [diff] [blame] | 1836 | return product.__add__(third, context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1837 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1838 | def _power_modulo(self, other, modulo, context=None): |
| 1839 | """Three argument version of __pow__""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1840 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1841 | # if can't convert other and modulo to Decimal, raise |
| 1842 | # TypeError; there's no point returning NotImplemented (no |
| 1843 | # equivalent of __rpow__ for three argument pow) |
| 1844 | other = _convert_other(other, raiseit=True) |
| 1845 | modulo = _convert_other(modulo, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1846 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1847 | if context is None: |
| 1848 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1849 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1850 | # deal with NaNs: if there are any sNaNs then first one wins, |
| 1851 | # (i.e. behaviour for NaNs is identical to that of fma) |
| 1852 | self_is_nan = self._isnan() |
| 1853 | other_is_nan = other._isnan() |
| 1854 | modulo_is_nan = modulo._isnan() |
| 1855 | if self_is_nan or other_is_nan or modulo_is_nan: |
| 1856 | if self_is_nan == 2: |
| 1857 | return context._raise_error(InvalidOperation, 'sNaN', |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1858 | self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1859 | if other_is_nan == 2: |
| 1860 | return context._raise_error(InvalidOperation, 'sNaN', |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1861 | other) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1862 | if modulo_is_nan == 2: |
| 1863 | return context._raise_error(InvalidOperation, 'sNaN', |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 1864 | modulo) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1865 | if self_is_nan: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1866 | return self._fix_nan(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1867 | if other_is_nan: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 1868 | return other._fix_nan(context) |
| 1869 | return modulo._fix_nan(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1870 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1871 | # check inputs: we apply same restrictions as Python's pow() |
| 1872 | if not (self._isinteger() and |
| 1873 | other._isinteger() and |
| 1874 | modulo._isinteger()): |
| 1875 | return context._raise_error(InvalidOperation, |
| 1876 | 'pow() 3rd argument not allowed ' |
| 1877 | 'unless all arguments are integers') |
| 1878 | if other < 0: |
| 1879 | return context._raise_error(InvalidOperation, |
| 1880 | 'pow() 2nd argument cannot be ' |
| 1881 | 'negative when 3rd argument specified') |
| 1882 | if not modulo: |
| 1883 | return context._raise_error(InvalidOperation, |
| 1884 | 'pow() 3rd argument cannot be 0') |
| 1885 | |
| 1886 | # additional restriction for decimal: the modulus must be less |
| 1887 | # than 10**prec in absolute value |
| 1888 | if modulo.adjusted() >= context.prec: |
| 1889 | return context._raise_error(InvalidOperation, |
| 1890 | 'insufficient precision: pow() 3rd ' |
| 1891 | 'argument must not have more than ' |
| 1892 | 'precision digits') |
| 1893 | |
| 1894 | # define 0**0 == NaN, for consistency with two-argument pow |
| 1895 | # (even though it hurts!) |
| 1896 | if not other and not self: |
| 1897 | return context._raise_error(InvalidOperation, |
| 1898 | 'at least one of pow() 1st argument ' |
| 1899 | 'and 2nd argument must be nonzero ;' |
| 1900 | '0**0 is not defined') |
| 1901 | |
| 1902 | # compute sign of result |
| 1903 | if other._iseven(): |
| 1904 | sign = 0 |
| 1905 | else: |
| 1906 | sign = self._sign |
| 1907 | |
| 1908 | # convert modulo to a Python integer, and self and other to |
| 1909 | # Decimal integers (i.e. force their exponents to be >= 0) |
| 1910 | modulo = abs(int(modulo)) |
| 1911 | base = _WorkRep(self.to_integral_value()) |
| 1912 | exponent = _WorkRep(other.to_integral_value()) |
| 1913 | |
| 1914 | # compute result using integer pow() |
| 1915 | base = (base.int % modulo * pow(10, base.exp, modulo)) % modulo |
| 1916 | for i in xrange(exponent.exp): |
| 1917 | base = pow(base, 10, modulo) |
| 1918 | base = pow(base, exponent.int, modulo) |
| 1919 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 1920 | return _dec_from_triple(sign, str(base), 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 1921 | |
| 1922 | def _power_exact(self, other, p): |
| 1923 | """Attempt to compute self**other exactly. |
| 1924 | |
| 1925 | Given Decimals self and other and an integer p, attempt to |
| 1926 | compute an exact result for the power self**other, with p |
| 1927 | digits of precision. Return None if self**other is not |
| 1928 | exactly representable in p digits. |
| 1929 | |
| 1930 | Assumes that elimination of special cases has already been |
| 1931 | performed: self and other must both be nonspecial; self must |
| 1932 | be positive and not numerically equal to 1; other must be |
| 1933 | nonzero. For efficiency, other._exp should not be too large, |
| 1934 | so that 10**abs(other._exp) is a feasible calculation.""" |
| 1935 | |
| 1936 | # In the comments below, we write x for the value of self and |
| 1937 | # y for the value of other. Write x = xc*10**xe and y = |
| 1938 | # yc*10**ye. |
| 1939 | |
| 1940 | # The main purpose of this method is to identify the *failure* |
| 1941 | # of x**y to be exactly representable with as little effort as |
| 1942 | # possible. So we look for cheap and easy tests that |
| 1943 | # eliminate the possibility of x**y being exact. Only if all |
| 1944 | # these tests are passed do we go on to actually compute x**y. |
| 1945 | |
| 1946 | # Here's the main idea. First normalize both x and y. We |
| 1947 | # express y as a rational m/n, with m and n relatively prime |
| 1948 | # and n>0. Then for x**y to be exactly representable (at |
| 1949 | # *any* precision), xc must be the nth power of a positive |
| 1950 | # integer and xe must be divisible by n. If m is negative |
| 1951 | # then additionally xc must be a power of either 2 or 5, hence |
| 1952 | # a power of 2**n or 5**n. |
| 1953 | # |
| 1954 | # There's a limit to how small |y| can be: if y=m/n as above |
| 1955 | # then: |
| 1956 | # |
| 1957 | # (1) if xc != 1 then for the result to be representable we |
| 1958 | # need xc**(1/n) >= 2, and hence also xc**|y| >= 2. So |
| 1959 | # if |y| <= 1/nbits(xc) then xc < 2**nbits(xc) <= |
| 1960 | # 2**(1/|y|), hence xc**|y| < 2 and the result is not |
| 1961 | # representable. |
| 1962 | # |
| 1963 | # (2) if xe != 0, |xe|*(1/n) >= 1, so |xe|*|y| >= 1. Hence if |
| 1964 | # |y| < 1/|xe| then the result is not representable. |
| 1965 | # |
| 1966 | # Note that since x is not equal to 1, at least one of (1) and |
| 1967 | # (2) must apply. Now |y| < 1/nbits(xc) iff |yc|*nbits(xc) < |
| 1968 | # 10**-ye iff len(str(|yc|*nbits(xc)) <= -ye. |
| 1969 | # |
| 1970 | # There's also a limit to how large y can be, at least if it's |
| 1971 | # positive: the normalized result will have coefficient xc**y, |
| 1972 | # so if it's representable then xc**y < 10**p, and y < |
| 1973 | # p/log10(xc). Hence if y*log10(xc) >= p then the result is |
| 1974 | # not exactly representable. |
| 1975 | |
| 1976 | # if len(str(abs(yc*xe)) <= -ye then abs(yc*xe) < 10**-ye, |
| 1977 | # so |y| < 1/xe and the result is not representable. |
| 1978 | # Similarly, len(str(abs(yc)*xc_bits)) <= -ye implies |y| |
| 1979 | # < 1/nbits(xc). |
| 1980 | |
| 1981 | x = _WorkRep(self) |
| 1982 | xc, xe = x.int, x.exp |
| 1983 | while xc % 10 == 0: |
| 1984 | xc //= 10 |
| 1985 | xe += 1 |
| 1986 | |
| 1987 | y = _WorkRep(other) |
| 1988 | yc, ye = y.int, y.exp |
| 1989 | while yc % 10 == 0: |
| 1990 | yc //= 10 |
| 1991 | ye += 1 |
| 1992 | |
| 1993 | # case where xc == 1: result is 10**(xe*y), with xe*y |
| 1994 | # required to be an integer |
| 1995 | if xc == 1: |
Mark Dickinson | e85aa73 | 2010-07-08 19:24:40 +0000 | [diff] [blame] | 1996 | xe *= yc |
| 1997 | # result is now 10**(xe * 10**ye); xe * 10**ye must be integral |
| 1998 | while xe % 10 == 0: |
| 1999 | xe //= 10 |
| 2000 | ye += 1 |
| 2001 | if ye < 0: |
| 2002 | return None |
| 2003 | exponent = xe * 10**ye |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2004 | if y.sign == 1: |
| 2005 | exponent = -exponent |
| 2006 | # if other is a nonnegative integer, use ideal exponent |
| 2007 | if other._isinteger() and other._sign == 0: |
| 2008 | ideal_exponent = self._exp*int(other) |
| 2009 | zeros = min(exponent-ideal_exponent, p-1) |
| 2010 | else: |
| 2011 | zeros = 0 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2012 | return _dec_from_triple(0, '1' + '0'*zeros, exponent-zeros) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2013 | |
| 2014 | # case where y is negative: xc must be either a power |
| 2015 | # of 2 or a power of 5. |
| 2016 | if y.sign == 1: |
| 2017 | last_digit = xc % 10 |
| 2018 | if last_digit in (2,4,6,8): |
| 2019 | # quick test for power of 2 |
| 2020 | if xc & -xc != xc: |
| 2021 | return None |
| 2022 | # now xc is a power of 2; e is its exponent |
| 2023 | e = _nbits(xc)-1 |
| 2024 | # find e*y and xe*y; both must be integers |
| 2025 | if ye >= 0: |
| 2026 | y_as_int = yc*10**ye |
| 2027 | e = e*y_as_int |
| 2028 | xe = xe*y_as_int |
| 2029 | else: |
| 2030 | ten_pow = 10**-ye |
| 2031 | e, remainder = divmod(e*yc, ten_pow) |
| 2032 | if remainder: |
| 2033 | return None |
| 2034 | xe, remainder = divmod(xe*yc, ten_pow) |
| 2035 | if remainder: |
| 2036 | return None |
| 2037 | |
| 2038 | if e*65 >= p*93: # 93/65 > log(10)/log(5) |
| 2039 | return None |
| 2040 | xc = 5**e |
| 2041 | |
| 2042 | elif last_digit == 5: |
| 2043 | # e >= log_5(xc) if xc is a power of 5; we have |
| 2044 | # equality all the way up to xc=5**2658 |
| 2045 | e = _nbits(xc)*28//65 |
| 2046 | xc, remainder = divmod(5**e, xc) |
| 2047 | if remainder: |
| 2048 | return None |
| 2049 | while xc % 5 == 0: |
| 2050 | xc //= 5 |
| 2051 | e -= 1 |
| 2052 | if ye >= 0: |
| 2053 | y_as_integer = yc*10**ye |
| 2054 | e = e*y_as_integer |
| 2055 | xe = xe*y_as_integer |
| 2056 | else: |
| 2057 | ten_pow = 10**-ye |
| 2058 | e, remainder = divmod(e*yc, ten_pow) |
| 2059 | if remainder: |
| 2060 | return None |
| 2061 | xe, remainder = divmod(xe*yc, ten_pow) |
| 2062 | if remainder: |
| 2063 | return None |
| 2064 | if e*3 >= p*10: # 10/3 > log(10)/log(2) |
| 2065 | return None |
| 2066 | xc = 2**e |
| 2067 | else: |
| 2068 | return None |
| 2069 | |
| 2070 | if xc >= 10**p: |
| 2071 | return None |
| 2072 | xe = -e-xe |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2073 | return _dec_from_triple(0, str(xc), xe) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2074 | |
| 2075 | # now y is positive; find m and n such that y = m/n |
| 2076 | if ye >= 0: |
| 2077 | m, n = yc*10**ye, 1 |
| 2078 | else: |
| 2079 | if xe != 0 and len(str(abs(yc*xe))) <= -ye: |
| 2080 | return None |
| 2081 | xc_bits = _nbits(xc) |
| 2082 | if xc != 1 and len(str(abs(yc)*xc_bits)) <= -ye: |
| 2083 | return None |
| 2084 | m, n = yc, 10**(-ye) |
| 2085 | while m % 2 == n % 2 == 0: |
| 2086 | m //= 2 |
| 2087 | n //= 2 |
| 2088 | while m % 5 == n % 5 == 0: |
| 2089 | m //= 5 |
| 2090 | n //= 5 |
| 2091 | |
| 2092 | # compute nth root of xc*10**xe |
| 2093 | if n > 1: |
| 2094 | # if 1 < xc < 2**n then xc isn't an nth power |
| 2095 | if xc != 1 and xc_bits <= n: |
| 2096 | return None |
| 2097 | |
| 2098 | xe, rem = divmod(xe, n) |
| 2099 | if rem != 0: |
| 2100 | return None |
| 2101 | |
| 2102 | # compute nth root of xc using Newton's method |
| 2103 | a = 1L << -(-_nbits(xc)//n) # initial estimate |
| 2104 | while True: |
| 2105 | q, r = divmod(xc, a**(n-1)) |
| 2106 | if a <= q: |
| 2107 | break |
| 2108 | else: |
| 2109 | a = (a*(n-1) + q)//n |
| 2110 | if not (a == q and r == 0): |
| 2111 | return None |
| 2112 | xc = a |
| 2113 | |
| 2114 | # now xc*10**xe is the nth root of the original xc*10**xe |
| 2115 | # compute mth power of xc*10**xe |
| 2116 | |
| 2117 | # if m > p*100//_log10_lb(xc) then m > p/log10(xc), hence xc**m > |
| 2118 | # 10**p and the result is not representable. |
| 2119 | if xc > 1 and m > p*100//_log10_lb(xc): |
| 2120 | return None |
| 2121 | xc = xc**m |
| 2122 | xe *= m |
| 2123 | if xc > 10**p: |
| 2124 | return None |
| 2125 | |
| 2126 | # by this point the result *is* exactly representable |
| 2127 | # adjust the exponent to get as close as possible to the ideal |
| 2128 | # exponent, if necessary |
| 2129 | str_xc = str(xc) |
| 2130 | if other._isinteger() and other._sign == 0: |
| 2131 | ideal_exponent = self._exp*int(other) |
| 2132 | zeros = min(xe-ideal_exponent, p-len(str_xc)) |
| 2133 | else: |
| 2134 | zeros = 0 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2135 | return _dec_from_triple(0, str_xc+'0'*zeros, xe-zeros) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2136 | |
| 2137 | def __pow__(self, other, modulo=None, context=None): |
| 2138 | """Return self ** other [ % modulo]. |
| 2139 | |
| 2140 | With two arguments, compute self**other. |
| 2141 | |
| 2142 | With three arguments, compute (self**other) % modulo. For the |
| 2143 | three argument form, the following restrictions on the |
| 2144 | arguments hold: |
| 2145 | |
| 2146 | - all three arguments must be integral |
| 2147 | - other must be nonnegative |
| 2148 | - either self or other (or both) must be nonzero |
| 2149 | - modulo must be nonzero and must have at most p digits, |
| 2150 | where p is the context precision. |
| 2151 | |
| 2152 | If any of these restrictions is violated the InvalidOperation |
| 2153 | flag is raised. |
| 2154 | |
| 2155 | The result of pow(self, other, modulo) is identical to the |
| 2156 | result that would be obtained by computing (self**other) % |
| 2157 | modulo with unbounded precision, but is computed more |
| 2158 | efficiently. It is always exact. |
| 2159 | """ |
| 2160 | |
| 2161 | if modulo is not None: |
| 2162 | return self._power_modulo(other, modulo, context) |
| 2163 | |
| 2164 | other = _convert_other(other) |
| 2165 | if other is NotImplemented: |
| 2166 | return other |
| 2167 | |
| 2168 | if context is None: |
| 2169 | context = getcontext() |
| 2170 | |
| 2171 | # either argument is a NaN => result is NaN |
| 2172 | ans = self._check_nans(other, context) |
| 2173 | if ans: |
| 2174 | return ans |
| 2175 | |
| 2176 | # 0**0 = NaN (!), x**0 = 1 for nonzero x (including +/-Infinity) |
| 2177 | if not other: |
| 2178 | if not self: |
| 2179 | return context._raise_error(InvalidOperation, '0 ** 0') |
| 2180 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2181 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2182 | |
| 2183 | # result has sign 1 iff self._sign is 1 and other is an odd integer |
| 2184 | result_sign = 0 |
| 2185 | if self._sign == 1: |
| 2186 | if other._isinteger(): |
| 2187 | if not other._iseven(): |
| 2188 | result_sign = 1 |
| 2189 | else: |
| 2190 | # -ve**noninteger = NaN |
| 2191 | # (-0)**noninteger = 0**noninteger |
| 2192 | if self: |
| 2193 | return context._raise_error(InvalidOperation, |
| 2194 | 'x ** y with x negative and y not an integer') |
| 2195 | # negate self, without doing any unwanted rounding |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2196 | self = self.copy_negate() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2197 | |
| 2198 | # 0**(+ve or Inf)= 0; 0**(-ve or -Inf) = Infinity |
| 2199 | if not self: |
| 2200 | if other._sign == 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2201 | return _dec_from_triple(result_sign, '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2202 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2203 | return _SignedInfinity[result_sign] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2204 | |
| 2205 | # Inf**(+ve or Inf) = Inf; Inf**(-ve or -Inf) = 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2206 | if self._isinfinity(): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2207 | if other._sign == 0: |
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 | else: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2210 | return _dec_from_triple(result_sign, '0', 0) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2211 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2212 | # 1**other = 1, but the choice of exponent and the flags |
| 2213 | # depend on the exponent of self, and on whether other is a |
| 2214 | # positive integer, a negative integer, or neither |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2215 | if self == _One: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2216 | if other._isinteger(): |
| 2217 | # exp = max(self._exp*max(int(other), 0), |
| 2218 | # 1-context.prec) but evaluating int(other) directly |
| 2219 | # is dangerous until we know other is small (other |
| 2220 | # could be 1e999999999) |
| 2221 | if other._sign == 1: |
| 2222 | multiplier = 0 |
| 2223 | elif other > context.prec: |
| 2224 | multiplier = context.prec |
| 2225 | else: |
| 2226 | multiplier = int(other) |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 2227 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2228 | exp = self._exp * multiplier |
| 2229 | if exp < 1-context.prec: |
| 2230 | exp = 1-context.prec |
| 2231 | context._raise_error(Rounded) |
| 2232 | else: |
| 2233 | context._raise_error(Inexact) |
| 2234 | context._raise_error(Rounded) |
| 2235 | exp = 1-context.prec |
| 2236 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2237 | return _dec_from_triple(result_sign, '1'+'0'*-exp, exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2238 | |
| 2239 | # compute adjusted exponent of self |
| 2240 | self_adj = self.adjusted() |
| 2241 | |
| 2242 | # self ** infinity is infinity if self > 1, 0 if self < 1 |
| 2243 | # self ** -infinity is infinity if self < 1, 0 if self > 1 |
| 2244 | if other._isinfinity(): |
| 2245 | if (other._sign == 0) == (self_adj < 0): |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2246 | return _dec_from_triple(result_sign, '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2247 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2248 | return _SignedInfinity[result_sign] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2249 | |
| 2250 | # from here on, the result always goes through the call |
| 2251 | # to _fix at the end of this function. |
| 2252 | ans = None |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 2253 | exact = False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2254 | |
| 2255 | # crude test to catch cases of extreme overflow/underflow. If |
| 2256 | # log10(self)*other >= 10**bound and bound >= len(str(Emax)) |
| 2257 | # then 10**bound >= 10**len(str(Emax)) >= Emax+1 and hence |
| 2258 | # self**other >= 10**(Emax+1), so overflow occurs. The test |
| 2259 | # for underflow is similar. |
| 2260 | bound = self._log10_exp_bound() + other.adjusted() |
| 2261 | if (self_adj >= 0) == (other._sign == 0): |
| 2262 | # self > 1 and other +ve, or self < 1 and other -ve |
| 2263 | # possibility of overflow |
| 2264 | if bound >= len(str(context.Emax)): |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2265 | ans = _dec_from_triple(result_sign, '1', context.Emax+1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2266 | else: |
| 2267 | # self > 1 and other -ve, or self < 1 and other +ve |
| 2268 | # possibility of underflow to 0 |
| 2269 | Etiny = context.Etiny() |
| 2270 | if bound >= len(str(-Etiny)): |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2271 | ans = _dec_from_triple(result_sign, '1', Etiny-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2272 | |
| 2273 | # try for an exact result with precision +1 |
| 2274 | if ans is None: |
| 2275 | ans = self._power_exact(other, context.prec + 1) |
Mark Dickinson | e85aa73 | 2010-07-08 19:24:40 +0000 | [diff] [blame] | 2276 | if ans is not None: |
| 2277 | if result_sign == 1: |
| 2278 | ans = _dec_from_triple(1, ans._int, ans._exp) |
| 2279 | exact = True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2280 | |
| 2281 | # usual case: inexact result, x**y computed directly as exp(y*log(x)) |
| 2282 | if ans is None: |
| 2283 | p = context.prec |
| 2284 | x = _WorkRep(self) |
| 2285 | xc, xe = x.int, x.exp |
| 2286 | y = _WorkRep(other) |
| 2287 | yc, ye = y.int, y.exp |
| 2288 | if y.sign == 1: |
| 2289 | yc = -yc |
| 2290 | |
| 2291 | # compute correctly rounded result: start with precision +3, |
| 2292 | # then increase precision until result is unambiguously roundable |
| 2293 | extra = 3 |
| 2294 | while True: |
| 2295 | coeff, exp = _dpower(xc, xe, yc, ye, p+extra) |
| 2296 | if coeff % (5*10**(len(str(coeff))-p-1)): |
| 2297 | break |
| 2298 | extra += 3 |
| 2299 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2300 | ans = _dec_from_triple(result_sign, str(coeff), exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2301 | |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 2302 | # unlike exp, ln and log10, the power function respects the |
| 2303 | # rounding mode; no need to switch to ROUND_HALF_EVEN here |
| 2304 | |
| 2305 | # There's a difficulty here when 'other' is not an integer and |
| 2306 | # the result is exact. In this case, the specification |
| 2307 | # requires that the Inexact flag be raised (in spite of |
| 2308 | # exactness), but since the result is exact _fix won't do this |
| 2309 | # for us. (Correspondingly, the Underflow signal should also |
| 2310 | # be raised for subnormal results.) We can't directly raise |
| 2311 | # these signals either before or after calling _fix, since |
| 2312 | # that would violate the precedence for signals. So we wrap |
| 2313 | # the ._fix call in a temporary context, and reraise |
| 2314 | # afterwards. |
| 2315 | if exact and not other._isinteger(): |
| 2316 | # pad with zeros up to length context.prec+1 if necessary; this |
| 2317 | # ensures that the Rounded signal will be raised. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2318 | if len(ans._int) <= context.prec: |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 2319 | expdiff = context.prec + 1 - len(ans._int) |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2320 | ans = _dec_from_triple(ans._sign, ans._int+'0'*expdiff, |
| 2321 | ans._exp-expdiff) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2322 | |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 2323 | # create a copy of the current context, with cleared flags/traps |
| 2324 | newcontext = context.copy() |
| 2325 | newcontext.clear_flags() |
| 2326 | for exception in _signals: |
| 2327 | newcontext.traps[exception] = 0 |
| 2328 | |
| 2329 | # round in the new context |
| 2330 | ans = ans._fix(newcontext) |
| 2331 | |
| 2332 | # raise Inexact, and if necessary, Underflow |
| 2333 | newcontext._raise_error(Inexact) |
| 2334 | if newcontext.flags[Subnormal]: |
| 2335 | newcontext._raise_error(Underflow) |
| 2336 | |
| 2337 | # propagate signals to the original context; _fix could |
| 2338 | # have raised any of Overflow, Underflow, Subnormal, |
| 2339 | # Inexact, Rounded, Clamped. Overflow needs the correct |
| 2340 | # arguments. Note that the order of the exceptions is |
| 2341 | # important here. |
| 2342 | if newcontext.flags[Overflow]: |
| 2343 | context._raise_error(Overflow, 'above Emax', ans._sign) |
| 2344 | for exception in Underflow, Subnormal, Inexact, Rounded, Clamped: |
| 2345 | if newcontext.flags[exception]: |
| 2346 | context._raise_error(exception) |
| 2347 | |
| 2348 | else: |
| 2349 | ans = ans._fix(context) |
| 2350 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2351 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2352 | |
| 2353 | def __rpow__(self, other, context=None): |
| 2354 | """Swaps self/other and returns __pow__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2355 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 2356 | if other is NotImplemented: |
| 2357 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2358 | return other.__pow__(self, context=context) |
| 2359 | |
| 2360 | def normalize(self, context=None): |
| 2361 | """Normalize- strip trailing 0s, change anything equal to 0 to 0e0""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2362 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2363 | if context is None: |
| 2364 | context = getcontext() |
| 2365 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2366 | if self._is_special: |
| 2367 | ans = self._check_nans(context=context) |
| 2368 | if ans: |
| 2369 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2370 | |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 2371 | dup = self._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2372 | if dup._isinfinity(): |
| 2373 | return dup |
| 2374 | |
| 2375 | if not dup: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2376 | return _dec_from_triple(dup._sign, '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2377 | exp_max = [context.Emax, context.Etop()][context._clamp] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2378 | end = len(dup._int) |
| 2379 | exp = dup._exp |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2380 | while dup._int[end-1] == '0' and exp < exp_max: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2381 | exp += 1 |
| 2382 | end -= 1 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2383 | return _dec_from_triple(dup._sign, dup._int[:end], exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2384 | |
Facundo Batista | bd2fe83 | 2007-09-13 18:42:09 +0000 | [diff] [blame] | 2385 | def quantize(self, exp, rounding=None, context=None, watchexp=True): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2386 | """Quantize self so its exponent is the same as that of exp. |
| 2387 | |
| 2388 | Similar to self._rescale(exp._exp) but with error checking. |
| 2389 | """ |
Facundo Batista | bd2fe83 | 2007-09-13 18:42:09 +0000 | [diff] [blame] | 2390 | exp = _convert_other(exp, raiseit=True) |
| 2391 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2392 | if context is None: |
| 2393 | context = getcontext() |
| 2394 | if rounding is None: |
| 2395 | rounding = context.rounding |
| 2396 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2397 | if self._is_special or exp._is_special: |
| 2398 | ans = self._check_nans(exp, context) |
| 2399 | if ans: |
| 2400 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2401 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2402 | if exp._isinfinity() or self._isinfinity(): |
| 2403 | if exp._isinfinity() and self._isinfinity(): |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2404 | return Decimal(self) # if both are inf, it is OK |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2405 | return context._raise_error(InvalidOperation, |
| 2406 | 'quantize with one INF') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2407 | |
Facundo Batista | bd2fe83 | 2007-09-13 18:42:09 +0000 | [diff] [blame] | 2408 | # if we're not watching exponents, do a simple rescale |
| 2409 | if not watchexp: |
| 2410 | ans = self._rescale(exp._exp, rounding) |
| 2411 | # raise Inexact and Rounded where appropriate |
| 2412 | if ans._exp > self._exp: |
| 2413 | context._raise_error(Rounded) |
| 2414 | if ans != self: |
| 2415 | context._raise_error(Inexact) |
| 2416 | return ans |
| 2417 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2418 | # exp._exp should be between Etiny and Emax |
| 2419 | if not (context.Etiny() <= exp._exp <= context.Emax): |
| 2420 | return context._raise_error(InvalidOperation, |
| 2421 | 'target exponent out of bounds in quantize') |
| 2422 | |
| 2423 | if not self: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2424 | ans = _dec_from_triple(self._sign, '0', exp._exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2425 | return ans._fix(context) |
| 2426 | |
| 2427 | self_adjusted = self.adjusted() |
| 2428 | if self_adjusted > context.Emax: |
| 2429 | return context._raise_error(InvalidOperation, |
| 2430 | 'exponent of quantize result too large for current context') |
| 2431 | if self_adjusted - exp._exp + 1 > context.prec: |
| 2432 | return context._raise_error(InvalidOperation, |
| 2433 | 'quantize result has too many digits for current context') |
| 2434 | |
| 2435 | ans = self._rescale(exp._exp, rounding) |
| 2436 | if ans.adjusted() > context.Emax: |
| 2437 | return context._raise_error(InvalidOperation, |
| 2438 | 'exponent of quantize result too large for current context') |
| 2439 | if len(ans._int) > context.prec: |
| 2440 | return context._raise_error(InvalidOperation, |
| 2441 | 'quantize result has too many digits for current context') |
| 2442 | |
| 2443 | # raise appropriate flags |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2444 | if ans and ans.adjusted() < context.Emin: |
| 2445 | context._raise_error(Subnormal) |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 2446 | if ans._exp > self._exp: |
| 2447 | if ans != self: |
| 2448 | context._raise_error(Inexact) |
| 2449 | context._raise_error(Rounded) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2450 | |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 2451 | # call to fix takes care of any necessary folddown, and |
| 2452 | # signals Clamped if necessary |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2453 | ans = ans._fix(context) |
| 2454 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2455 | |
| 2456 | def same_quantum(self, other): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2457 | """Return True if self and other have the same exponent; otherwise |
| 2458 | return False. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2459 | |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2460 | If either operand is a special value, the following rules are used: |
| 2461 | * return True if both operands are infinities |
| 2462 | * return True if both operands are NaNs |
| 2463 | * otherwise, return False. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2464 | """ |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2465 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2466 | if self._is_special or other._is_special: |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2467 | return (self.is_nan() and other.is_nan() or |
| 2468 | self.is_infinite() and other.is_infinite()) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2469 | return self._exp == other._exp |
| 2470 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2471 | def _rescale(self, exp, rounding): |
| 2472 | """Rescale self so that the exponent is exp, either by padding with zeros |
| 2473 | or by truncating digits, using the given rounding mode. |
| 2474 | |
| 2475 | Specials are returned without change. This operation is |
| 2476 | quiet: it raises no flags, and uses no information from the |
| 2477 | context. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2478 | |
| 2479 | exp = exp to scale to (an integer) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2480 | rounding = rounding mode |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2481 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2482 | if self._is_special: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2483 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2484 | if not self: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2485 | return _dec_from_triple(self._sign, '0', exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2486 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2487 | if self._exp >= exp: |
| 2488 | # pad answer with zeros if necessary |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2489 | return _dec_from_triple(self._sign, |
| 2490 | self._int + '0'*(self._exp - exp), exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2491 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2492 | # too many digits; round and lose data. If self.adjusted() < |
| 2493 | # exp-1, replace self by 10**(exp-1) before rounding |
| 2494 | digits = len(self._int) + self._exp - exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2495 | if digits < 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2496 | self = _dec_from_triple(self._sign, '1', exp-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2497 | digits = 0 |
| 2498 | this_function = getattr(self, self._pick_rounding_function[rounding]) |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 2499 | changed = this_function(digits) |
| 2500 | coeff = self._int[:digits] or '0' |
| 2501 | if changed == 1: |
| 2502 | coeff = str(int(coeff)+1) |
| 2503 | return _dec_from_triple(self._sign, coeff, exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2504 | |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 2505 | def _round(self, places, rounding): |
| 2506 | """Round a nonzero, nonspecial Decimal to a fixed number of |
| 2507 | significant figures, using the given rounding mode. |
| 2508 | |
| 2509 | Infinities, NaNs and zeros are returned unaltered. |
| 2510 | |
| 2511 | This operation is quiet: it raises no flags, and uses no |
| 2512 | information from the context. |
| 2513 | |
| 2514 | """ |
| 2515 | if places <= 0: |
| 2516 | raise ValueError("argument should be at least 1 in _round") |
| 2517 | if self._is_special or not self: |
| 2518 | return Decimal(self) |
| 2519 | ans = self._rescale(self.adjusted()+1-places, rounding) |
| 2520 | # it can happen that the rescale alters the adjusted exponent; |
| 2521 | # for example when rounding 99.97 to 3 significant figures. |
| 2522 | # When this happens we end up with an extra 0 at the end of |
| 2523 | # the number; a second rescale fixes this. |
| 2524 | if ans.adjusted() != self.adjusted(): |
| 2525 | ans = ans._rescale(ans.adjusted()+1-places, rounding) |
| 2526 | return ans |
| 2527 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2528 | def to_integral_exact(self, rounding=None, context=None): |
| 2529 | """Rounds to a nearby integer. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2530 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2531 | If no rounding mode is specified, take the rounding mode from |
| 2532 | the context. This method raises the Rounded and Inexact flags |
| 2533 | when appropriate. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2534 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2535 | See also: to_integral_value, which does exactly the same as |
| 2536 | this method except that it doesn't raise Inexact or Rounded. |
| 2537 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2538 | if self._is_special: |
| 2539 | ans = self._check_nans(context=context) |
| 2540 | if ans: |
| 2541 | return ans |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2542 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2543 | if self._exp >= 0: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2544 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2545 | if not self: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2546 | return _dec_from_triple(self._sign, '0', 0) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2547 | if context is None: |
| 2548 | context = getcontext() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2549 | if rounding is None: |
| 2550 | rounding = context.rounding |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2551 | ans = self._rescale(0, rounding) |
| 2552 | if ans != self: |
| 2553 | context._raise_error(Inexact) |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 2554 | context._raise_error(Rounded) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2555 | return ans |
| 2556 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2557 | def to_integral_value(self, rounding=None, context=None): |
| 2558 | """Rounds to the nearest integer, without raising inexact, rounded.""" |
| 2559 | if context is None: |
| 2560 | context = getcontext() |
| 2561 | if rounding is None: |
| 2562 | rounding = context.rounding |
| 2563 | if self._is_special: |
| 2564 | ans = self._check_nans(context=context) |
| 2565 | if ans: |
| 2566 | return ans |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2567 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2568 | if self._exp >= 0: |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2569 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2570 | else: |
| 2571 | return self._rescale(0, rounding) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2572 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2573 | # the method name changed, but we provide also the old one, for compatibility |
| 2574 | to_integral = to_integral_value |
| 2575 | |
| 2576 | def sqrt(self, context=None): |
| 2577 | """Return the square root of self.""" |
Mark Dickinson | 3b24ccb | 2008-03-25 14:33:23 +0000 | [diff] [blame] | 2578 | if context is None: |
| 2579 | context = getcontext() |
| 2580 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2581 | if self._is_special: |
| 2582 | ans = self._check_nans(context=context) |
| 2583 | if ans: |
| 2584 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2585 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2586 | if self._isinfinity() and self._sign == 0: |
| 2587 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2588 | |
| 2589 | if not self: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2590 | # exponent = self._exp // 2. sqrt(-0) = -0 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2591 | ans = _dec_from_triple(self._sign, '0', self._exp // 2) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2592 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2593 | |
| 2594 | if self._sign == 1: |
| 2595 | return context._raise_error(InvalidOperation, 'sqrt(-x), x > 0') |
| 2596 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2597 | # At this point self represents a positive number. Let p be |
| 2598 | # the desired precision and express self in the form c*100**e |
| 2599 | # with c a positive real number and e an integer, c and e |
| 2600 | # being chosen so that 100**(p-1) <= c < 100**p. Then the |
| 2601 | # (exact) square root of self is sqrt(c)*10**e, and 10**(p-1) |
| 2602 | # <= sqrt(c) < 10**p, so the closest representable Decimal at |
| 2603 | # precision p is n*10**e where n = round_half_even(sqrt(c)), |
| 2604 | # the closest integer to sqrt(c) with the even integer chosen |
| 2605 | # in the case of a tie. |
| 2606 | # |
| 2607 | # To ensure correct rounding in all cases, we use the |
| 2608 | # following trick: we compute the square root to an extra |
| 2609 | # place (precision p+1 instead of precision p), rounding down. |
| 2610 | # Then, if the result is inexact and its last digit is 0 or 5, |
| 2611 | # we increase the last digit to 1 or 6 respectively; if it's |
| 2612 | # exact we leave the last digit alone. Now the final round to |
| 2613 | # p places (or fewer in the case of underflow) will round |
| 2614 | # correctly and raise the appropriate flags. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2615 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2616 | # use an extra digit of precision |
| 2617 | prec = context.prec+1 |
| 2618 | |
| 2619 | # write argument in the form c*100**e where e = self._exp//2 |
| 2620 | # is the 'ideal' exponent, to be used if the square root is |
| 2621 | # exactly representable. l is the number of 'digits' of c in |
| 2622 | # base 100, so that 100**(l-1) <= c < 100**l. |
| 2623 | op = _WorkRep(self) |
| 2624 | e = op.exp >> 1 |
| 2625 | if op.exp & 1: |
| 2626 | c = op.int * 10 |
| 2627 | l = (len(self._int) >> 1) + 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2628 | else: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2629 | c = op.int |
| 2630 | l = len(self._int)+1 >> 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2631 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2632 | # rescale so that c has exactly prec base 100 'digits' |
| 2633 | shift = prec-l |
| 2634 | if shift >= 0: |
| 2635 | c *= 100**shift |
| 2636 | exact = True |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2637 | else: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2638 | c, remainder = divmod(c, 100**-shift) |
| 2639 | exact = not remainder |
| 2640 | e -= shift |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 2641 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2642 | # find n = floor(sqrt(c)) using Newton's method |
| 2643 | n = 10**prec |
| 2644 | while True: |
| 2645 | q = c//n |
| 2646 | if n <= q: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2647 | break |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2648 | else: |
| 2649 | n = n + q >> 1 |
| 2650 | exact = exact and n*n == c |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2651 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2652 | if exact: |
| 2653 | # result is exact; rescale to use ideal exponent e |
| 2654 | if shift >= 0: |
| 2655 | # assert n % 10**shift == 0 |
| 2656 | n //= 10**shift |
| 2657 | else: |
| 2658 | n *= 10**-shift |
| 2659 | e += shift |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2660 | else: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2661 | # result is not exact; fix last digit as described above |
| 2662 | if n % 5 == 0: |
| 2663 | n += 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2664 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2665 | ans = _dec_from_triple(0, str(n), e) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2666 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2667 | # round, and fit to current context |
| 2668 | context = context._shallow_copy() |
| 2669 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 2670 | ans = ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2671 | context.rounding = rounding |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2672 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2673 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2674 | |
| 2675 | def max(self, other, context=None): |
| 2676 | """Returns the larger value. |
| 2677 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2678 | Like max(self, other) except if one is not a number, returns |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2679 | NaN (and signals if one is sNaN). Also rounds. |
| 2680 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2681 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2682 | |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2683 | if context is None: |
| 2684 | context = getcontext() |
| 2685 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2686 | if self._is_special or other._is_special: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2687 | # 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] | 2688 | # number is always returned |
| 2689 | sn = self._isnan() |
| 2690 | on = other._isnan() |
| 2691 | if sn or on: |
Facundo Batista | e29d435 | 2008-12-11 04:19:46 +0000 | [diff] [blame] | 2692 | if on == 1 and sn == 0: |
| 2693 | return self._fix(context) |
| 2694 | if sn == 1 and on == 0: |
| 2695 | return other._fix(context) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2696 | return self._check_nans(other, context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2697 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 2698 | c = self._cmp(other) |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2699 | if c == 0: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2700 | # If both operands are finite and equal in numerical value |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2701 | # then an ordering is applied: |
| 2702 | # |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2703 | # If the signs differ then max returns the operand with the |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2704 | # positive sign and min returns the operand with the negative sign |
| 2705 | # |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2706 | # 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] | 2707 | # the result. This is exactly the ordering used in compare_total. |
| 2708 | c = self.compare_total(other) |
| 2709 | |
| 2710 | if c == -1: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2711 | ans = other |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2712 | else: |
| 2713 | ans = self |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2714 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 2715 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2716 | |
| 2717 | def min(self, other, context=None): |
| 2718 | """Returns the smaller value. |
| 2719 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2720 | Like min(self, other) except if one is not a number, returns |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2721 | NaN (and signals if one is sNaN). Also rounds. |
| 2722 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2723 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2724 | |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 2725 | if context is None: |
| 2726 | context = getcontext() |
| 2727 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2728 | if self._is_special or other._is_special: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2729 | # 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] | 2730 | # number is always returned |
| 2731 | sn = self._isnan() |
| 2732 | on = other._isnan() |
| 2733 | if sn or on: |
Facundo Batista | e29d435 | 2008-12-11 04:19:46 +0000 | [diff] [blame] | 2734 | if on == 1 and sn == 0: |
| 2735 | return self._fix(context) |
| 2736 | if sn == 1 and on == 0: |
| 2737 | return other._fix(context) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2738 | return self._check_nans(other, context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2739 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 2740 | c = self._cmp(other) |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2741 | if c == 0: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2742 | c = self.compare_total(other) |
| 2743 | |
| 2744 | if c == -1: |
| 2745 | ans = self |
| 2746 | else: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2747 | ans = other |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2748 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 2749 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2750 | |
| 2751 | def _isinteger(self): |
| 2752 | """Returns whether self is an integer""" |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2753 | if self._is_special: |
| 2754 | return False |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2755 | if self._exp >= 0: |
| 2756 | return True |
| 2757 | rest = self._int[self._exp:] |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2758 | return rest == '0'*len(rest) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2759 | |
| 2760 | def _iseven(self): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2761 | """Returns True if self is even. Assumes self is an integer.""" |
| 2762 | if not self or self._exp > 0: |
| 2763 | return True |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2764 | return self._int[-1+self._exp] in '02468' |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2765 | |
| 2766 | def adjusted(self): |
| 2767 | """Return the adjusted exponent of self""" |
| 2768 | try: |
| 2769 | return self._exp + len(self._int) - 1 |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 2770 | # If NaN or Infinity, self._exp is string |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2771 | except TypeError: |
| 2772 | return 0 |
| 2773 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2774 | def canonical(self, context=None): |
| 2775 | """Returns the same Decimal object. |
| 2776 | |
| 2777 | As we do not have different encodings for the same number, the |
| 2778 | received object already is in its canonical form. |
| 2779 | """ |
| 2780 | return self |
| 2781 | |
| 2782 | def compare_signal(self, other, context=None): |
| 2783 | """Compares self to the other operand numerically. |
| 2784 | |
| 2785 | It's pretty much like compare(), but all NaNs signal, with signaling |
| 2786 | NaNs taking precedence over quiet NaNs. |
| 2787 | """ |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 2788 | other = _convert_other(other, raiseit = True) |
| 2789 | ans = self._compare_check_nans(other, context) |
| 2790 | if ans: |
| 2791 | return ans |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2792 | return self.compare(other, context=context) |
| 2793 | |
| 2794 | def compare_total(self, other): |
| 2795 | """Compares self to other using the abstract representations. |
| 2796 | |
| 2797 | This is not like the standard compare, which use their numerical |
| 2798 | value. Note that a total ordering is defined for all possible abstract |
| 2799 | representations. |
| 2800 | """ |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 2801 | other = _convert_other(other, raiseit=True) |
| 2802 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2803 | # if one is negative and the other is positive, it's easy |
| 2804 | if self._sign and not other._sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2805 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2806 | if not self._sign and other._sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2807 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2808 | sign = self._sign |
| 2809 | |
| 2810 | # let's handle both NaN types |
| 2811 | self_nan = self._isnan() |
| 2812 | other_nan = other._isnan() |
| 2813 | if self_nan or other_nan: |
| 2814 | if self_nan == other_nan: |
Mark Dickinson | 7a7739d | 2009-08-28 13:25:02 +0000 | [diff] [blame] | 2815 | # compare payloads as though they're integers |
| 2816 | self_key = len(self._int), self._int |
| 2817 | other_key = len(other._int), other._int |
| 2818 | if self_key < other_key: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2819 | if sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2820 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2821 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2822 | return _NegativeOne |
Mark Dickinson | 7a7739d | 2009-08-28 13:25:02 +0000 | [diff] [blame] | 2823 | if self_key > other_key: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2824 | if sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2825 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2826 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2827 | return _One |
| 2828 | return _Zero |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2829 | |
| 2830 | if sign: |
| 2831 | if self_nan == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2832 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2833 | if other_nan == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2834 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2835 | if self_nan == 2: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2836 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2837 | if other_nan == 2: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2838 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2839 | else: |
| 2840 | if self_nan == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2841 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2842 | if other_nan == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2843 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2844 | if self_nan == 2: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2845 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2846 | if other_nan == 2: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2847 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2848 | |
| 2849 | if self < other: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2850 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2851 | if self > other: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2852 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2853 | |
| 2854 | if self._exp < other._exp: |
| 2855 | if sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2856 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2857 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2858 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2859 | if self._exp > other._exp: |
| 2860 | if sign: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2861 | return _NegativeOne |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2862 | else: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2863 | return _One |
| 2864 | return _Zero |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2865 | |
| 2866 | |
| 2867 | def compare_total_mag(self, other): |
| 2868 | """Compares self to other using abstract repr., ignoring sign. |
| 2869 | |
| 2870 | Like compare_total, but with operand's sign ignored and assumed to be 0. |
| 2871 | """ |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 2872 | other = _convert_other(other, raiseit=True) |
| 2873 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2874 | s = self.copy_abs() |
| 2875 | o = other.copy_abs() |
| 2876 | return s.compare_total(o) |
| 2877 | |
| 2878 | def copy_abs(self): |
| 2879 | """Returns a copy with the sign set to 0. """ |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2880 | return _dec_from_triple(0, self._int, self._exp, self._is_special) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2881 | |
| 2882 | def copy_negate(self): |
| 2883 | """Returns a copy with the sign inverted.""" |
| 2884 | if self._sign: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2885 | return _dec_from_triple(0, self._int, self._exp, self._is_special) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2886 | else: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2887 | return _dec_from_triple(1, self._int, self._exp, self._is_special) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2888 | |
| 2889 | def copy_sign(self, other): |
| 2890 | """Returns self with the sign of other.""" |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 2891 | other = _convert_other(other, raiseit=True) |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2892 | return _dec_from_triple(other._sign, self._int, |
| 2893 | self._exp, self._is_special) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2894 | |
| 2895 | def exp(self, context=None): |
| 2896 | """Returns e ** self.""" |
| 2897 | |
| 2898 | if context is None: |
| 2899 | context = getcontext() |
| 2900 | |
| 2901 | # exp(NaN) = NaN |
| 2902 | ans = self._check_nans(context=context) |
| 2903 | if ans: |
| 2904 | return ans |
| 2905 | |
| 2906 | # exp(-Infinity) = 0 |
| 2907 | if self._isinfinity() == -1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2908 | return _Zero |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2909 | |
| 2910 | # exp(0) = 1 |
| 2911 | if not self: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 2912 | return _One |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2913 | |
| 2914 | # exp(Infinity) = Infinity |
| 2915 | if self._isinfinity() == 1: |
| 2916 | return Decimal(self) |
| 2917 | |
| 2918 | # the result is now guaranteed to be inexact (the true |
| 2919 | # mathematical result is transcendental). There's no need to |
| 2920 | # raise Rounded and Inexact here---they'll always be raised as |
| 2921 | # a result of the call to _fix. |
| 2922 | p = context.prec |
| 2923 | adj = self.adjusted() |
| 2924 | |
| 2925 | # we only need to do any computation for quite a small range |
| 2926 | # of adjusted exponents---for example, -29 <= adj <= 10 for |
| 2927 | # the default context. For smaller exponent the result is |
| 2928 | # indistinguishable from 1 at the given precision, while for |
| 2929 | # larger exponent the result either overflows or underflows. |
| 2930 | if self._sign == 0 and adj > len(str((context.Emax+1)*3)): |
| 2931 | # overflow |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2932 | ans = _dec_from_triple(0, '1', context.Emax+1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2933 | elif self._sign == 1 and adj > len(str((-context.Etiny()+1)*3)): |
| 2934 | # underflow to 0 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2935 | ans = _dec_from_triple(0, '1', context.Etiny()-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2936 | elif self._sign == 0 and adj < -p: |
| 2937 | # p+1 digits; final round will raise correct flags |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2938 | ans = _dec_from_triple(0, '1' + '0'*(p-1) + '1', -p) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2939 | elif self._sign == 1 and adj < -p-1: |
| 2940 | # p+1 digits; final round will raise correct flags |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2941 | ans = _dec_from_triple(0, '9'*(p+1), -p-1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2942 | # general case |
| 2943 | else: |
| 2944 | op = _WorkRep(self) |
| 2945 | c, e = op.int, op.exp |
| 2946 | if op.sign == 1: |
| 2947 | c = -c |
| 2948 | |
| 2949 | # compute correctly rounded result: increase precision by |
| 2950 | # 3 digits at a time until we get an unambiguously |
| 2951 | # roundable result |
| 2952 | extra = 3 |
| 2953 | while True: |
| 2954 | coeff, exp = _dexp(c, e, p+extra) |
| 2955 | if coeff % (5*10**(len(str(coeff))-p-1)): |
| 2956 | break |
| 2957 | extra += 3 |
| 2958 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 2959 | ans = _dec_from_triple(0, str(coeff), exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2960 | |
| 2961 | # at this stage, ans should round correctly with *any* |
| 2962 | # rounding mode, not just with ROUND_HALF_EVEN |
| 2963 | context = context._shallow_copy() |
| 2964 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
| 2965 | ans = ans._fix(context) |
| 2966 | context.rounding = rounding |
| 2967 | |
| 2968 | return ans |
| 2969 | |
| 2970 | def is_canonical(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2971 | """Return True if self is canonical; otherwise return False. |
| 2972 | |
| 2973 | Currently, the encoding of a Decimal instance is always |
| 2974 | canonical, so this method returns True for any Decimal. |
| 2975 | """ |
| 2976 | return True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2977 | |
| 2978 | def is_finite(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2979 | """Return True if self is finite; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2980 | |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2981 | A Decimal instance is considered finite if it is neither |
| 2982 | infinite nor a NaN. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2983 | """ |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2984 | return not self._is_special |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2985 | |
| 2986 | def is_infinite(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2987 | """Return True if self is infinite; otherwise return False.""" |
| 2988 | return self._exp == 'F' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2989 | |
| 2990 | def is_nan(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2991 | """Return True if self is a qNaN or sNaN; otherwise return False.""" |
| 2992 | return self._exp in ('n', 'N') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2993 | |
| 2994 | def is_normal(self, context=None): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 2995 | """Return True if self is a normal number; otherwise return False.""" |
| 2996 | if self._is_special or not self: |
| 2997 | return False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 2998 | if context is None: |
| 2999 | context = getcontext() |
Mark Dickinson | a7a52ab | 2009-10-20 13:33:03 +0000 | [diff] [blame] | 3000 | return context.Emin <= self.adjusted() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3001 | |
| 3002 | def is_qnan(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 3003 | """Return True if self is a quiet NaN; otherwise return False.""" |
| 3004 | return self._exp == 'n' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3005 | |
| 3006 | def is_signed(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 3007 | """Return True if self is negative; otherwise return False.""" |
| 3008 | return self._sign == 1 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3009 | |
| 3010 | def is_snan(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 3011 | """Return True if self is a signaling NaN; otherwise return False.""" |
| 3012 | return self._exp == 'N' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3013 | |
| 3014 | def is_subnormal(self, context=None): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 3015 | """Return True if self is subnormal; otherwise return False.""" |
| 3016 | if self._is_special or not self: |
| 3017 | return False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3018 | if context is None: |
| 3019 | context = getcontext() |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 3020 | return self.adjusted() < context.Emin |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3021 | |
| 3022 | def is_zero(self): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 3023 | """Return True if self is a zero; otherwise return False.""" |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3024 | return not self._is_special and self._int == '0' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3025 | |
| 3026 | def _ln_exp_bound(self): |
| 3027 | """Compute a lower bound for the adjusted exponent of self.ln(). |
| 3028 | In other words, compute r such that self.ln() >= 10**r. Assumes |
| 3029 | that self is finite and positive and that self != 1. |
| 3030 | """ |
| 3031 | |
| 3032 | # for 0.1 <= x <= 10 we use the inequalities 1-1/x <= ln(x) <= x-1 |
| 3033 | adj = self._exp + len(self._int) - 1 |
| 3034 | if adj >= 1: |
| 3035 | # argument >= 10; we use 23/10 = 2.3 as a lower bound for ln(10) |
| 3036 | return len(str(adj*23//10)) - 1 |
| 3037 | if adj <= -2: |
| 3038 | # argument <= 0.1 |
| 3039 | return len(str((-1-adj)*23//10)) - 1 |
| 3040 | op = _WorkRep(self) |
| 3041 | c, e = op.int, op.exp |
| 3042 | if adj == 0: |
| 3043 | # 1 < self < 10 |
| 3044 | num = str(c-10**-e) |
| 3045 | den = str(c) |
| 3046 | return len(num) - len(den) - (num < den) |
| 3047 | # adj == -1, 0.1 <= self < 1 |
| 3048 | return e + len(str(10**-e - c)) - 1 |
| 3049 | |
| 3050 | |
| 3051 | def ln(self, context=None): |
| 3052 | """Returns the natural (base e) logarithm of self.""" |
| 3053 | |
| 3054 | if context is None: |
| 3055 | context = getcontext() |
| 3056 | |
| 3057 | # ln(NaN) = NaN |
| 3058 | ans = self._check_nans(context=context) |
| 3059 | if ans: |
| 3060 | return ans |
| 3061 | |
| 3062 | # ln(0.0) == -Infinity |
| 3063 | if not self: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3064 | return _NegativeInfinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3065 | |
| 3066 | # ln(Infinity) = Infinity |
| 3067 | if self._isinfinity() == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3068 | return _Infinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3069 | |
| 3070 | # ln(1.0) == 0.0 |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3071 | if self == _One: |
| 3072 | return _Zero |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3073 | |
| 3074 | # ln(negative) raises InvalidOperation |
| 3075 | if self._sign == 1: |
| 3076 | return context._raise_error(InvalidOperation, |
| 3077 | 'ln of a negative value') |
| 3078 | |
| 3079 | # result is irrational, so necessarily inexact |
| 3080 | op = _WorkRep(self) |
| 3081 | c, e = op.int, op.exp |
| 3082 | p = context.prec |
| 3083 | |
| 3084 | # correctly rounded result: repeatedly increase precision by 3 |
| 3085 | # until we get an unambiguously roundable result |
| 3086 | places = p - self._ln_exp_bound() + 2 # at least p+3 places |
| 3087 | while True: |
| 3088 | coeff = _dlog(c, e, places) |
| 3089 | # assert len(str(abs(coeff)))-p >= 1 |
| 3090 | if coeff % (5*10**(len(str(abs(coeff)))-p-1)): |
| 3091 | break |
| 3092 | places += 3 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3093 | ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3094 | |
| 3095 | context = context._shallow_copy() |
| 3096 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
| 3097 | ans = ans._fix(context) |
| 3098 | context.rounding = rounding |
| 3099 | return ans |
| 3100 | |
| 3101 | def _log10_exp_bound(self): |
| 3102 | """Compute a lower bound for the adjusted exponent of self.log10(). |
| 3103 | In other words, find r such that self.log10() >= 10**r. |
| 3104 | Assumes that self is finite and positive and that self != 1. |
| 3105 | """ |
| 3106 | |
| 3107 | # For x >= 10 or x < 0.1 we only need a bound on the integer |
| 3108 | # part of log10(self), and this comes directly from the |
| 3109 | # exponent of x. For 0.1 <= x <= 10 we use the inequalities |
| 3110 | # 1-1/x <= log(x) <= x-1. If x > 1 we have |log10(x)| > |
| 3111 | # (1-1/x)/2.31 > 0. If x < 1 then |log10(x)| > (1-x)/2.31 > 0 |
| 3112 | |
| 3113 | adj = self._exp + len(self._int) - 1 |
| 3114 | if adj >= 1: |
| 3115 | # self >= 10 |
| 3116 | return len(str(adj))-1 |
| 3117 | if adj <= -2: |
| 3118 | # self < 0.1 |
| 3119 | return len(str(-1-adj))-1 |
| 3120 | op = _WorkRep(self) |
| 3121 | c, e = op.int, op.exp |
| 3122 | if adj == 0: |
| 3123 | # 1 < self < 10 |
| 3124 | num = str(c-10**-e) |
| 3125 | den = str(231*c) |
| 3126 | return len(num) - len(den) - (num < den) + 2 |
| 3127 | # adj == -1, 0.1 <= self < 1 |
| 3128 | num = str(10**-e-c) |
| 3129 | return len(num) + e - (num < "231") - 1 |
| 3130 | |
| 3131 | def log10(self, context=None): |
| 3132 | """Returns the base 10 logarithm of self.""" |
| 3133 | |
| 3134 | if context is None: |
| 3135 | context = getcontext() |
| 3136 | |
| 3137 | # log10(NaN) = NaN |
| 3138 | ans = self._check_nans(context=context) |
| 3139 | if ans: |
| 3140 | return ans |
| 3141 | |
| 3142 | # log10(0.0) == -Infinity |
| 3143 | if not self: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3144 | return _NegativeInfinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3145 | |
| 3146 | # log10(Infinity) = Infinity |
| 3147 | if self._isinfinity() == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3148 | return _Infinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3149 | |
| 3150 | # log10(negative or -Infinity) raises InvalidOperation |
| 3151 | if self._sign == 1: |
| 3152 | return context._raise_error(InvalidOperation, |
| 3153 | 'log10 of a negative value') |
| 3154 | |
| 3155 | # log10(10**n) = n |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3156 | 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] | 3157 | # answer may need rounding |
| 3158 | ans = Decimal(self._exp + len(self._int) - 1) |
| 3159 | else: |
| 3160 | # result is irrational, so necessarily inexact |
| 3161 | op = _WorkRep(self) |
| 3162 | c, e = op.int, op.exp |
| 3163 | p = context.prec |
| 3164 | |
| 3165 | # correctly rounded result: repeatedly increase precision |
| 3166 | # until result is unambiguously roundable |
| 3167 | places = p-self._log10_exp_bound()+2 |
| 3168 | while True: |
| 3169 | coeff = _dlog10(c, e, places) |
| 3170 | # assert len(str(abs(coeff)))-p >= 1 |
| 3171 | if coeff % (5*10**(len(str(abs(coeff)))-p-1)): |
| 3172 | break |
| 3173 | places += 3 |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3174 | ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3175 | |
| 3176 | context = context._shallow_copy() |
| 3177 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
| 3178 | ans = ans._fix(context) |
| 3179 | context.rounding = rounding |
| 3180 | return ans |
| 3181 | |
| 3182 | def logb(self, context=None): |
| 3183 | """ Returns the exponent of the magnitude of self's MSD. |
| 3184 | |
| 3185 | The result is the integer which is the exponent of the magnitude |
| 3186 | of the most significant digit of self (as though it were truncated |
| 3187 | to a single digit while maintaining the value of that digit and |
| 3188 | without limiting the resulting exponent). |
| 3189 | """ |
| 3190 | # logb(NaN) = NaN |
| 3191 | ans = self._check_nans(context=context) |
| 3192 | if ans: |
| 3193 | return ans |
| 3194 | |
| 3195 | if context is None: |
| 3196 | context = getcontext() |
| 3197 | |
| 3198 | # logb(+/-Inf) = +Inf |
| 3199 | if self._isinfinity(): |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3200 | return _Infinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3201 | |
| 3202 | # logb(0) = -Inf, DivisionByZero |
| 3203 | if not self: |
Facundo Batista | cce8df2 | 2007-09-18 16:53:18 +0000 | [diff] [blame] | 3204 | return context._raise_error(DivisionByZero, 'logb(0)', 1) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3205 | |
| 3206 | # otherwise, simply return the adjusted exponent of self, as a |
| 3207 | # Decimal. Note that no attempt is made to fit the result |
| 3208 | # into the current context. |
Mark Dickinson | 15ae41c | 2009-10-07 19:22:05 +0000 | [diff] [blame] | 3209 | ans = Decimal(self.adjusted()) |
| 3210 | return ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3211 | |
| 3212 | def _islogical(self): |
| 3213 | """Return True if self is a logical operand. |
| 3214 | |
Andrew M. Kuchling | c8acc88 | 2008-01-16 00:32:03 +0000 | [diff] [blame] | 3215 | 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] | 3216 | an exponent of 0, and a coefficient whose digits must all be |
| 3217 | either 0 or 1. |
| 3218 | """ |
| 3219 | if self._sign != 0 or self._exp != 0: |
| 3220 | return False |
| 3221 | for dig in self._int: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3222 | if dig not in '01': |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3223 | return False |
| 3224 | return True |
| 3225 | |
| 3226 | def _fill_logical(self, context, opa, opb): |
| 3227 | dif = context.prec - len(opa) |
| 3228 | if dif > 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3229 | opa = '0'*dif + opa |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3230 | elif dif < 0: |
| 3231 | opa = opa[-context.prec:] |
| 3232 | dif = context.prec - len(opb) |
| 3233 | if dif > 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3234 | opb = '0'*dif + opb |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3235 | elif dif < 0: |
| 3236 | opb = opb[-context.prec:] |
| 3237 | return opa, opb |
| 3238 | |
| 3239 | def logical_and(self, other, context=None): |
| 3240 | """Applies an 'and' operation between self and other's digits.""" |
| 3241 | if context is None: |
| 3242 | context = getcontext() |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3243 | |
| 3244 | other = _convert_other(other, raiseit=True) |
| 3245 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3246 | if not self._islogical() or not other._islogical(): |
| 3247 | return context._raise_error(InvalidOperation) |
| 3248 | |
| 3249 | # fill to context.prec |
| 3250 | (opa, opb) = self._fill_logical(context, self._int, other._int) |
| 3251 | |
| 3252 | # make the operation, and clean starting zeroes |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3253 | result = "".join([str(int(a)&int(b)) for a,b in zip(opa,opb)]) |
| 3254 | return _dec_from_triple(0, result.lstrip('0') or '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3255 | |
| 3256 | def logical_invert(self, context=None): |
| 3257 | """Invert all its digits.""" |
| 3258 | if context is None: |
| 3259 | context = getcontext() |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3260 | return self.logical_xor(_dec_from_triple(0,'1'*context.prec,0), |
| 3261 | context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3262 | |
| 3263 | def logical_or(self, other, context=None): |
| 3264 | """Applies an 'or' operation between self and other's digits.""" |
| 3265 | if context is None: |
| 3266 | context = getcontext() |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3267 | |
| 3268 | other = _convert_other(other, raiseit=True) |
| 3269 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3270 | if not self._islogical() or not other._islogical(): |
| 3271 | return context._raise_error(InvalidOperation) |
| 3272 | |
| 3273 | # fill to context.prec |
| 3274 | (opa, opb) = self._fill_logical(context, self._int, other._int) |
| 3275 | |
| 3276 | # make the operation, and clean starting zeroes |
Mark Dickinson | 65808ff | 2009-01-04 21:22:02 +0000 | [diff] [blame] | 3277 | 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] | 3278 | return _dec_from_triple(0, result.lstrip('0') or '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3279 | |
| 3280 | def logical_xor(self, other, context=None): |
| 3281 | """Applies an 'xor' operation between self and other's digits.""" |
| 3282 | if context is None: |
| 3283 | context = getcontext() |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3284 | |
| 3285 | other = _convert_other(other, raiseit=True) |
| 3286 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3287 | if not self._islogical() or not other._islogical(): |
| 3288 | return context._raise_error(InvalidOperation) |
| 3289 | |
| 3290 | # fill to context.prec |
| 3291 | (opa, opb) = self._fill_logical(context, self._int, other._int) |
| 3292 | |
| 3293 | # make the operation, and clean starting zeroes |
Mark Dickinson | 65808ff | 2009-01-04 21:22:02 +0000 | [diff] [blame] | 3294 | 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] | 3295 | return _dec_from_triple(0, result.lstrip('0') or '0', 0) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3296 | |
| 3297 | def max_mag(self, other, context=None): |
| 3298 | """Compares the values numerically with their sign ignored.""" |
| 3299 | other = _convert_other(other, raiseit=True) |
| 3300 | |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 3301 | if context is None: |
| 3302 | context = getcontext() |
| 3303 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3304 | if self._is_special or other._is_special: |
| 3305 | # If one operand is a quiet NaN and the other is number, then the |
| 3306 | # number is always returned |
| 3307 | sn = self._isnan() |
| 3308 | on = other._isnan() |
| 3309 | if sn or on: |
Facundo Batista | e29d435 | 2008-12-11 04:19:46 +0000 | [diff] [blame] | 3310 | if on == 1 and sn == 0: |
| 3311 | return self._fix(context) |
| 3312 | if sn == 1 and on == 0: |
| 3313 | return other._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3314 | return self._check_nans(other, context) |
| 3315 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 3316 | c = self.copy_abs()._cmp(other.copy_abs()) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3317 | if c == 0: |
| 3318 | c = self.compare_total(other) |
| 3319 | |
| 3320 | if c == -1: |
| 3321 | ans = other |
| 3322 | else: |
| 3323 | ans = self |
| 3324 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 3325 | return ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3326 | |
| 3327 | def min_mag(self, other, context=None): |
| 3328 | """Compares the values numerically with their sign ignored.""" |
| 3329 | other = _convert_other(other, raiseit=True) |
| 3330 | |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 3331 | if context is None: |
| 3332 | context = getcontext() |
| 3333 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3334 | if self._is_special or other._is_special: |
| 3335 | # If one operand is a quiet NaN and the other is number, then the |
| 3336 | # number is always returned |
| 3337 | sn = self._isnan() |
| 3338 | on = other._isnan() |
| 3339 | if sn or on: |
Facundo Batista | e29d435 | 2008-12-11 04:19:46 +0000 | [diff] [blame] | 3340 | if on == 1 and sn == 0: |
| 3341 | return self._fix(context) |
| 3342 | if sn == 1 and on == 0: |
| 3343 | return other._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3344 | return self._check_nans(other, context) |
| 3345 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 3346 | c = self.copy_abs()._cmp(other.copy_abs()) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3347 | if c == 0: |
| 3348 | c = self.compare_total(other) |
| 3349 | |
| 3350 | if c == -1: |
| 3351 | ans = self |
| 3352 | else: |
| 3353 | ans = other |
| 3354 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 3355 | return ans._fix(context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3356 | |
| 3357 | def next_minus(self, context=None): |
| 3358 | """Returns the largest representable number smaller than itself.""" |
| 3359 | if context is None: |
| 3360 | context = getcontext() |
| 3361 | |
| 3362 | ans = self._check_nans(context=context) |
| 3363 | if ans: |
| 3364 | return ans |
| 3365 | |
| 3366 | if self._isinfinity() == -1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3367 | return _NegativeInfinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3368 | if self._isinfinity() == 1: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3369 | return _dec_from_triple(0, '9'*context.prec, context.Etop()) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3370 | |
| 3371 | context = context.copy() |
| 3372 | context._set_rounding(ROUND_FLOOR) |
| 3373 | context._ignore_all_flags() |
| 3374 | new_self = self._fix(context) |
| 3375 | if new_self != self: |
| 3376 | return new_self |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3377 | return self.__sub__(_dec_from_triple(0, '1', context.Etiny()-1), |
| 3378 | context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3379 | |
| 3380 | def next_plus(self, context=None): |
| 3381 | """Returns the smallest representable number larger than itself.""" |
| 3382 | if context is None: |
| 3383 | context = getcontext() |
| 3384 | |
| 3385 | ans = self._check_nans(context=context) |
| 3386 | if ans: |
| 3387 | return ans |
| 3388 | |
| 3389 | if self._isinfinity() == 1: |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 3390 | return _Infinity |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3391 | if self._isinfinity() == -1: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3392 | return _dec_from_triple(1, '9'*context.prec, context.Etop()) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3393 | |
| 3394 | context = context.copy() |
| 3395 | context._set_rounding(ROUND_CEILING) |
| 3396 | context._ignore_all_flags() |
| 3397 | new_self = self._fix(context) |
| 3398 | if new_self != self: |
| 3399 | return new_self |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3400 | return self.__add__(_dec_from_triple(0, '1', context.Etiny()-1), |
| 3401 | context) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3402 | |
| 3403 | def next_toward(self, other, context=None): |
| 3404 | """Returns the number closest to self, in the direction towards other. |
| 3405 | |
| 3406 | The result is the closest representable number to self |
| 3407 | (excluding self) that is in the direction towards other, |
| 3408 | unless both have the same value. If the two operands are |
| 3409 | numerically equal, then the result is a copy of self with the |
| 3410 | sign set to be the same as the sign of other. |
| 3411 | """ |
| 3412 | other = _convert_other(other, raiseit=True) |
| 3413 | |
| 3414 | if context is None: |
| 3415 | context = getcontext() |
| 3416 | |
| 3417 | ans = self._check_nans(other, context) |
| 3418 | if ans: |
| 3419 | return ans |
| 3420 | |
Mark Dickinson | 2fc9263 | 2008-02-06 22:10:50 +0000 | [diff] [blame] | 3421 | comparison = self._cmp(other) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3422 | if comparison == 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3423 | return self.copy_sign(other) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3424 | |
| 3425 | if comparison == -1: |
| 3426 | ans = self.next_plus(context) |
| 3427 | else: # comparison == 1 |
| 3428 | ans = self.next_minus(context) |
| 3429 | |
| 3430 | # decide which flags to raise using value of ans |
| 3431 | if ans._isinfinity(): |
| 3432 | context._raise_error(Overflow, |
| 3433 | 'Infinite result from next_toward', |
| 3434 | ans._sign) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3435 | context._raise_error(Inexact) |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 3436 | context._raise_error(Rounded) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3437 | elif ans.adjusted() < context.Emin: |
| 3438 | context._raise_error(Underflow) |
| 3439 | context._raise_error(Subnormal) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3440 | context._raise_error(Inexact) |
Mark Dickinson | 4f96f5f | 2010-05-04 14:25:50 +0000 | [diff] [blame] | 3441 | context._raise_error(Rounded) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3442 | # if precision == 1 then we don't raise Clamped for a |
| 3443 | # result 0E-Etiny. |
| 3444 | if not ans: |
| 3445 | context._raise_error(Clamped) |
| 3446 | |
| 3447 | return ans |
| 3448 | |
| 3449 | def number_class(self, context=None): |
| 3450 | """Returns an indication of the class of self. |
| 3451 | |
| 3452 | The class is one of the following strings: |
Facundo Batista | 0f5e7bf | 2007-12-19 12:53:01 +0000 | [diff] [blame] | 3453 | sNaN |
| 3454 | NaN |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3455 | -Infinity |
| 3456 | -Normal |
| 3457 | -Subnormal |
| 3458 | -Zero |
| 3459 | +Zero |
| 3460 | +Subnormal |
| 3461 | +Normal |
| 3462 | +Infinity |
| 3463 | """ |
| 3464 | if self.is_snan(): |
| 3465 | return "sNaN" |
| 3466 | if self.is_qnan(): |
| 3467 | return "NaN" |
| 3468 | inf = self._isinfinity() |
| 3469 | if inf == 1: |
| 3470 | return "+Infinity" |
| 3471 | if inf == -1: |
| 3472 | return "-Infinity" |
| 3473 | if self.is_zero(): |
| 3474 | if self._sign: |
| 3475 | return "-Zero" |
| 3476 | else: |
| 3477 | return "+Zero" |
| 3478 | if context is None: |
| 3479 | context = getcontext() |
| 3480 | if self.is_subnormal(context=context): |
| 3481 | if self._sign: |
| 3482 | return "-Subnormal" |
| 3483 | else: |
| 3484 | return "+Subnormal" |
| 3485 | # just a normal, regular, boring number, :) |
| 3486 | if self._sign: |
| 3487 | return "-Normal" |
| 3488 | else: |
| 3489 | return "+Normal" |
| 3490 | |
| 3491 | def radix(self): |
| 3492 | """Just returns 10, as this is Decimal, :)""" |
| 3493 | return Decimal(10) |
| 3494 | |
| 3495 | def rotate(self, other, context=None): |
| 3496 | """Returns a rotated copy of self, value-of-other times.""" |
| 3497 | if context is None: |
| 3498 | context = getcontext() |
| 3499 | |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3500 | other = _convert_other(other, raiseit=True) |
| 3501 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3502 | ans = self._check_nans(other, context) |
| 3503 | if ans: |
| 3504 | return ans |
| 3505 | |
| 3506 | if other._exp != 0: |
| 3507 | return context._raise_error(InvalidOperation) |
| 3508 | if not (-context.prec <= int(other) <= context.prec): |
| 3509 | return context._raise_error(InvalidOperation) |
| 3510 | |
| 3511 | if self._isinfinity(): |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 3512 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3513 | |
| 3514 | # get values, pad if necessary |
| 3515 | torot = int(other) |
| 3516 | rotdig = self._int |
| 3517 | topad = context.prec - len(rotdig) |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3518 | if topad > 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3519 | rotdig = '0'*topad + rotdig |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3520 | elif topad < 0: |
| 3521 | rotdig = rotdig[-topad:] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3522 | |
| 3523 | # let's rotate! |
| 3524 | rotated = rotdig[torot:] + rotdig[:torot] |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3525 | return _dec_from_triple(self._sign, |
| 3526 | rotated.lstrip('0') or '0', self._exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3527 | |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3528 | def scaleb(self, other, context=None): |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3529 | """Returns self operand after adding the second value to its exp.""" |
| 3530 | if context is None: |
| 3531 | context = getcontext() |
| 3532 | |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3533 | other = _convert_other(other, raiseit=True) |
| 3534 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3535 | ans = self._check_nans(other, context) |
| 3536 | if ans: |
| 3537 | return ans |
| 3538 | |
| 3539 | if other._exp != 0: |
| 3540 | return context._raise_error(InvalidOperation) |
| 3541 | liminf = -2 * (context.Emax + context.prec) |
| 3542 | limsup = 2 * (context.Emax + context.prec) |
| 3543 | if not (liminf <= int(other) <= limsup): |
| 3544 | return context._raise_error(InvalidOperation) |
| 3545 | |
| 3546 | if self._isinfinity(): |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 3547 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3548 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3549 | d = _dec_from_triple(self._sign, self._int, self._exp + int(other)) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3550 | d = d._fix(context) |
| 3551 | return d |
| 3552 | |
| 3553 | def shift(self, other, context=None): |
| 3554 | """Returns a shifted copy of self, value-of-other times.""" |
| 3555 | if context is None: |
| 3556 | context = getcontext() |
| 3557 | |
Mark Dickinson | 0c67312 | 2009-10-29 12:04:00 +0000 | [diff] [blame] | 3558 | other = _convert_other(other, raiseit=True) |
| 3559 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3560 | ans = self._check_nans(other, context) |
| 3561 | if ans: |
| 3562 | return ans |
| 3563 | |
| 3564 | if other._exp != 0: |
| 3565 | return context._raise_error(InvalidOperation) |
| 3566 | if not (-context.prec <= int(other) <= context.prec): |
| 3567 | return context._raise_error(InvalidOperation) |
| 3568 | |
| 3569 | if self._isinfinity(): |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 3570 | return Decimal(self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3571 | |
| 3572 | # get values, pad if necessary |
| 3573 | torot = int(other) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3574 | rotdig = self._int |
| 3575 | topad = context.prec - len(rotdig) |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3576 | if topad > 0: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3577 | rotdig = '0'*topad + rotdig |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3578 | elif topad < 0: |
| 3579 | rotdig = rotdig[-topad:] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3580 | |
| 3581 | # let's shift! |
| 3582 | if torot < 0: |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3583 | shifted = rotdig[:torot] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3584 | else: |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3585 | shifted = rotdig + '0'*torot |
| 3586 | shifted = shifted[-context.prec:] |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3587 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3588 | return _dec_from_triple(self._sign, |
Mark Dickinson | 6f39001 | 2009-10-29 12:11:18 +0000 | [diff] [blame] | 3589 | shifted.lstrip('0') or '0', self._exp) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3590 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3591 | # Support for pickling, copy, and deepcopy |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3592 | def __reduce__(self): |
| 3593 | return (self.__class__, (str(self),)) |
| 3594 | |
| 3595 | def __copy__(self): |
Benjamin Peterson | 28e369a | 2010-01-25 03:58:21 +0000 | [diff] [blame] | 3596 | if type(self) is Decimal: |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 3597 | return self # I'm immutable; therefore I am my own clone |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3598 | return self.__class__(str(self)) |
| 3599 | |
| 3600 | def __deepcopy__(self, memo): |
Benjamin Peterson | 28e369a | 2010-01-25 03:58:21 +0000 | [diff] [blame] | 3601 | if type(self) is Decimal: |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 3602 | return self # My components are also immutable |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3603 | return self.__class__(str(self)) |
| 3604 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3605 | # PEP 3101 support. the _localeconv keyword argument should be |
| 3606 | # considered private: it's provided for ease of testing only. |
| 3607 | def __format__(self, specifier, context=None, _localeconv=None): |
Mark Dickinson | f4da777 | 2008-02-29 03:29:17 +0000 | [diff] [blame] | 3608 | """Format a Decimal instance according to the given specifier. |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3609 | |
| 3610 | The specifier should be a standard format specifier, with the |
| 3611 | form described in PEP 3101. Formatting types 'e', 'E', 'f', |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3612 | 'F', 'g', 'G', 'n' and '%' are supported. If the formatting |
| 3613 | type is omitted it defaults to 'g' or 'G', depending on the |
| 3614 | value of context.capitals. |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3615 | """ |
| 3616 | |
| 3617 | # Note: PEP 3101 says that if the type is not present then |
| 3618 | # there should be at least one digit after the decimal point. |
| 3619 | # We take the liberty of ignoring this requirement for |
| 3620 | # Decimal---it's presumably there to make sure that |
| 3621 | # format(float, '') behaves similarly to str(float). |
| 3622 | if context is None: |
| 3623 | context = getcontext() |
| 3624 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3625 | spec = _parse_format_specifier(specifier, _localeconv=_localeconv) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3626 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3627 | # special values don't care about the type or precision |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3628 | if self._is_special: |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3629 | sign = _format_sign(self._sign, spec) |
| 3630 | body = str(self.copy_abs()) |
| 3631 | return _format_align(sign, body, spec) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3632 | |
| 3633 | # a type of None defaults to 'g' or 'G', depending on context |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3634 | if spec['type'] is None: |
| 3635 | spec['type'] = ['g', 'G'][context.capitals] |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3636 | |
| 3637 | # if type is '%', adjust exponent of self accordingly |
| 3638 | if spec['type'] == '%': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3639 | self = _dec_from_triple(self._sign, self._int, self._exp+2) |
| 3640 | |
| 3641 | # round if necessary, taking rounding mode from the context |
| 3642 | rounding = context.rounding |
| 3643 | precision = spec['precision'] |
| 3644 | if precision is not None: |
| 3645 | if spec['type'] in 'eE': |
| 3646 | self = self._round(precision+1, rounding) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3647 | elif spec['type'] in 'fF%': |
| 3648 | self = self._rescale(-precision, rounding) |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3649 | elif spec['type'] in 'gG' and len(self._int) > precision: |
| 3650 | self = self._round(precision, rounding) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3651 | # special case: zeros with a positive exponent can't be |
| 3652 | # represented in fixed point; rescale them to 0e0. |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3653 | if not self and self._exp > 0 and spec['type'] in 'fF%': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3654 | self = self._rescale(0, rounding) |
| 3655 | |
| 3656 | # figure out placement of the decimal point |
| 3657 | leftdigits = self._exp + len(self._int) |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3658 | if spec['type'] in 'eE': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3659 | if not self and precision is not None: |
| 3660 | dotplace = 1 - precision |
| 3661 | else: |
| 3662 | dotplace = 1 |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3663 | elif spec['type'] in 'fF%': |
| 3664 | dotplace = leftdigits |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3665 | elif spec['type'] in 'gG': |
| 3666 | if self._exp <= 0 and leftdigits > -6: |
| 3667 | dotplace = leftdigits |
| 3668 | else: |
| 3669 | dotplace = 1 |
| 3670 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3671 | # find digits before and after decimal point, and get exponent |
| 3672 | if dotplace < 0: |
| 3673 | intpart = '0' |
| 3674 | fracpart = '0'*(-dotplace) + self._int |
| 3675 | elif dotplace > len(self._int): |
| 3676 | intpart = self._int + '0'*(dotplace-len(self._int)) |
| 3677 | fracpart = '' |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3678 | else: |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3679 | intpart = self._int[:dotplace] or '0' |
| 3680 | fracpart = self._int[dotplace:] |
| 3681 | exp = leftdigits-dotplace |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3682 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 3683 | # done with the decimal-specific stuff; hand over the rest |
| 3684 | # of the formatting to the _format_number function |
| 3685 | return _format_number(self._sign, intpart, fracpart, exp, spec) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 3686 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 3687 | def _dec_from_triple(sign, coefficient, exponent, special=False): |
| 3688 | """Create a decimal instance directly, without any validation, |
| 3689 | normalization (e.g. removal of leading zeros) or argument |
| 3690 | conversion. |
| 3691 | |
| 3692 | This function is for *internal use only*. |
| 3693 | """ |
| 3694 | |
| 3695 | self = object.__new__(Decimal) |
| 3696 | self._sign = sign |
| 3697 | self._int = coefficient |
| 3698 | self._exp = exponent |
| 3699 | self._is_special = special |
| 3700 | |
| 3701 | return self |
| 3702 | |
Raymond Hettinger | 2c8585b | 2009-02-03 03:37:03 +0000 | [diff] [blame] | 3703 | # Register Decimal as a kind of Number (an abstract base class). |
| 3704 | # However, do not register it as Real (because Decimals are not |
| 3705 | # interoperable with floats). |
| 3706 | _numbers.Number.register(Decimal) |
| 3707 | |
| 3708 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3709 | ##### Context class ####################################################### |
Raymond Hettinger | d9c0a7a | 2004-07-03 10:02:28 +0000 | [diff] [blame] | 3710 | |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 3711 | |
| 3712 | # get rounding method function: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3713 | rounding_functions = [name for name in Decimal.__dict__.keys() |
| 3714 | if name.startswith('_round_')] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3715 | for name in rounding_functions: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3716 | # 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] | 3717 | globalname = name[1:].upper() |
| 3718 | val = globals()[globalname] |
| 3719 | Decimal._pick_rounding_function[val] = name |
| 3720 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3721 | del name, val, globalname, rounding_functions |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3722 | |
Nick Coghlan | ced1218 | 2006-09-02 03:54:17 +0000 | [diff] [blame] | 3723 | class _ContextManager(object): |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 3724 | """Context manager class to support localcontext(). |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3725 | |
Nick Coghlan | ced1218 | 2006-09-02 03:54:17 +0000 | [diff] [blame] | 3726 | Sets a copy of the supplied context in __enter__() and restores |
Nick Coghlan | 8b6999b | 2006-08-31 12:00:43 +0000 | [diff] [blame] | 3727 | the previous decimal context in __exit__() |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3728 | """ |
| 3729 | def __init__(self, new_context): |
Nick Coghlan | ced1218 | 2006-09-02 03:54:17 +0000 | [diff] [blame] | 3730 | self.new_context = new_context.copy() |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3731 | def __enter__(self): |
| 3732 | self.saved_context = getcontext() |
| 3733 | setcontext(self.new_context) |
| 3734 | return self.new_context |
| 3735 | def __exit__(self, t, v, tb): |
| 3736 | setcontext(self.saved_context) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3737 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3738 | class Context(object): |
| 3739 | """Contains the context for a Decimal instance. |
| 3740 | |
| 3741 | Contains: |
| 3742 | prec - precision (for use in rounding, division, square roots..) |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3743 | rounding - rounding type (how you round) |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3744 | traps - If traps[exception] = 1, then the exception is |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3745 | raised when it is caused. Otherwise, a value is |
| 3746 | substituted in. |
Mark Dickinson | 1840c1a | 2008-05-03 18:23:14 +0000 | [diff] [blame] | 3747 | flags - When an exception is caused, flags[exception] is set. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3748 | (Whether or not the trap_enabler is set) |
| 3749 | Should be reset by user of Decimal instance. |
Raymond Hettinger | 0ea241e | 2004-07-04 13:53:24 +0000 | [diff] [blame] | 3750 | Emin - Minimum exponent |
| 3751 | Emax - Maximum exponent |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3752 | capitals - If 1, 1*10^1 is printed as 1E+1. |
| 3753 | If 0, printed as 1e1 |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 3754 | _clamp - If 1, change exponents if too high (Default 0) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3755 | """ |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3756 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3757 | def __init__(self, prec=None, rounding=None, |
Raymond Hettinger | abf8a56 | 2004-10-12 09:12:16 +0000 | [diff] [blame] | 3758 | traps=None, flags=None, |
Raymond Hettinger | 0ea241e | 2004-07-04 13:53:24 +0000 | [diff] [blame] | 3759 | Emin=None, Emax=None, |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 3760 | capitals=None, _clamp=0, |
Raymond Hettinger | abf8a56 | 2004-10-12 09:12:16 +0000 | [diff] [blame] | 3761 | _ignored_flags=None): |
Mark Dickinson | 9b9e125 | 2010-07-08 21:22:54 +0000 | [diff] [blame] | 3762 | # Set defaults; for everything except flags and _ignored_flags, |
| 3763 | # inherit from DefaultContext. |
| 3764 | try: |
| 3765 | dc = DefaultContext |
| 3766 | except NameError: |
| 3767 | pass |
| 3768 | |
| 3769 | self.prec = prec if prec is not None else dc.prec |
| 3770 | self.rounding = rounding if rounding is not None else dc.rounding |
| 3771 | self.Emin = Emin if Emin is not None else dc.Emin |
| 3772 | self.Emax = Emax if Emax is not None else dc.Emax |
| 3773 | self.capitals = capitals if capitals is not None else dc.capitals |
| 3774 | self._clamp = _clamp if _clamp is not None else dc._clamp |
| 3775 | |
Raymond Hettinger | abf8a56 | 2004-10-12 09:12:16 +0000 | [diff] [blame] | 3776 | if _ignored_flags is None: |
Mark Dickinson | 9b9e125 | 2010-07-08 21:22:54 +0000 | [diff] [blame] | 3777 | self._ignored_flags = [] |
| 3778 | else: |
| 3779 | self._ignored_flags = _ignored_flags |
| 3780 | |
| 3781 | if traps is None: |
| 3782 | self.traps = dc.traps.copy() |
| 3783 | elif not isinstance(traps, dict): |
| 3784 | self.traps = dict((s, int(s in traps)) for s in _signals) |
| 3785 | else: |
| 3786 | self.traps = traps |
| 3787 | |
| 3788 | if flags is None: |
| 3789 | self.flags = dict.fromkeys(_signals, 0) |
| 3790 | elif not isinstance(flags, dict): |
| 3791 | self.flags = dict((s, int(s in flags)) for s in _signals) |
| 3792 | else: |
| 3793 | self.flags = flags |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3794 | |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3795 | def __repr__(self): |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3796 | """Show the current context.""" |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3797 | s = [] |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3798 | s.append('Context(prec=%(prec)d, rounding=%(rounding)s, ' |
| 3799 | 'Emin=%(Emin)d, Emax=%(Emax)d, capitals=%(capitals)d' |
| 3800 | % vars(self)) |
| 3801 | names = [f.__name__ for f, v in self.flags.items() if v] |
| 3802 | s.append('flags=[' + ', '.join(names) + ']') |
| 3803 | names = [t.__name__ for t, v in self.traps.items() if v] |
| 3804 | s.append('traps=[' + ', '.join(names) + ']') |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3805 | return ', '.join(s) + ')' |
| 3806 | |
Raymond Hettinger | d9c0a7a | 2004-07-03 10:02:28 +0000 | [diff] [blame] | 3807 | def clear_flags(self): |
| 3808 | """Reset all flags to zero""" |
| 3809 | for flag in self.flags: |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3810 | self.flags[flag] = 0 |
Raymond Hettinger | d9c0a7a | 2004-07-03 10:02:28 +0000 | [diff] [blame] | 3811 | |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 3812 | def _shallow_copy(self): |
| 3813 | """Returns a shallow copy from self.""" |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 3814 | nc = Context(self.prec, self.rounding, self.traps, |
| 3815 | self.flags, self.Emin, self.Emax, |
| 3816 | self.capitals, self._clamp, self._ignored_flags) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3817 | return nc |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 3818 | |
| 3819 | def copy(self): |
| 3820 | """Returns a deep copy from self.""" |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3821 | nc = Context(self.prec, self.rounding, self.traps.copy(), |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 3822 | self.flags.copy(), self.Emin, self.Emax, |
| 3823 | self.capitals, self._clamp, self._ignored_flags) |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 3824 | return nc |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3825 | __copy__ = copy |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3826 | |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3827 | def _raise_error(self, condition, explanation = None, *args): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3828 | """Handles an error |
| 3829 | |
| 3830 | If the flag is in _ignored_flags, returns the default response. |
Mark Dickinson | 1840c1a | 2008-05-03 18:23:14 +0000 | [diff] [blame] | 3831 | Otherwise, it sets the flag, then, if the corresponding |
Stefan Krah | 8a6f3fe | 2010-05-19 15:46:39 +0000 | [diff] [blame] | 3832 | trap_enabler is set, it reraises the exception. Otherwise, it returns |
Mark Dickinson | 1840c1a | 2008-05-03 18:23:14 +0000 | [diff] [blame] | 3833 | the default value after setting the flag. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3834 | """ |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3835 | error = _condition_map.get(condition, condition) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3836 | if error in self._ignored_flags: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3837 | # Don't touch the flag |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3838 | return error().handle(self, *args) |
| 3839 | |
Mark Dickinson | 1840c1a | 2008-05-03 18:23:14 +0000 | [diff] [blame] | 3840 | self.flags[error] = 1 |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3841 | if not self.traps[error]: |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3842 | # The errors define how to handle themselves. |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3843 | return condition().handle(self, *args) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3844 | |
| 3845 | # Errors should only be risked on copies of the context |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3846 | # self._ignored_flags = [] |
Mark Dickinson | 8aca9d0 | 2008-05-04 02:05:06 +0000 | [diff] [blame] | 3847 | raise error(explanation) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3848 | |
| 3849 | def _ignore_all_flags(self): |
| 3850 | """Ignore all flags, if they are raised""" |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 3851 | return self._ignore_flags(*_signals) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3852 | |
| 3853 | def _ignore_flags(self, *flags): |
| 3854 | """Ignore the flags, if they are raised""" |
| 3855 | # Do not mutate-- This way, copies of a context leave the original |
| 3856 | # alone. |
| 3857 | self._ignored_flags = (self._ignored_flags + list(flags)) |
| 3858 | return list(flags) |
| 3859 | |
| 3860 | def _regard_flags(self, *flags): |
| 3861 | """Stop ignoring the flags, if they are raised""" |
| 3862 | if flags and isinstance(flags[0], (tuple,list)): |
| 3863 | flags = flags[0] |
| 3864 | for flag in flags: |
| 3865 | self._ignored_flags.remove(flag) |
| 3866 | |
Nick Coghlan | 53663a6 | 2008-07-15 14:27:37 +0000 | [diff] [blame] | 3867 | # We inherit object.__hash__, so we must deny this explicitly |
| 3868 | __hash__ = None |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3869 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3870 | def Etiny(self): |
| 3871 | """Returns Etiny (= Emin - prec + 1)""" |
| 3872 | return int(self.Emin - self.prec + 1) |
| 3873 | |
| 3874 | def Etop(self): |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 3875 | """Returns maximum exponent (= Emax - prec + 1)""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3876 | return int(self.Emax - self.prec + 1) |
| 3877 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3878 | def _set_rounding(self, type): |
| 3879 | """Sets the rounding type. |
| 3880 | |
| 3881 | Sets the rounding type, and returns the current (previous) |
| 3882 | rounding type. Often used like: |
| 3883 | |
| 3884 | context = context.copy() |
| 3885 | # so you don't change the calling context |
| 3886 | # if an error occurs in the middle. |
| 3887 | rounding = context._set_rounding(ROUND_UP) |
| 3888 | val = self.__sub__(other, context=context) |
| 3889 | context._set_rounding(rounding) |
| 3890 | |
| 3891 | This will make it round up for that operation. |
| 3892 | """ |
| 3893 | rounding = self.rounding |
| 3894 | self.rounding= type |
| 3895 | return rounding |
| 3896 | |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 3897 | def create_decimal(self, num='0'): |
Mark Dickinson | 59bc20b | 2008-01-12 01:56:00 +0000 | [diff] [blame] | 3898 | """Creates a new Decimal instance but using self as context. |
| 3899 | |
| 3900 | This method implements the to-number operation of the |
| 3901 | IBM Decimal specification.""" |
| 3902 | |
| 3903 | if isinstance(num, basestring) and num != num.strip(): |
| 3904 | return self._raise_error(ConversionSyntax, |
| 3905 | "no trailing or leading whitespace is " |
| 3906 | "permitted.") |
| 3907 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3908 | d = Decimal(num, context=self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3909 | if d._isnan() and len(d._int) > self.prec - self._clamp: |
| 3910 | return self._raise_error(ConversionSyntax, |
| 3911 | "diagnostic info too long in NaN") |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 3912 | return d._fix(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3913 | |
Raymond Hettinger | f4d8597 | 2009-01-03 19:02:23 +0000 | [diff] [blame] | 3914 | def create_decimal_from_float(self, f): |
| 3915 | """Creates a new Decimal instance from a float but rounding using self |
| 3916 | as the context. |
| 3917 | |
| 3918 | >>> context = Context(prec=5, rounding=ROUND_DOWN) |
| 3919 | >>> context.create_decimal_from_float(3.1415926535897932) |
| 3920 | Decimal('3.1415') |
| 3921 | >>> context = Context(prec=5, traps=[Inexact]) |
| 3922 | >>> context.create_decimal_from_float(3.1415926535897932) |
| 3923 | Traceback (most recent call last): |
| 3924 | ... |
| 3925 | Inexact: None |
| 3926 | |
| 3927 | """ |
| 3928 | d = Decimal.from_float(f) # An exact conversion |
| 3929 | return d._fix(self) # Apply the context rounding |
| 3930 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 3931 | # Methods |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3932 | def abs(self, a): |
| 3933 | """Returns the absolute value of the operand. |
| 3934 | |
| 3935 | 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] | 3936 | operation on the operand. Otherwise, the result is the same as using |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3937 | the plus operation on the operand. |
| 3938 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3939 | >>> ExtendedContext.abs(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3940 | Decimal('2.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3941 | >>> ExtendedContext.abs(Decimal('-100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3942 | Decimal('100') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3943 | >>> ExtendedContext.abs(Decimal('101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3944 | Decimal('101.5') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3945 | >>> ExtendedContext.abs(Decimal('-101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3946 | Decimal('101.5') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3947 | >>> ExtendedContext.abs(-1) |
| 3948 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3949 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3950 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3951 | return a.__abs__(context=self) |
| 3952 | |
| 3953 | def add(self, a, b): |
| 3954 | """Return the sum of the two operands. |
| 3955 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3956 | >>> ExtendedContext.add(Decimal('12'), Decimal('7.00')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3957 | Decimal('19.00') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3958 | >>> ExtendedContext.add(Decimal('1E+2'), Decimal('1.01E+4')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3959 | Decimal('1.02E+4') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3960 | >>> ExtendedContext.add(1, Decimal(2)) |
| 3961 | Decimal('3') |
| 3962 | >>> ExtendedContext.add(Decimal(8), 5) |
| 3963 | Decimal('13') |
| 3964 | >>> ExtendedContext.add(5, 5) |
| 3965 | Decimal('10') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3966 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 3967 | a = _convert_other(a, raiseit=True) |
| 3968 | r = a.__add__(b, context=self) |
| 3969 | if r is NotImplemented: |
| 3970 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 3971 | else: |
| 3972 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3973 | |
| 3974 | def _apply(self, a): |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 3975 | return str(a._fix(self)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3976 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3977 | def canonical(self, a): |
| 3978 | """Returns the same Decimal object. |
| 3979 | |
| 3980 | As we do not have different encodings for the same number, the |
| 3981 | received object already is in its canonical form. |
| 3982 | |
| 3983 | >>> ExtendedContext.canonical(Decimal('2.50')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 3984 | Decimal('2.50') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 3985 | """ |
| 3986 | return a.canonical(context=self) |
| 3987 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3988 | def compare(self, a, b): |
| 3989 | """Compares values numerically. |
| 3990 | |
| 3991 | If the signs of the operands differ, a value representing each operand |
| 3992 | ('-1' if the operand is less than zero, '0' if the operand is zero or |
| 3993 | negative zero, or '1' if the operand is greater than zero) is used in |
| 3994 | place of that operand for the comparison instead of the actual |
| 3995 | operand. |
| 3996 | |
| 3997 | The comparison is then effected by subtracting the second operand from |
| 3998 | the first and then returning a value according to the result of the |
| 3999 | subtraction: '-1' if the result is less than zero, '0' if the result is |
| 4000 | zero or negative zero, or '1' if the result is greater than zero. |
| 4001 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4002 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4003 | Decimal('-1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4004 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4005 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4006 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4007 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4008 | >>> ExtendedContext.compare(Decimal('3'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4009 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4010 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('-3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4011 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4012 | >>> ExtendedContext.compare(Decimal('-3'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4013 | Decimal('-1') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4014 | >>> ExtendedContext.compare(1, 2) |
| 4015 | Decimal('-1') |
| 4016 | >>> ExtendedContext.compare(Decimal(1), 2) |
| 4017 | Decimal('-1') |
| 4018 | >>> ExtendedContext.compare(1, Decimal(2)) |
| 4019 | Decimal('-1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4020 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4021 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4022 | return a.compare(b, context=self) |
| 4023 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4024 | def compare_signal(self, a, b): |
| 4025 | """Compares the values of the two operands numerically. |
| 4026 | |
| 4027 | It's pretty much like compare(), but all NaNs signal, with signaling |
| 4028 | NaNs taking precedence over quiet NaNs. |
| 4029 | |
| 4030 | >>> c = ExtendedContext |
| 4031 | >>> c.compare_signal(Decimal('2.1'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4032 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4033 | >>> c.compare_signal(Decimal('2.1'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4034 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4035 | >>> c.flags[InvalidOperation] = 0 |
| 4036 | >>> print c.flags[InvalidOperation] |
| 4037 | 0 |
| 4038 | >>> c.compare_signal(Decimal('NaN'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4039 | Decimal('NaN') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4040 | >>> print c.flags[InvalidOperation] |
| 4041 | 1 |
| 4042 | >>> c.flags[InvalidOperation] = 0 |
| 4043 | >>> print c.flags[InvalidOperation] |
| 4044 | 0 |
| 4045 | >>> c.compare_signal(Decimal('sNaN'), Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4046 | Decimal('NaN') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4047 | >>> print c.flags[InvalidOperation] |
| 4048 | 1 |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4049 | >>> c.compare_signal(-1, 2) |
| 4050 | Decimal('-1') |
| 4051 | >>> c.compare_signal(Decimal(-1), 2) |
| 4052 | Decimal('-1') |
| 4053 | >>> c.compare_signal(-1, Decimal(2)) |
| 4054 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4055 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4056 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4057 | return a.compare_signal(b, context=self) |
| 4058 | |
| 4059 | def compare_total(self, a, b): |
| 4060 | """Compares two operands using their abstract representation. |
| 4061 | |
| 4062 | This is not like the standard compare, which use their numerical |
| 4063 | value. Note that a total ordering is defined for all possible abstract |
| 4064 | representations. |
| 4065 | |
| 4066 | >>> ExtendedContext.compare_total(Decimal('12.73'), Decimal('127.9')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4067 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4068 | >>> ExtendedContext.compare_total(Decimal('-127'), Decimal('12')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4069 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4070 | >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4071 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4072 | >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.30')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4073 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4074 | >>> ExtendedContext.compare_total(Decimal('12.3'), Decimal('12.300')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4075 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4076 | >>> ExtendedContext.compare_total(Decimal('12.3'), Decimal('NaN')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4077 | Decimal('-1') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4078 | >>> ExtendedContext.compare_total(1, 2) |
| 4079 | Decimal('-1') |
| 4080 | >>> ExtendedContext.compare_total(Decimal(1), 2) |
| 4081 | Decimal('-1') |
| 4082 | >>> ExtendedContext.compare_total(1, Decimal(2)) |
| 4083 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4084 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4085 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4086 | return a.compare_total(b) |
| 4087 | |
| 4088 | def compare_total_mag(self, a, b): |
| 4089 | """Compares two operands using their abstract representation ignoring sign. |
| 4090 | |
| 4091 | Like compare_total, but with operand's sign ignored and assumed to be 0. |
| 4092 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4093 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4094 | return a.compare_total_mag(b) |
| 4095 | |
| 4096 | def copy_abs(self, a): |
| 4097 | """Returns a copy of the operand with the sign set to 0. |
| 4098 | |
| 4099 | >>> ExtendedContext.copy_abs(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4100 | Decimal('2.1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4101 | >>> ExtendedContext.copy_abs(Decimal('-100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4102 | Decimal('100') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4103 | >>> ExtendedContext.copy_abs(-1) |
| 4104 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4105 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4106 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4107 | return a.copy_abs() |
| 4108 | |
| 4109 | def copy_decimal(self, a): |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4110 | """Returns a copy of the decimal object. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4111 | |
| 4112 | >>> ExtendedContext.copy_decimal(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4113 | Decimal('2.1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4114 | >>> ExtendedContext.copy_decimal(Decimal('-1.00')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4115 | Decimal('-1.00') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4116 | >>> ExtendedContext.copy_decimal(1) |
| 4117 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4118 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4119 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 6c398da | 2007-09-17 17:30:13 +0000 | [diff] [blame] | 4120 | return Decimal(a) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4121 | |
| 4122 | def copy_negate(self, a): |
| 4123 | """Returns a copy of the operand with the sign inverted. |
| 4124 | |
| 4125 | >>> ExtendedContext.copy_negate(Decimal('101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4126 | Decimal('-101.5') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4127 | >>> ExtendedContext.copy_negate(Decimal('-101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4128 | Decimal('101.5') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4129 | >>> ExtendedContext.copy_negate(1) |
| 4130 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4131 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4132 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4133 | return a.copy_negate() |
| 4134 | |
| 4135 | def copy_sign(self, a, b): |
| 4136 | """Copies the second operand's sign to the first one. |
| 4137 | |
| 4138 | In detail, it returns a copy of the first operand with the sign |
| 4139 | equal to the sign of the second operand. |
| 4140 | |
| 4141 | >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('7.33')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4142 | Decimal('1.50') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4143 | >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('7.33')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4144 | Decimal('1.50') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4145 | >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('-7.33')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4146 | Decimal('-1.50') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4147 | >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('-7.33')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4148 | Decimal('-1.50') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4149 | >>> ExtendedContext.copy_sign(1, -2) |
| 4150 | Decimal('-1') |
| 4151 | >>> ExtendedContext.copy_sign(Decimal(1), -2) |
| 4152 | Decimal('-1') |
| 4153 | >>> ExtendedContext.copy_sign(1, Decimal(-2)) |
| 4154 | Decimal('-1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4155 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4156 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4157 | return a.copy_sign(b) |
| 4158 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4159 | def divide(self, a, b): |
| 4160 | """Decimal division in a specified context. |
| 4161 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4162 | >>> ExtendedContext.divide(Decimal('1'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4163 | Decimal('0.333333333') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4164 | >>> ExtendedContext.divide(Decimal('2'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4165 | Decimal('0.666666667') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4166 | >>> ExtendedContext.divide(Decimal('5'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4167 | Decimal('2.5') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4168 | >>> ExtendedContext.divide(Decimal('1'), Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4169 | Decimal('0.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4170 | >>> ExtendedContext.divide(Decimal('12'), Decimal('12')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4171 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4172 | >>> ExtendedContext.divide(Decimal('8.00'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4173 | Decimal('4.00') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4174 | >>> ExtendedContext.divide(Decimal('2.400'), Decimal('2.0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4175 | Decimal('1.20') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4176 | >>> ExtendedContext.divide(Decimal('1000'), Decimal('100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4177 | Decimal('10') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4178 | >>> ExtendedContext.divide(Decimal('1000'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4179 | Decimal('1000') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4180 | >>> ExtendedContext.divide(Decimal('2.40E+6'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4181 | Decimal('1.20E+6') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4182 | >>> ExtendedContext.divide(5, 5) |
| 4183 | Decimal('1') |
| 4184 | >>> ExtendedContext.divide(Decimal(5), 5) |
| 4185 | Decimal('1') |
| 4186 | >>> ExtendedContext.divide(5, Decimal(5)) |
| 4187 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4188 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4189 | a = _convert_other(a, raiseit=True) |
| 4190 | r = a.__div__(b, context=self) |
| 4191 | if r is NotImplemented: |
| 4192 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4193 | else: |
| 4194 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4195 | |
| 4196 | def divide_int(self, a, b): |
| 4197 | """Divides two numbers and returns the integer part of the result. |
| 4198 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4199 | >>> ExtendedContext.divide_int(Decimal('2'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4200 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4201 | >>> ExtendedContext.divide_int(Decimal('10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4202 | Decimal('3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4203 | >>> ExtendedContext.divide_int(Decimal('1'), Decimal('0.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4204 | Decimal('3') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4205 | >>> ExtendedContext.divide_int(10, 3) |
| 4206 | Decimal('3') |
| 4207 | >>> ExtendedContext.divide_int(Decimal(10), 3) |
| 4208 | Decimal('3') |
| 4209 | >>> ExtendedContext.divide_int(10, Decimal(3)) |
| 4210 | Decimal('3') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4211 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4212 | a = _convert_other(a, raiseit=True) |
| 4213 | r = a.__floordiv__(b, context=self) |
| 4214 | if r is NotImplemented: |
| 4215 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4216 | else: |
| 4217 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4218 | |
| 4219 | def divmod(self, a, b): |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4220 | """Return (a // b, a % b). |
Mark Dickinson | 202eb90 | 2010-01-06 16:20:22 +0000 | [diff] [blame] | 4221 | |
| 4222 | >>> ExtendedContext.divmod(Decimal(8), Decimal(3)) |
| 4223 | (Decimal('2'), Decimal('2')) |
| 4224 | >>> ExtendedContext.divmod(Decimal(8), Decimal(4)) |
| 4225 | (Decimal('2'), Decimal('0')) |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4226 | >>> ExtendedContext.divmod(8, 4) |
| 4227 | (Decimal('2'), Decimal('0')) |
| 4228 | >>> ExtendedContext.divmod(Decimal(8), 4) |
| 4229 | (Decimal('2'), Decimal('0')) |
| 4230 | >>> ExtendedContext.divmod(8, Decimal(4)) |
| 4231 | (Decimal('2'), Decimal('0')) |
Mark Dickinson | 202eb90 | 2010-01-06 16:20:22 +0000 | [diff] [blame] | 4232 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4233 | a = _convert_other(a, raiseit=True) |
| 4234 | r = a.__divmod__(b, context=self) |
| 4235 | if r is NotImplemented: |
| 4236 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4237 | else: |
| 4238 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4239 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4240 | def exp(self, a): |
| 4241 | """Returns e ** a. |
| 4242 | |
| 4243 | >>> c = ExtendedContext.copy() |
| 4244 | >>> c.Emin = -999 |
| 4245 | >>> c.Emax = 999 |
| 4246 | >>> c.exp(Decimal('-Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4247 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4248 | >>> c.exp(Decimal('-1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4249 | Decimal('0.367879441') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4250 | >>> c.exp(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4251 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4252 | >>> c.exp(Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4253 | Decimal('2.71828183') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4254 | >>> c.exp(Decimal('0.693147181')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4255 | Decimal('2.00000000') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4256 | >>> c.exp(Decimal('+Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4257 | Decimal('Infinity') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4258 | >>> c.exp(10) |
| 4259 | Decimal('22026.4658') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4260 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4261 | a =_convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4262 | return a.exp(context=self) |
| 4263 | |
| 4264 | def fma(self, a, b, c): |
| 4265 | """Returns a multiplied by b, plus c. |
| 4266 | |
| 4267 | The first two operands are multiplied together, using multiply, |
| 4268 | the third operand is then added to the result of that |
| 4269 | multiplication, using add, all with only one final rounding. |
| 4270 | |
| 4271 | >>> ExtendedContext.fma(Decimal('3'), Decimal('5'), Decimal('7')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4272 | Decimal('22') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4273 | >>> ExtendedContext.fma(Decimal('3'), Decimal('-5'), Decimal('7')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4274 | Decimal('-8') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4275 | >>> ExtendedContext.fma(Decimal('888565290'), Decimal('1557.96930'), Decimal('-86087.7578')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4276 | Decimal('1.38435736E+12') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4277 | >>> ExtendedContext.fma(1, 3, 4) |
| 4278 | Decimal('7') |
| 4279 | >>> ExtendedContext.fma(1, Decimal(3), 4) |
| 4280 | Decimal('7') |
| 4281 | >>> ExtendedContext.fma(1, 3, Decimal(4)) |
| 4282 | Decimal('7') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4283 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4284 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4285 | return a.fma(b, c, context=self) |
| 4286 | |
| 4287 | def is_canonical(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4288 | """Return True if the operand is canonical; otherwise return False. |
| 4289 | |
| 4290 | Currently, the encoding of a Decimal instance is always |
| 4291 | canonical, so this method returns True for any Decimal. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4292 | |
| 4293 | >>> ExtendedContext.is_canonical(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4294 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4295 | """ |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4296 | return a.is_canonical() |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4297 | |
| 4298 | def is_finite(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4299 | """Return True if the operand is finite; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4300 | |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4301 | A Decimal instance is considered finite if it is neither |
| 4302 | infinite nor a NaN. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4303 | |
| 4304 | >>> ExtendedContext.is_finite(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4305 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4306 | >>> ExtendedContext.is_finite(Decimal('-0.3')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4307 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4308 | >>> ExtendedContext.is_finite(Decimal('0')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4309 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4310 | >>> ExtendedContext.is_finite(Decimal('Inf')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4311 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4312 | >>> ExtendedContext.is_finite(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4313 | False |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4314 | >>> ExtendedContext.is_finite(1) |
| 4315 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4316 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4317 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4318 | return a.is_finite() |
| 4319 | |
| 4320 | def is_infinite(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4321 | """Return True if the operand is infinite; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4322 | |
| 4323 | >>> ExtendedContext.is_infinite(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4324 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4325 | >>> ExtendedContext.is_infinite(Decimal('-Inf')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4326 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4327 | >>> ExtendedContext.is_infinite(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4328 | False |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4329 | >>> ExtendedContext.is_infinite(1) |
| 4330 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4331 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4332 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4333 | return a.is_infinite() |
| 4334 | |
| 4335 | def is_nan(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4336 | """Return True if the operand is a qNaN or sNaN; |
| 4337 | otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4338 | |
| 4339 | >>> ExtendedContext.is_nan(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4340 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4341 | >>> ExtendedContext.is_nan(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4342 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4343 | >>> ExtendedContext.is_nan(Decimal('-sNaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4344 | True |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4345 | >>> ExtendedContext.is_nan(1) |
| 4346 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4347 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4348 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4349 | return a.is_nan() |
| 4350 | |
| 4351 | def is_normal(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4352 | """Return True if the operand is a normal number; |
| 4353 | otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4354 | |
| 4355 | >>> c = ExtendedContext.copy() |
| 4356 | >>> c.Emin = -999 |
| 4357 | >>> c.Emax = 999 |
| 4358 | >>> c.is_normal(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4359 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4360 | >>> c.is_normal(Decimal('0.1E-999')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4361 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4362 | >>> c.is_normal(Decimal('0.00')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4363 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4364 | >>> c.is_normal(Decimal('-Inf')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4365 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4366 | >>> c.is_normal(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4367 | False |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4368 | >>> c.is_normal(1) |
| 4369 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4370 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4371 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4372 | return a.is_normal(context=self) |
| 4373 | |
| 4374 | def is_qnan(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4375 | """Return True if the operand is a quiet NaN; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4376 | |
| 4377 | >>> ExtendedContext.is_qnan(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4378 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4379 | >>> ExtendedContext.is_qnan(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4380 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4381 | >>> ExtendedContext.is_qnan(Decimal('sNaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4382 | False |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4383 | >>> ExtendedContext.is_qnan(1) |
| 4384 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4385 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4386 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4387 | return a.is_qnan() |
| 4388 | |
| 4389 | def is_signed(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4390 | """Return True if the operand is negative; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4391 | |
| 4392 | >>> ExtendedContext.is_signed(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4393 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4394 | >>> ExtendedContext.is_signed(Decimal('-12')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4395 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4396 | >>> ExtendedContext.is_signed(Decimal('-0')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4397 | True |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4398 | >>> ExtendedContext.is_signed(8) |
| 4399 | False |
| 4400 | >>> ExtendedContext.is_signed(-8) |
| 4401 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4402 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4403 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4404 | return a.is_signed() |
| 4405 | |
| 4406 | def is_snan(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4407 | """Return True if the operand is a signaling NaN; |
| 4408 | otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4409 | |
| 4410 | >>> ExtendedContext.is_snan(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4411 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4412 | >>> ExtendedContext.is_snan(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4413 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4414 | >>> ExtendedContext.is_snan(Decimal('sNaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4415 | True |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4416 | >>> ExtendedContext.is_snan(1) |
| 4417 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4418 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4419 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4420 | return a.is_snan() |
| 4421 | |
| 4422 | def is_subnormal(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4423 | """Return True if the operand is subnormal; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4424 | |
| 4425 | >>> c = ExtendedContext.copy() |
| 4426 | >>> c.Emin = -999 |
| 4427 | >>> c.Emax = 999 |
| 4428 | >>> c.is_subnormal(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4429 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4430 | >>> c.is_subnormal(Decimal('0.1E-999')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4431 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4432 | >>> c.is_subnormal(Decimal('0.00')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4433 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4434 | >>> c.is_subnormal(Decimal('-Inf')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4435 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4436 | >>> c.is_subnormal(Decimal('NaN')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4437 | False |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4438 | >>> c.is_subnormal(1) |
| 4439 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4440 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4441 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4442 | return a.is_subnormal(context=self) |
| 4443 | |
| 4444 | def is_zero(self, a): |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4445 | """Return True if the operand is a zero; otherwise return False. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4446 | |
| 4447 | >>> ExtendedContext.is_zero(Decimal('0')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4448 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4449 | >>> ExtendedContext.is_zero(Decimal('2.50')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4450 | False |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4451 | >>> ExtendedContext.is_zero(Decimal('-0E+2')) |
Facundo Batista | 1a191df | 2007-10-02 17:01:24 +0000 | [diff] [blame] | 4452 | True |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4453 | >>> ExtendedContext.is_zero(1) |
| 4454 | False |
| 4455 | >>> ExtendedContext.is_zero(0) |
| 4456 | True |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4457 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4458 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4459 | return a.is_zero() |
| 4460 | |
| 4461 | def ln(self, a): |
| 4462 | """Returns the natural (base e) logarithm of the operand. |
| 4463 | |
| 4464 | >>> c = ExtendedContext.copy() |
| 4465 | >>> c.Emin = -999 |
| 4466 | >>> c.Emax = 999 |
| 4467 | >>> c.ln(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4468 | Decimal('-Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4469 | >>> c.ln(Decimal('1.000')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4470 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4471 | >>> c.ln(Decimal('2.71828183')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4472 | Decimal('1.00000000') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4473 | >>> c.ln(Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4474 | Decimal('2.30258509') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4475 | >>> c.ln(Decimal('+Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4476 | Decimal('Infinity') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4477 | >>> c.ln(1) |
| 4478 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4479 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4480 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4481 | return a.ln(context=self) |
| 4482 | |
| 4483 | def log10(self, a): |
| 4484 | """Returns the base 10 logarithm of the operand. |
| 4485 | |
| 4486 | >>> c = ExtendedContext.copy() |
| 4487 | >>> c.Emin = -999 |
| 4488 | >>> c.Emax = 999 |
| 4489 | >>> c.log10(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4490 | Decimal('-Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4491 | >>> c.log10(Decimal('0.001')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4492 | Decimal('-3') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4493 | >>> c.log10(Decimal('1.000')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4494 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4495 | >>> c.log10(Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4496 | Decimal('0.301029996') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4497 | >>> c.log10(Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4498 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4499 | >>> c.log10(Decimal('70')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4500 | Decimal('1.84509804') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4501 | >>> c.log10(Decimal('+Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4502 | Decimal('Infinity') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4503 | >>> c.log10(0) |
| 4504 | Decimal('-Infinity') |
| 4505 | >>> c.log10(1) |
| 4506 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4507 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4508 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4509 | return a.log10(context=self) |
| 4510 | |
| 4511 | def logb(self, a): |
| 4512 | """ Returns the exponent of the magnitude of the operand's MSD. |
| 4513 | |
| 4514 | The result is the integer which is the exponent of the magnitude |
| 4515 | of the most significant digit of the operand (as though the |
| 4516 | operand were truncated to a single digit while maintaining the |
| 4517 | value of that digit and without limiting the resulting exponent). |
| 4518 | |
| 4519 | >>> ExtendedContext.logb(Decimal('250')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4520 | Decimal('2') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4521 | >>> ExtendedContext.logb(Decimal('2.50')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4522 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4523 | >>> ExtendedContext.logb(Decimal('0.03')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4524 | Decimal('-2') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4525 | >>> ExtendedContext.logb(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4526 | Decimal('-Infinity') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4527 | >>> ExtendedContext.logb(1) |
| 4528 | Decimal('0') |
| 4529 | >>> ExtendedContext.logb(10) |
| 4530 | Decimal('1') |
| 4531 | >>> ExtendedContext.logb(100) |
| 4532 | Decimal('2') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4533 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4534 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4535 | return a.logb(context=self) |
| 4536 | |
| 4537 | def logical_and(self, a, b): |
| 4538 | """Applies the logical operation 'and' between each operand's digits. |
| 4539 | |
| 4540 | The operands must be both logical numbers. |
| 4541 | |
| 4542 | >>> ExtendedContext.logical_and(Decimal('0'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4543 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4544 | >>> ExtendedContext.logical_and(Decimal('0'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4545 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4546 | >>> ExtendedContext.logical_and(Decimal('1'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4547 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4548 | >>> ExtendedContext.logical_and(Decimal('1'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4549 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4550 | >>> ExtendedContext.logical_and(Decimal('1100'), Decimal('1010')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4551 | Decimal('1000') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4552 | >>> ExtendedContext.logical_and(Decimal('1111'), Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4553 | Decimal('10') |
Mark Dickinson | 456e165 | 2010-02-18 14:45:33 +0000 | [diff] [blame] | 4554 | >>> ExtendedContext.logical_and(110, 1101) |
| 4555 | Decimal('100') |
| 4556 | >>> ExtendedContext.logical_and(Decimal(110), 1101) |
| 4557 | Decimal('100') |
| 4558 | >>> ExtendedContext.logical_and(110, Decimal(1101)) |
| 4559 | Decimal('100') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4560 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4561 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4562 | return a.logical_and(b, context=self) |
| 4563 | |
| 4564 | def logical_invert(self, a): |
| 4565 | """Invert all the digits in the operand. |
| 4566 | |
| 4567 | The operand must be a logical number. |
| 4568 | |
| 4569 | >>> ExtendedContext.logical_invert(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4570 | Decimal('111111111') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4571 | >>> ExtendedContext.logical_invert(Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4572 | Decimal('111111110') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4573 | >>> ExtendedContext.logical_invert(Decimal('111111111')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4574 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4575 | >>> ExtendedContext.logical_invert(Decimal('101010101')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4576 | Decimal('10101010') |
Mark Dickinson | 456e165 | 2010-02-18 14:45:33 +0000 | [diff] [blame] | 4577 | >>> ExtendedContext.logical_invert(1101) |
| 4578 | Decimal('111110010') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4579 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4580 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4581 | return a.logical_invert(context=self) |
| 4582 | |
| 4583 | def logical_or(self, a, b): |
| 4584 | """Applies the logical operation 'or' between each operand's digits. |
| 4585 | |
| 4586 | The operands must be both logical numbers. |
| 4587 | |
| 4588 | >>> ExtendedContext.logical_or(Decimal('0'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4589 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4590 | >>> ExtendedContext.logical_or(Decimal('0'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4591 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4592 | >>> ExtendedContext.logical_or(Decimal('1'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4593 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4594 | >>> ExtendedContext.logical_or(Decimal('1'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4595 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4596 | >>> ExtendedContext.logical_or(Decimal('1100'), Decimal('1010')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4597 | Decimal('1110') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4598 | >>> ExtendedContext.logical_or(Decimal('1110'), Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4599 | Decimal('1110') |
Mark Dickinson | 456e165 | 2010-02-18 14:45:33 +0000 | [diff] [blame] | 4600 | >>> ExtendedContext.logical_or(110, 1101) |
| 4601 | Decimal('1111') |
| 4602 | >>> ExtendedContext.logical_or(Decimal(110), 1101) |
| 4603 | Decimal('1111') |
| 4604 | >>> ExtendedContext.logical_or(110, Decimal(1101)) |
| 4605 | Decimal('1111') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4606 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4607 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4608 | return a.logical_or(b, context=self) |
| 4609 | |
| 4610 | def logical_xor(self, a, b): |
| 4611 | """Applies the logical operation 'xor' between each operand's digits. |
| 4612 | |
| 4613 | The operands must be both logical numbers. |
| 4614 | |
| 4615 | >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4616 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4617 | >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4618 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4619 | >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4620 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4621 | >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4622 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4623 | >>> ExtendedContext.logical_xor(Decimal('1100'), Decimal('1010')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4624 | Decimal('110') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4625 | >>> ExtendedContext.logical_xor(Decimal('1111'), Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4626 | Decimal('1101') |
Mark Dickinson | 456e165 | 2010-02-18 14:45:33 +0000 | [diff] [blame] | 4627 | >>> ExtendedContext.logical_xor(110, 1101) |
| 4628 | Decimal('1011') |
| 4629 | >>> ExtendedContext.logical_xor(Decimal(110), 1101) |
| 4630 | Decimal('1011') |
| 4631 | >>> ExtendedContext.logical_xor(110, Decimal(1101)) |
| 4632 | Decimal('1011') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4633 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4634 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4635 | return a.logical_xor(b, context=self) |
| 4636 | |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4637 | def max(self, a, b): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4638 | """max compares two values numerically and returns the maximum. |
| 4639 | |
| 4640 | If either operand is a NaN then the general rules apply. |
Andrew M. Kuchling | c8acc88 | 2008-01-16 00:32:03 +0000 | [diff] [blame] | 4641 | Otherwise, the operands are compared as though by the compare |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 4642 | operation. If they are numerically equal then the left-hand operand |
| 4643 | is chosen as the result. Otherwise the maximum (closer to positive |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4644 | infinity) of the two operands is chosen as the result. |
| 4645 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4646 | >>> ExtendedContext.max(Decimal('3'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4647 | Decimal('3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4648 | >>> ExtendedContext.max(Decimal('-10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4649 | Decimal('3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4650 | >>> ExtendedContext.max(Decimal('1.0'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4651 | Decimal('1') |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 4652 | >>> ExtendedContext.max(Decimal('7'), Decimal('NaN')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4653 | Decimal('7') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4654 | >>> ExtendedContext.max(1, 2) |
| 4655 | Decimal('2') |
| 4656 | >>> ExtendedContext.max(Decimal(1), 2) |
| 4657 | Decimal('2') |
| 4658 | >>> ExtendedContext.max(1, Decimal(2)) |
| 4659 | Decimal('2') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4660 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4661 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4662 | return a.max(b, context=self) |
| 4663 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4664 | def max_mag(self, a, b): |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4665 | """Compares the values numerically with their sign ignored. |
| 4666 | |
| 4667 | >>> ExtendedContext.max_mag(Decimal('7'), Decimal('NaN')) |
| 4668 | Decimal('7') |
| 4669 | >>> ExtendedContext.max_mag(Decimal('7'), Decimal('-10')) |
| 4670 | Decimal('-10') |
| 4671 | >>> ExtendedContext.max_mag(1, -2) |
| 4672 | Decimal('-2') |
| 4673 | >>> ExtendedContext.max_mag(Decimal(1), -2) |
| 4674 | Decimal('-2') |
| 4675 | >>> ExtendedContext.max_mag(1, Decimal(-2)) |
| 4676 | Decimal('-2') |
| 4677 | """ |
| 4678 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4679 | return a.max_mag(b, context=self) |
| 4680 | |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4681 | def min(self, a, b): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4682 | """min compares two values numerically and returns the minimum. |
| 4683 | |
| 4684 | If either operand is a NaN then the general rules apply. |
Andrew M. Kuchling | c8acc88 | 2008-01-16 00:32:03 +0000 | [diff] [blame] | 4685 | Otherwise, the operands are compared as though by the compare |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 4686 | operation. If they are numerically equal then the left-hand operand |
| 4687 | is chosen as the result. Otherwise the minimum (closer to negative |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4688 | infinity) of the two operands is chosen as the result. |
| 4689 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4690 | >>> ExtendedContext.min(Decimal('3'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4691 | Decimal('2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4692 | >>> ExtendedContext.min(Decimal('-10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4693 | Decimal('-10') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4694 | >>> ExtendedContext.min(Decimal('1.0'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4695 | Decimal('1.0') |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 4696 | >>> ExtendedContext.min(Decimal('7'), Decimal('NaN')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4697 | Decimal('7') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4698 | >>> ExtendedContext.min(1, 2) |
| 4699 | Decimal('1') |
| 4700 | >>> ExtendedContext.min(Decimal(1), 2) |
| 4701 | Decimal('1') |
| 4702 | >>> ExtendedContext.min(1, Decimal(29)) |
| 4703 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4704 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4705 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4706 | return a.min(b, context=self) |
| 4707 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4708 | def min_mag(self, a, b): |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4709 | """Compares the values numerically with their sign ignored. |
| 4710 | |
| 4711 | >>> ExtendedContext.min_mag(Decimal('3'), Decimal('-2')) |
| 4712 | Decimal('-2') |
| 4713 | >>> ExtendedContext.min_mag(Decimal('-3'), Decimal('NaN')) |
| 4714 | Decimal('-3') |
| 4715 | >>> ExtendedContext.min_mag(1, -2) |
| 4716 | Decimal('1') |
| 4717 | >>> ExtendedContext.min_mag(Decimal(1), -2) |
| 4718 | Decimal('1') |
| 4719 | >>> ExtendedContext.min_mag(1, Decimal(-2)) |
| 4720 | Decimal('1') |
| 4721 | """ |
| 4722 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4723 | return a.min_mag(b, context=self) |
| 4724 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4725 | def minus(self, a): |
| 4726 | """Minus corresponds to unary prefix minus in Python. |
| 4727 | |
| 4728 | The operation is evaluated using the same rules as subtract; the |
| 4729 | operation minus(a) is calculated as subtract('0', a) where the '0' |
| 4730 | has the same exponent as the operand. |
| 4731 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4732 | >>> ExtendedContext.minus(Decimal('1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4733 | Decimal('-1.3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4734 | >>> ExtendedContext.minus(Decimal('-1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4735 | Decimal('1.3') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4736 | >>> ExtendedContext.minus(1) |
| 4737 | Decimal('-1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4738 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4739 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4740 | return a.__neg__(context=self) |
| 4741 | |
| 4742 | def multiply(self, a, b): |
| 4743 | """multiply multiplies two operands. |
| 4744 | |
Martin v. Löwis | cfe3128 | 2006-07-19 17:18:32 +0000 | [diff] [blame] | 4745 | If either operand is a special value then the general rules apply. |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4746 | Otherwise, the operands are multiplied together |
| 4747 | ('long multiplication'), resulting in a number which may be as long as |
| 4748 | the sum of the lengths of the two operands. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4749 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4750 | >>> ExtendedContext.multiply(Decimal('1.20'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4751 | Decimal('3.60') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4752 | >>> ExtendedContext.multiply(Decimal('7'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4753 | Decimal('21') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4754 | >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('0.8')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4755 | Decimal('0.72') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4756 | >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('-0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4757 | Decimal('-0.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4758 | >>> ExtendedContext.multiply(Decimal('654321'), Decimal('654321')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4759 | Decimal('4.28135971E+11') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4760 | >>> ExtendedContext.multiply(7, 7) |
| 4761 | Decimal('49') |
| 4762 | >>> ExtendedContext.multiply(Decimal(7), 7) |
| 4763 | Decimal('49') |
| 4764 | >>> ExtendedContext.multiply(7, Decimal(7)) |
| 4765 | Decimal('49') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4766 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4767 | a = _convert_other(a, raiseit=True) |
| 4768 | r = a.__mul__(b, context=self) |
| 4769 | if r is NotImplemented: |
| 4770 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4771 | else: |
| 4772 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4773 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4774 | def next_minus(self, a): |
| 4775 | """Returns the largest representable number smaller than a. |
| 4776 | |
| 4777 | >>> c = ExtendedContext.copy() |
| 4778 | >>> c.Emin = -999 |
| 4779 | >>> c.Emax = 999 |
| 4780 | >>> ExtendedContext.next_minus(Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4781 | Decimal('0.999999999') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4782 | >>> c.next_minus(Decimal('1E-1007')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4783 | Decimal('0E-1007') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4784 | >>> ExtendedContext.next_minus(Decimal('-1.00000003')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4785 | Decimal('-1.00000004') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4786 | >>> c.next_minus(Decimal('Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4787 | Decimal('9.99999999E+999') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4788 | >>> c.next_minus(1) |
| 4789 | Decimal('0.999999999') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4790 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4791 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4792 | return a.next_minus(context=self) |
| 4793 | |
| 4794 | def next_plus(self, a): |
| 4795 | """Returns the smallest representable number larger than a. |
| 4796 | |
| 4797 | >>> c = ExtendedContext.copy() |
| 4798 | >>> c.Emin = -999 |
| 4799 | >>> c.Emax = 999 |
| 4800 | >>> ExtendedContext.next_plus(Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4801 | Decimal('1.00000001') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4802 | >>> c.next_plus(Decimal('-1E-1007')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4803 | Decimal('-0E-1007') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4804 | >>> ExtendedContext.next_plus(Decimal('-1.00000003')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4805 | Decimal('-1.00000002') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4806 | >>> c.next_plus(Decimal('-Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4807 | Decimal('-9.99999999E+999') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4808 | >>> c.next_plus(1) |
| 4809 | Decimal('1.00000001') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4810 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4811 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4812 | return a.next_plus(context=self) |
| 4813 | |
| 4814 | def next_toward(self, a, b): |
| 4815 | """Returns the number closest to a, in direction towards b. |
| 4816 | |
| 4817 | The result is the closest representable number from the first |
| 4818 | operand (but not the first operand) that is in the direction |
| 4819 | towards the second operand, unless the operands have the same |
| 4820 | value. |
| 4821 | |
| 4822 | >>> c = ExtendedContext.copy() |
| 4823 | >>> c.Emin = -999 |
| 4824 | >>> c.Emax = 999 |
| 4825 | >>> c.next_toward(Decimal('1'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4826 | Decimal('1.00000001') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4827 | >>> c.next_toward(Decimal('-1E-1007'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4828 | Decimal('-0E-1007') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4829 | >>> c.next_toward(Decimal('-1.00000003'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4830 | Decimal('-1.00000002') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4831 | >>> c.next_toward(Decimal('1'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4832 | Decimal('0.999999999') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4833 | >>> c.next_toward(Decimal('1E-1007'), Decimal('-100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4834 | Decimal('0E-1007') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4835 | >>> c.next_toward(Decimal('-1.00000003'), Decimal('-10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4836 | Decimal('-1.00000004') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4837 | >>> c.next_toward(Decimal('0.00'), Decimal('-0.0000')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4838 | Decimal('-0.00') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4839 | >>> c.next_toward(0, 1) |
| 4840 | Decimal('1E-1007') |
| 4841 | >>> c.next_toward(Decimal(0), 1) |
| 4842 | Decimal('1E-1007') |
| 4843 | >>> c.next_toward(0, Decimal(1)) |
| 4844 | Decimal('1E-1007') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4845 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4846 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4847 | return a.next_toward(b, context=self) |
| 4848 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4849 | def normalize(self, a): |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 4850 | """normalize reduces an operand to its simplest form. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4851 | |
| 4852 | Essentially a plus operation with all trailing zeros removed from the |
| 4853 | result. |
| 4854 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4855 | >>> ExtendedContext.normalize(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4856 | Decimal('2.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4857 | >>> ExtendedContext.normalize(Decimal('-2.0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4858 | Decimal('-2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4859 | >>> ExtendedContext.normalize(Decimal('1.200')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4860 | Decimal('1.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4861 | >>> ExtendedContext.normalize(Decimal('-120')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4862 | Decimal('-1.2E+2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4863 | >>> ExtendedContext.normalize(Decimal('120.00')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4864 | Decimal('1.2E+2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4865 | >>> ExtendedContext.normalize(Decimal('0.00')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4866 | Decimal('0') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4867 | >>> ExtendedContext.normalize(6) |
| 4868 | Decimal('6') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4869 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4870 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4871 | return a.normalize(context=self) |
| 4872 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4873 | def number_class(self, a): |
| 4874 | """Returns an indication of the class of the operand. |
| 4875 | |
| 4876 | The class is one of the following strings: |
| 4877 | -sNaN |
| 4878 | -NaN |
| 4879 | -Infinity |
| 4880 | -Normal |
| 4881 | -Subnormal |
| 4882 | -Zero |
| 4883 | +Zero |
| 4884 | +Subnormal |
| 4885 | +Normal |
| 4886 | +Infinity |
| 4887 | |
| 4888 | >>> c = Context(ExtendedContext) |
| 4889 | >>> c.Emin = -999 |
| 4890 | >>> c.Emax = 999 |
| 4891 | >>> c.number_class(Decimal('Infinity')) |
| 4892 | '+Infinity' |
| 4893 | >>> c.number_class(Decimal('1E-10')) |
| 4894 | '+Normal' |
| 4895 | >>> c.number_class(Decimal('2.50')) |
| 4896 | '+Normal' |
| 4897 | >>> c.number_class(Decimal('0.1E-999')) |
| 4898 | '+Subnormal' |
| 4899 | >>> c.number_class(Decimal('0')) |
| 4900 | '+Zero' |
| 4901 | >>> c.number_class(Decimal('-0')) |
| 4902 | '-Zero' |
| 4903 | >>> c.number_class(Decimal('-0.1E-999')) |
| 4904 | '-Subnormal' |
| 4905 | >>> c.number_class(Decimal('-1E-10')) |
| 4906 | '-Normal' |
| 4907 | >>> c.number_class(Decimal('-2.50')) |
| 4908 | '-Normal' |
| 4909 | >>> c.number_class(Decimal('-Infinity')) |
| 4910 | '-Infinity' |
| 4911 | >>> c.number_class(Decimal('NaN')) |
| 4912 | 'NaN' |
| 4913 | >>> c.number_class(Decimal('-NaN')) |
| 4914 | 'NaN' |
| 4915 | >>> c.number_class(Decimal('sNaN')) |
| 4916 | 'sNaN' |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4917 | >>> c.number_class(123) |
| 4918 | '+Normal' |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4919 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4920 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4921 | return a.number_class(context=self) |
| 4922 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4923 | def plus(self, a): |
| 4924 | """Plus corresponds to unary prefix plus in Python. |
| 4925 | |
| 4926 | The operation is evaluated using the same rules as add; the |
| 4927 | operation plus(a) is calculated as add('0', a) where the '0' |
| 4928 | has the same exponent as the operand. |
| 4929 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4930 | >>> ExtendedContext.plus(Decimal('1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4931 | Decimal('1.3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4932 | >>> ExtendedContext.plus(Decimal('-1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4933 | Decimal('-1.3') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4934 | >>> ExtendedContext.plus(-1) |
| 4935 | Decimal('-1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4936 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 4937 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4938 | return a.__pos__(context=self) |
| 4939 | |
| 4940 | def power(self, a, b, modulo=None): |
| 4941 | """Raises a to the power of b, to modulo if given. |
| 4942 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4943 | With two arguments, compute a**b. If a is negative then b |
| 4944 | must be integral. The result will be inexact unless b is |
| 4945 | integral and the result is finite and can be expressed exactly |
| 4946 | in 'precision' digits. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4947 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4948 | With three arguments, compute (a**b) % modulo. For the |
| 4949 | three argument form, the following restrictions on the |
| 4950 | arguments hold: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4951 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4952 | - all three arguments must be integral |
| 4953 | - b must be nonnegative |
| 4954 | - at least one of a or b must be nonzero |
| 4955 | - modulo must be nonzero and have at most 'precision' digits |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4956 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4957 | The result of pow(a, b, modulo) is identical to the result |
| 4958 | that would be obtained by computing (a**b) % modulo with |
| 4959 | unbounded precision, but is computed more efficiently. It is |
| 4960 | always exact. |
| 4961 | |
| 4962 | >>> c = ExtendedContext.copy() |
| 4963 | >>> c.Emin = -999 |
| 4964 | >>> c.Emax = 999 |
| 4965 | >>> c.power(Decimal('2'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4966 | Decimal('8') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4967 | >>> c.power(Decimal('-2'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4968 | Decimal('-8') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4969 | >>> c.power(Decimal('2'), Decimal('-3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4970 | Decimal('0.125') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4971 | >>> c.power(Decimal('1.7'), Decimal('8')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4972 | Decimal('69.7575744') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4973 | >>> c.power(Decimal('10'), Decimal('0.301029996')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4974 | Decimal('2.00000000') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4975 | >>> c.power(Decimal('Infinity'), Decimal('-1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4976 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4977 | >>> c.power(Decimal('Infinity'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4978 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4979 | >>> c.power(Decimal('Infinity'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4980 | Decimal('Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4981 | >>> c.power(Decimal('-Infinity'), Decimal('-1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4982 | Decimal('-0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4983 | >>> c.power(Decimal('-Infinity'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4984 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4985 | >>> c.power(Decimal('-Infinity'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4986 | Decimal('-Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4987 | >>> c.power(Decimal('-Infinity'), Decimal('2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4988 | Decimal('Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4989 | >>> c.power(Decimal('0'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4990 | Decimal('NaN') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4991 | |
| 4992 | >>> c.power(Decimal('3'), Decimal('7'), Decimal('16')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4993 | Decimal('11') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4994 | >>> c.power(Decimal('-3'), Decimal('7'), Decimal('16')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4995 | Decimal('-11') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4996 | >>> c.power(Decimal('-3'), Decimal('8'), Decimal('16')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4997 | Decimal('1') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 4998 | >>> c.power(Decimal('3'), Decimal('7'), Decimal('-16')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 4999 | Decimal('11') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5000 | >>> c.power(Decimal('23E12345'), Decimal('67E189'), Decimal('123456789')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5001 | Decimal('11729830') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5002 | >>> c.power(Decimal('-0'), Decimal('17'), Decimal('1729')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5003 | Decimal('-0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5004 | >>> c.power(Decimal('-23'), Decimal('0'), Decimal('65537')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5005 | Decimal('1') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5006 | >>> ExtendedContext.power(7, 7) |
| 5007 | Decimal('823543') |
| 5008 | >>> ExtendedContext.power(Decimal(7), 7) |
| 5009 | Decimal('823543') |
| 5010 | >>> ExtendedContext.power(7, Decimal(7), 2) |
| 5011 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5012 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5013 | a = _convert_other(a, raiseit=True) |
| 5014 | r = a.__pow__(b, modulo, context=self) |
| 5015 | if r is NotImplemented: |
| 5016 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 5017 | else: |
| 5018 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5019 | |
| 5020 | def quantize(self, a, b): |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5021 | """Returns a value equal to 'a' (rounded), having the exponent of 'b'. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5022 | |
| 5023 | 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] | 5024 | operand. It may be rounded using the current rounding setting (if the |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5025 | exponent is being increased), multiplied by a positive power of ten (if |
| 5026 | the exponent is being decreased), or is unchanged (if the exponent is |
| 5027 | already equal to that of the right-hand operand). |
| 5028 | |
| 5029 | Unlike other operations, if the length of the coefficient after the |
| 5030 | quantize operation would be greater than precision then an Invalid |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5031 | operation condition is raised. This guarantees that, unless there is |
| 5032 | 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] | 5033 | equal to that of the right-hand operand. |
| 5034 | |
| 5035 | Also unlike other operations, quantize will never raise Underflow, even |
| 5036 | if the result is subnormal and inexact. |
| 5037 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5038 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.001')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5039 | Decimal('2.170') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5040 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.01')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5041 | Decimal('2.17') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5042 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5043 | Decimal('2.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5044 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5045 | Decimal('2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5046 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5047 | Decimal('0E+1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5048 | >>> ExtendedContext.quantize(Decimal('-Inf'), Decimal('Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5049 | Decimal('-Infinity') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5050 | >>> ExtendedContext.quantize(Decimal('2'), Decimal('Infinity')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5051 | Decimal('NaN') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5052 | >>> ExtendedContext.quantize(Decimal('-0.1'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5053 | Decimal('-0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5054 | >>> ExtendedContext.quantize(Decimal('-0'), Decimal('1e+5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5055 | Decimal('-0E+5') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5056 | >>> ExtendedContext.quantize(Decimal('+35236450.6'), Decimal('1e-2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5057 | Decimal('NaN') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5058 | >>> ExtendedContext.quantize(Decimal('-35236450.6'), Decimal('1e-2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5059 | Decimal('NaN') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5060 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5061 | Decimal('217.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5062 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5063 | Decimal('217') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5064 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5065 | Decimal('2.2E+2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5066 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5067 | Decimal('2E+2') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5068 | >>> ExtendedContext.quantize(1, 2) |
| 5069 | Decimal('1') |
| 5070 | >>> ExtendedContext.quantize(Decimal(1), 2) |
| 5071 | Decimal('1') |
| 5072 | >>> ExtendedContext.quantize(1, Decimal(2)) |
| 5073 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5074 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5075 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5076 | return a.quantize(b, context=self) |
| 5077 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5078 | def radix(self): |
| 5079 | """Just returns 10, as this is Decimal, :) |
| 5080 | |
| 5081 | >>> ExtendedContext.radix() |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5082 | Decimal('10') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5083 | """ |
| 5084 | return Decimal(10) |
| 5085 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5086 | def remainder(self, a, b): |
| 5087 | """Returns the remainder from integer division. |
| 5088 | |
| 5089 | The result is the residue of the dividend after the operation of |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5090 | calculating integer division as described for divide-integer, rounded |
Neal Norwitz | 0d4c06e | 2007-04-25 06:30:05 +0000 | [diff] [blame] | 5091 | to precision digits if necessary. The sign of the result, if |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5092 | non-zero, is the same as that of the original dividend. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5093 | |
| 5094 | This operation will fail under the same conditions as integer division |
| 5095 | (that is, if integer division on the same two operands would fail, the |
| 5096 | remainder cannot be calculated). |
| 5097 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5098 | >>> ExtendedContext.remainder(Decimal('2.1'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5099 | Decimal('2.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5100 | >>> ExtendedContext.remainder(Decimal('10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5101 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5102 | >>> ExtendedContext.remainder(Decimal('-10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5103 | Decimal('-1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5104 | >>> ExtendedContext.remainder(Decimal('10.2'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5105 | Decimal('0.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5106 | >>> ExtendedContext.remainder(Decimal('10'), Decimal('0.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5107 | Decimal('0.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5108 | >>> ExtendedContext.remainder(Decimal('3.6'), Decimal('1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5109 | Decimal('1.0') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5110 | >>> ExtendedContext.remainder(22, 6) |
| 5111 | Decimal('4') |
| 5112 | >>> ExtendedContext.remainder(Decimal(22), 6) |
| 5113 | Decimal('4') |
| 5114 | >>> ExtendedContext.remainder(22, Decimal(6)) |
| 5115 | Decimal('4') |
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) |
| 5118 | r = a.__mod__(b, context=self) |
| 5119 | if r is NotImplemented: |
| 5120 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 5121 | else: |
| 5122 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5123 | |
| 5124 | def remainder_near(self, a, b): |
| 5125 | """Returns to be "a - b * n", where n is the integer nearest the exact |
| 5126 | 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] | 5127 | 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] | 5128 | sign of a. |
| 5129 | |
| 5130 | This operation will fail under the same conditions as integer division |
| 5131 | (that is, if integer division on the same two operands would fail, the |
| 5132 | remainder cannot be calculated). |
| 5133 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5134 | >>> ExtendedContext.remainder_near(Decimal('2.1'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5135 | Decimal('-0.9') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5136 | >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('6')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5137 | Decimal('-2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5138 | >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5139 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5140 | >>> ExtendedContext.remainder_near(Decimal('-10'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5141 | Decimal('-1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5142 | >>> ExtendedContext.remainder_near(Decimal('10.2'), Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5143 | Decimal('0.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5144 | >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('0.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5145 | Decimal('0.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5146 | >>> ExtendedContext.remainder_near(Decimal('3.6'), Decimal('1.3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5147 | Decimal('-0.3') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5148 | >>> ExtendedContext.remainder_near(3, 11) |
| 5149 | Decimal('3') |
| 5150 | >>> ExtendedContext.remainder_near(Decimal(3), 11) |
| 5151 | Decimal('3') |
| 5152 | >>> ExtendedContext.remainder_near(3, Decimal(11)) |
| 5153 | Decimal('3') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5154 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5155 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5156 | return a.remainder_near(b, context=self) |
| 5157 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5158 | def rotate(self, a, b): |
| 5159 | """Returns a rotated copy of a, b times. |
| 5160 | |
| 5161 | The coefficient of the result is a rotated copy of the digits in |
| 5162 | the coefficient of the first operand. The number of places of |
| 5163 | rotation is taken from the absolute value of the second operand, |
| 5164 | with the rotation being to the left if the second operand is |
| 5165 | positive or to the right otherwise. |
| 5166 | |
| 5167 | >>> ExtendedContext.rotate(Decimal('34'), Decimal('8')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5168 | Decimal('400000003') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5169 | >>> ExtendedContext.rotate(Decimal('12'), Decimal('9')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5170 | Decimal('12') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5171 | >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('-2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5172 | Decimal('891234567') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5173 | >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5174 | Decimal('123456789') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5175 | >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('+2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5176 | Decimal('345678912') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5177 | >>> ExtendedContext.rotate(1333333, 1) |
| 5178 | Decimal('13333330') |
| 5179 | >>> ExtendedContext.rotate(Decimal(1333333), 1) |
| 5180 | Decimal('13333330') |
| 5181 | >>> ExtendedContext.rotate(1333333, Decimal(1)) |
| 5182 | Decimal('13333330') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5183 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5184 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5185 | return a.rotate(b, context=self) |
| 5186 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5187 | def same_quantum(self, a, b): |
| 5188 | """Returns True if the two operands have the same exponent. |
| 5189 | |
| 5190 | The result is never affected by either the sign or the coefficient of |
| 5191 | either operand. |
| 5192 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5193 | >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.001')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5194 | False |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5195 | >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.01')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5196 | True |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5197 | >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('1')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5198 | False |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5199 | >>> ExtendedContext.same_quantum(Decimal('Inf'), Decimal('-Inf')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5200 | True |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5201 | >>> ExtendedContext.same_quantum(10000, -1) |
| 5202 | True |
| 5203 | >>> ExtendedContext.same_quantum(Decimal(10000), -1) |
| 5204 | True |
| 5205 | >>> ExtendedContext.same_quantum(10000, Decimal(-1)) |
| 5206 | True |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5207 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5208 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5209 | return a.same_quantum(b) |
| 5210 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5211 | def scaleb (self, a, b): |
| 5212 | """Returns the first operand after adding the second value its exp. |
| 5213 | |
| 5214 | >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('-2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5215 | Decimal('0.0750') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5216 | >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5217 | Decimal('7.50') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5218 | >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('3')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5219 | Decimal('7.50E+3') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5220 | >>> ExtendedContext.scaleb(1, 4) |
| 5221 | Decimal('1E+4') |
| 5222 | >>> ExtendedContext.scaleb(Decimal(1), 4) |
| 5223 | Decimal('1E+4') |
| 5224 | >>> ExtendedContext.scaleb(1, Decimal(4)) |
| 5225 | Decimal('1E+4') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5226 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5227 | a = _convert_other(a, raiseit=True) |
| 5228 | return a.scaleb(b, context=self) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5229 | |
| 5230 | def shift(self, a, b): |
| 5231 | """Returns a shifted copy of a, b times. |
| 5232 | |
| 5233 | The coefficient of the result is a shifted copy of the digits |
| 5234 | in the coefficient of the first operand. The number of places |
| 5235 | to shift is taken from the absolute value of the second operand, |
| 5236 | with the shift being to the left if the second operand is |
| 5237 | positive or to the right otherwise. Digits shifted into the |
| 5238 | coefficient are zeros. |
| 5239 | |
| 5240 | >>> ExtendedContext.shift(Decimal('34'), Decimal('8')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5241 | Decimal('400000000') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5242 | >>> ExtendedContext.shift(Decimal('12'), Decimal('9')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5243 | Decimal('0') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5244 | >>> ExtendedContext.shift(Decimal('123456789'), Decimal('-2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5245 | Decimal('1234567') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5246 | >>> ExtendedContext.shift(Decimal('123456789'), Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5247 | Decimal('123456789') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5248 | >>> ExtendedContext.shift(Decimal('123456789'), Decimal('+2')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5249 | Decimal('345678900') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5250 | >>> ExtendedContext.shift(88888888, 2) |
| 5251 | Decimal('888888800') |
| 5252 | >>> ExtendedContext.shift(Decimal(88888888), 2) |
| 5253 | Decimal('888888800') |
| 5254 | >>> ExtendedContext.shift(88888888, Decimal(2)) |
| 5255 | Decimal('888888800') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5256 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5257 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5258 | return a.shift(b, context=self) |
| 5259 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5260 | def sqrt(self, a): |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5261 | """Square root of a non-negative number to context precision. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5262 | |
| 5263 | If the result must be inexact, it is rounded using the round-half-even |
| 5264 | algorithm. |
| 5265 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5266 | >>> ExtendedContext.sqrt(Decimal('0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5267 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5268 | >>> ExtendedContext.sqrt(Decimal('-0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5269 | Decimal('-0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5270 | >>> ExtendedContext.sqrt(Decimal('0.39')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5271 | Decimal('0.624499800') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5272 | >>> ExtendedContext.sqrt(Decimal('100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5273 | Decimal('10') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5274 | >>> ExtendedContext.sqrt(Decimal('1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5275 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5276 | >>> ExtendedContext.sqrt(Decimal('1.0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5277 | Decimal('1.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5278 | >>> ExtendedContext.sqrt(Decimal('1.00')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5279 | Decimal('1.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5280 | >>> ExtendedContext.sqrt(Decimal('7')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5281 | Decimal('2.64575131') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5282 | >>> ExtendedContext.sqrt(Decimal('10')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5283 | Decimal('3.16227766') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5284 | >>> ExtendedContext.sqrt(2) |
| 5285 | Decimal('1.41421356') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5286 | >>> ExtendedContext.prec |
Raymond Hettinger | 6ea4845 | 2004-07-03 12:26:21 +0000 | [diff] [blame] | 5287 | 9 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5288 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5289 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5290 | return a.sqrt(context=self) |
| 5291 | |
| 5292 | def subtract(self, a, b): |
Georg Brandl | f33d01d | 2005-08-22 19:35:18 +0000 | [diff] [blame] | 5293 | """Return the difference between the two operands. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5294 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5295 | >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.07')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5296 | Decimal('0.23') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5297 | >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.30')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5298 | Decimal('0.00') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5299 | >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('2.07')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5300 | Decimal('-0.77') |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5301 | >>> ExtendedContext.subtract(8, 5) |
| 5302 | Decimal('3') |
| 5303 | >>> ExtendedContext.subtract(Decimal(8), 5) |
| 5304 | Decimal('3') |
| 5305 | >>> ExtendedContext.subtract(8, Decimal(5)) |
| 5306 | Decimal('3') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5307 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5308 | a = _convert_other(a, raiseit=True) |
| 5309 | r = a.__sub__(b, context=self) |
| 5310 | if r is NotImplemented: |
| 5311 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 5312 | else: |
| 5313 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5314 | |
| 5315 | def to_eng_string(self, a): |
| 5316 | """Converts a number to a string, using scientific notation. |
| 5317 | |
| 5318 | The operation is not affected by the context. |
| 5319 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5320 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5321 | return a.to_eng_string(context=self) |
| 5322 | |
| 5323 | def to_sci_string(self, a): |
| 5324 | """Converts a number to a string, using scientific notation. |
| 5325 | |
| 5326 | The operation is not affected by the context. |
| 5327 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5328 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5329 | return a.__str__(context=self) |
| 5330 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5331 | def to_integral_exact(self, a): |
| 5332 | """Rounds to an integer. |
| 5333 | |
| 5334 | When the operand has a negative exponent, the result is the same |
| 5335 | as using the quantize() operation using the given operand as the |
| 5336 | left-hand-operand, 1E+0 as the right-hand-operand, and the precision |
| 5337 | of the operand as the precision setting; Inexact and Rounded flags |
| 5338 | are allowed in this operation. The rounding mode is taken from the |
| 5339 | context. |
| 5340 | |
| 5341 | >>> ExtendedContext.to_integral_exact(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5342 | Decimal('2') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5343 | >>> ExtendedContext.to_integral_exact(Decimal('100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5344 | Decimal('100') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5345 | >>> ExtendedContext.to_integral_exact(Decimal('100.0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5346 | Decimal('100') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5347 | >>> ExtendedContext.to_integral_exact(Decimal('101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5348 | Decimal('102') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5349 | >>> ExtendedContext.to_integral_exact(Decimal('-101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5350 | Decimal('-102') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5351 | >>> ExtendedContext.to_integral_exact(Decimal('10E+5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5352 | Decimal('1.0E+6') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5353 | >>> ExtendedContext.to_integral_exact(Decimal('7.89E+77')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5354 | Decimal('7.89E+77') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5355 | >>> ExtendedContext.to_integral_exact(Decimal('-Inf')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5356 | Decimal('-Infinity') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5357 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5358 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5359 | return a.to_integral_exact(context=self) |
| 5360 | |
| 5361 | def to_integral_value(self, a): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5362 | """Rounds to an integer. |
| 5363 | |
| 5364 | When the operand has a negative exponent, the result is the same |
| 5365 | as using the quantize() operation using the given operand as the |
| 5366 | left-hand-operand, 1E+0 as the right-hand-operand, and the precision |
| 5367 | of the operand as the precision setting, except that no flags will |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5368 | be set. The rounding mode is taken from the context. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5369 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5370 | >>> ExtendedContext.to_integral_value(Decimal('2.1')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5371 | Decimal('2') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5372 | >>> ExtendedContext.to_integral_value(Decimal('100')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5373 | Decimal('100') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5374 | >>> ExtendedContext.to_integral_value(Decimal('100.0')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5375 | Decimal('100') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5376 | >>> ExtendedContext.to_integral_value(Decimal('101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5377 | Decimal('102') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5378 | >>> ExtendedContext.to_integral_value(Decimal('-101.5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5379 | Decimal('-102') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5380 | >>> ExtendedContext.to_integral_value(Decimal('10E+5')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5381 | Decimal('1.0E+6') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5382 | >>> ExtendedContext.to_integral_value(Decimal('7.89E+77')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5383 | Decimal('7.89E+77') |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5384 | >>> ExtendedContext.to_integral_value(Decimal('-Inf')) |
Raymond Hettinger | abe3237 | 2008-02-14 02:41:22 +0000 | [diff] [blame] | 5385 | Decimal('-Infinity') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5386 | """ |
Mark Dickinson | 6d8effb | 2010-02-18 14:27:02 +0000 | [diff] [blame] | 5387 | a = _convert_other(a, raiseit=True) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5388 | return a.to_integral_value(context=self) |
| 5389 | |
| 5390 | # the method name changed, but we provide also the old one, for compatibility |
| 5391 | to_integral = to_integral_value |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5392 | |
| 5393 | class _WorkRep(object): |
| 5394 | __slots__ = ('sign','int','exp') |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 5395 | # sign: 0 or 1 |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5396 | # int: int or long |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5397 | # exp: None, int, or string |
| 5398 | |
| 5399 | def __init__(self, value=None): |
| 5400 | if value is None: |
| 5401 | self.sign = None |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5402 | self.int = 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5403 | self.exp = None |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 5404 | elif isinstance(value, Decimal): |
| 5405 | self.sign = value._sign |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5406 | self.int = int(value._int) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5407 | self.exp = value._exp |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 5408 | else: |
| 5409 | # assert isinstance(value, tuple) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5410 | self.sign = value[0] |
| 5411 | self.int = value[1] |
| 5412 | self.exp = value[2] |
| 5413 | |
| 5414 | def __repr__(self): |
| 5415 | return "(%r, %r, %r)" % (self.sign, self.int, self.exp) |
| 5416 | |
| 5417 | __str__ = __repr__ |
| 5418 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5419 | |
| 5420 | |
Facundo Batista | e64acfa | 2007-12-17 14:18:42 +0000 | [diff] [blame] | 5421 | def _normalize(op1, op2, prec = 0): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5422 | """Normalizes op1, op2 to have the same exp and length of coefficient. |
| 5423 | |
| 5424 | Done during addition. |
| 5425 | """ |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5426 | if op1.exp < op2.exp: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5427 | tmp = op2 |
| 5428 | other = op1 |
| 5429 | else: |
| 5430 | tmp = op1 |
| 5431 | other = op2 |
| 5432 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5433 | # Let exp = min(tmp.exp - 1, tmp.adjusted() - precision - 1). |
| 5434 | # Then adding 10**exp to tmp has the same effect (after rounding) |
| 5435 | # as adding any positive quantity smaller than 10**exp; similarly |
| 5436 | # for subtraction. So if other is smaller than 10**exp we replace |
| 5437 | # 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] | 5438 | tmp_len = len(str(tmp.int)) |
| 5439 | other_len = len(str(other.int)) |
| 5440 | exp = tmp.exp + min(-1, tmp_len - prec - 2) |
| 5441 | if other_len + other.exp - 1 < exp: |
| 5442 | other.int = 1 |
| 5443 | other.exp = exp |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5444 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5445 | tmp.int *= 10 ** (tmp.exp - other.exp) |
| 5446 | tmp.exp = other.exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5447 | return op1, op2 |
| 5448 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5449 | ##### Integer arithmetic functions used by ln, log10, exp and __pow__ ##### |
| 5450 | |
| 5451 | # This function from Tim Peters was taken from here: |
| 5452 | # http://mail.python.org/pipermail/python-list/1999-July/007758.html |
| 5453 | # The correction being in the function definition is for speed, and |
| 5454 | # the whole function is not resolved with math.log because of avoiding |
| 5455 | # the use of floats. |
| 5456 | def _nbits(n, correction = { |
| 5457 | '0': 4, '1': 3, '2': 2, '3': 2, |
| 5458 | '4': 1, '5': 1, '6': 1, '7': 1, |
| 5459 | '8': 0, '9': 0, 'a': 0, 'b': 0, |
| 5460 | 'c': 0, 'd': 0, 'e': 0, 'f': 0}): |
| 5461 | """Number of bits in binary representation of the positive integer n, |
| 5462 | or 0 if n == 0. |
| 5463 | """ |
| 5464 | if n < 0: |
| 5465 | raise ValueError("The argument to _nbits should be nonnegative.") |
| 5466 | hex_n = "%x" % n |
| 5467 | return 4*len(hex_n) - correction[hex_n[0]] |
| 5468 | |
| 5469 | def _sqrt_nearest(n, a): |
| 5470 | """Closest integer to the square root of the positive integer n. a is |
| 5471 | an initial approximation to the square root. Any positive integer |
| 5472 | will do for a, but the closer a is to the square root of n the |
| 5473 | faster convergence will be. |
| 5474 | |
| 5475 | """ |
| 5476 | if n <= 0 or a <= 0: |
| 5477 | raise ValueError("Both arguments to _sqrt_nearest should be positive.") |
| 5478 | |
| 5479 | b=0 |
| 5480 | while a != b: |
| 5481 | b, a = a, a--n//a>>1 |
| 5482 | return a |
| 5483 | |
| 5484 | def _rshift_nearest(x, shift): |
| 5485 | """Given an integer x and a nonnegative integer shift, return closest |
| 5486 | integer to x / 2**shift; use round-to-even in case of a tie. |
| 5487 | |
| 5488 | """ |
| 5489 | b, q = 1L << shift, x >> shift |
| 5490 | return q + (2*(x & (b-1)) + (q&1) > b) |
| 5491 | |
| 5492 | def _div_nearest(a, b): |
| 5493 | """Closest integer to a/b, a and b positive integers; rounds to even |
| 5494 | in the case of a tie. |
| 5495 | |
| 5496 | """ |
| 5497 | q, r = divmod(a, b) |
| 5498 | return q + (2*r + (q&1) > b) |
| 5499 | |
| 5500 | def _ilog(x, M, L = 8): |
| 5501 | """Integer approximation to M*log(x/M), with absolute error boundable |
| 5502 | in terms only of x/M. |
| 5503 | |
| 5504 | Given positive integers x and M, return an integer approximation to |
| 5505 | M * log(x/M). For L = 8 and 0.1 <= x/M <= 10 the difference |
| 5506 | between the approximation and the exact result is at most 22. For |
| 5507 | L = 8 and 1.0 <= x/M <= 10.0 the difference is at most 15. In |
| 5508 | both cases these are upper bounds on the error; it will usually be |
| 5509 | much smaller.""" |
| 5510 | |
| 5511 | # The basic algorithm is the following: let log1p be the function |
| 5512 | # log1p(x) = log(1+x). Then log(x/M) = log1p((x-M)/M). We use |
| 5513 | # the reduction |
| 5514 | # |
| 5515 | # log1p(y) = 2*log1p(y/(1+sqrt(1+y))) |
| 5516 | # |
| 5517 | # repeatedly until the argument to log1p is small (< 2**-L in |
| 5518 | # absolute value). For small y we can use the Taylor series |
| 5519 | # expansion |
| 5520 | # |
| 5521 | # log1p(y) ~ y - y**2/2 + y**3/3 - ... - (-y)**T/T |
| 5522 | # |
| 5523 | # truncating at T such that y**T is small enough. The whole |
| 5524 | # computation is carried out in a form of fixed-point arithmetic, |
| 5525 | # with a real number z being represented by an integer |
| 5526 | # approximation to z*M. To avoid loss of precision, the y below |
| 5527 | # is actually an integer approximation to 2**R*y*M, where R is the |
| 5528 | # number of reductions performed so far. |
| 5529 | |
| 5530 | y = x-M |
| 5531 | # argument reduction; R = number of reductions performed |
| 5532 | R = 0 |
| 5533 | while (R <= L and long(abs(y)) << L-R >= M or |
| 5534 | R > L and abs(y) >> R-L >= M): |
| 5535 | y = _div_nearest(long(M*y) << 1, |
| 5536 | M + _sqrt_nearest(M*(M+_rshift_nearest(y, R)), M)) |
| 5537 | R += 1 |
| 5538 | |
| 5539 | # Taylor series with T terms |
| 5540 | T = -int(-10*len(str(M))//(3*L)) |
| 5541 | yshift = _rshift_nearest(y, R) |
| 5542 | w = _div_nearest(M, T) |
| 5543 | for k in xrange(T-1, 0, -1): |
| 5544 | w = _div_nearest(M, k) - _div_nearest(yshift*w, M) |
| 5545 | |
| 5546 | return _div_nearest(w*y, M) |
| 5547 | |
| 5548 | def _dlog10(c, e, p): |
| 5549 | """Given integers c, e and p with c > 0, p >= 0, compute an integer |
| 5550 | approximation to 10**p * log10(c*10**e), with an absolute error of |
| 5551 | at most 1. Assumes that c*10**e is not exactly 1.""" |
| 5552 | |
| 5553 | # increase precision by 2; compensate for this by dividing |
| 5554 | # final result by 100 |
| 5555 | p += 2 |
| 5556 | |
| 5557 | # write c*10**e as d*10**f with either: |
| 5558 | # f >= 0 and 1 <= d <= 10, or |
| 5559 | # f <= 0 and 0.1 <= d <= 1. |
| 5560 | # Thus for c*10**e close to 1, f = 0 |
| 5561 | l = len(str(c)) |
| 5562 | f = e+l - (e+l >= 1) |
| 5563 | |
| 5564 | if p > 0: |
| 5565 | M = 10**p |
| 5566 | k = e+p-f |
| 5567 | if k >= 0: |
| 5568 | c *= 10**k |
| 5569 | else: |
| 5570 | c = _div_nearest(c, 10**-k) |
| 5571 | |
| 5572 | log_d = _ilog(c, M) # error < 5 + 22 = 27 |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5573 | log_10 = _log10_digits(p) # error < 1 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5574 | log_d = _div_nearest(log_d*M, log_10) |
| 5575 | log_tenpower = f*M # exact |
| 5576 | else: |
| 5577 | log_d = 0 # error < 2.31 |
Neal Norwitz | 18aa388 | 2008-08-24 05:04:52 +0000 | [diff] [blame] | 5578 | log_tenpower = _div_nearest(f, 10**-p) # error < 0.5 |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5579 | |
| 5580 | return _div_nearest(log_tenpower+log_d, 100) |
| 5581 | |
| 5582 | def _dlog(c, e, p): |
| 5583 | """Given integers c, e and p with c > 0, compute an integer |
| 5584 | approximation to 10**p * log(c*10**e), with an absolute error of |
| 5585 | at most 1. Assumes that c*10**e is not exactly 1.""" |
| 5586 | |
| 5587 | # Increase precision by 2. The precision increase is compensated |
| 5588 | # for at the end with a division by 100. |
| 5589 | p += 2 |
| 5590 | |
| 5591 | # rewrite c*10**e as d*10**f with either f >= 0 and 1 <= d <= 10, |
| 5592 | # or f <= 0 and 0.1 <= d <= 1. Then we can compute 10**p * log(c*10**e) |
| 5593 | # as 10**p * log(d) + 10**p*f * log(10). |
| 5594 | l = len(str(c)) |
| 5595 | f = e+l - (e+l >= 1) |
| 5596 | |
| 5597 | # compute approximation to 10**p*log(d), with error < 27 |
| 5598 | if p > 0: |
| 5599 | k = e+p-f |
| 5600 | if k >= 0: |
| 5601 | c *= 10**k |
| 5602 | else: |
| 5603 | c = _div_nearest(c, 10**-k) # error of <= 0.5 in c |
| 5604 | |
| 5605 | # _ilog magnifies existing error in c by a factor of at most 10 |
| 5606 | log_d = _ilog(c, 10**p) # error < 5 + 22 = 27 |
| 5607 | else: |
| 5608 | # p <= 0: just approximate the whole thing by 0; error < 2.31 |
| 5609 | log_d = 0 |
| 5610 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5611 | # compute approximation to f*10**p*log(10), with error < 11. |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5612 | if f: |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5613 | extra = len(str(abs(f)))-1 |
| 5614 | if p + extra >= 0: |
| 5615 | # error in f * _log10_digits(p+extra) < |f| * 1 = |f| |
| 5616 | # after division, error < |f|/10**extra + 0.5 < 10 + 0.5 < 11 |
| 5617 | f_log_ten = _div_nearest(f*_log10_digits(p+extra), 10**extra) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5618 | else: |
| 5619 | f_log_ten = 0 |
| 5620 | else: |
| 5621 | f_log_ten = 0 |
| 5622 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5623 | # 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] | 5624 | return _div_nearest(f_log_ten + log_d, 100) |
| 5625 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5626 | class _Log10Memoize(object): |
| 5627 | """Class to compute, store, and allow retrieval of, digits of the |
| 5628 | constant log(10) = 2.302585.... This constant is needed by |
| 5629 | Decimal.ln, Decimal.log10, Decimal.exp and Decimal.__pow__.""" |
| 5630 | def __init__(self): |
| 5631 | self.digits = "23025850929940456840179914546843642076011014886" |
| 5632 | |
| 5633 | def getdigits(self, p): |
| 5634 | """Given an integer p >= 0, return floor(10**p)*log(10). |
| 5635 | |
| 5636 | For example, self.getdigits(3) returns 2302. |
| 5637 | """ |
| 5638 | # digits are stored as a string, for quick conversion to |
| 5639 | # integer in the case that we've already computed enough |
| 5640 | # digits; the stored digits should always be correct |
| 5641 | # (truncated, not rounded to nearest). |
| 5642 | if p < 0: |
| 5643 | raise ValueError("p should be nonnegative") |
| 5644 | |
| 5645 | if p >= len(self.digits): |
| 5646 | # compute p+3, p+6, p+9, ... digits; continue until at |
| 5647 | # least one of the extra digits is nonzero |
| 5648 | extra = 3 |
| 5649 | while True: |
| 5650 | # compute p+extra digits, correct to within 1ulp |
| 5651 | M = 10**(p+extra+2) |
| 5652 | digits = str(_div_nearest(_ilog(10*M, M), 100)) |
| 5653 | if digits[-extra:] != '0'*extra: |
| 5654 | break |
| 5655 | extra += 3 |
| 5656 | # keep all reliable digits so far; remove trailing zeros |
| 5657 | # and next nonzero digit |
| 5658 | self.digits = digits.rstrip('0')[:-1] |
| 5659 | return int(self.digits[:p+1]) |
| 5660 | |
| 5661 | _log10_digits = _Log10Memoize().getdigits |
| 5662 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5663 | def _iexp(x, M, L=8): |
| 5664 | """Given integers x and M, M > 0, such that x/M is small in absolute |
| 5665 | value, compute an integer approximation to M*exp(x/M). For 0 <= |
| 5666 | x/M <= 2.4, the absolute error in the result is bounded by 60 (and |
| 5667 | is usually much smaller).""" |
| 5668 | |
| 5669 | # Algorithm: to compute exp(z) for a real number z, first divide z |
| 5670 | # by a suitable power R of 2 so that |z/2**R| < 2**-L. Then |
| 5671 | # compute expm1(z/2**R) = exp(z/2**R) - 1 using the usual Taylor |
| 5672 | # series |
| 5673 | # |
| 5674 | # expm1(x) = x + x**2/2! + x**3/3! + ... |
| 5675 | # |
| 5676 | # Now use the identity |
| 5677 | # |
| 5678 | # expm1(2x) = expm1(x)*(expm1(x)+2) |
| 5679 | # |
| 5680 | # R times to compute the sequence expm1(z/2**R), |
| 5681 | # expm1(z/2**(R-1)), ... , exp(z/2), exp(z). |
| 5682 | |
| 5683 | # Find R such that x/2**R/M <= 2**-L |
| 5684 | R = _nbits((long(x)<<L)//M) |
| 5685 | |
| 5686 | # Taylor series. (2**L)**T > M |
| 5687 | T = -int(-10*len(str(M))//(3*L)) |
| 5688 | y = _div_nearest(x, T) |
| 5689 | Mshift = long(M)<<R |
| 5690 | for i in xrange(T-1, 0, -1): |
| 5691 | y = _div_nearest(x*(Mshift + y), Mshift * i) |
| 5692 | |
| 5693 | # Expansion |
| 5694 | for k in xrange(R-1, -1, -1): |
| 5695 | Mshift = long(M)<<(k+2) |
| 5696 | y = _div_nearest(y*(y+Mshift), Mshift) |
| 5697 | |
| 5698 | return M+y |
| 5699 | |
| 5700 | def _dexp(c, e, p): |
| 5701 | """Compute an approximation to exp(c*10**e), with p decimal places of |
| 5702 | precision. |
| 5703 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5704 | Returns integers d, f such that: |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5705 | |
| 5706 | 10**(p-1) <= d <= 10**p, and |
| 5707 | (d-1)*10**f < exp(c*10**e) < (d+1)*10**f |
| 5708 | |
| 5709 | In other words, d*10**f is an approximation to exp(c*10**e) with p |
| 5710 | digits of precision, and with an error in d of at most 1. This is |
| 5711 | almost, but not quite, the same as the error being < 1ulp: when d |
| 5712 | = 10**(p-1) the error could be up to 10 ulp.""" |
| 5713 | |
| 5714 | # we'll call iexp with M = 10**(p+2), giving p+3 digits of precision |
| 5715 | p += 2 |
| 5716 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5717 | # compute log(10) with extra precision = adjusted exponent of c*10**e |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5718 | extra = max(0, e + len(str(c)) - 1) |
| 5719 | q = p + extra |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5720 | |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5721 | # 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] | 5722 | # rounding down |
| 5723 | shift = e+q |
| 5724 | if shift >= 0: |
| 5725 | cshift = c*10**shift |
| 5726 | else: |
| 5727 | cshift = c//10**-shift |
Facundo Batista | be6c7ba | 2007-10-02 18:21:18 +0000 | [diff] [blame] | 5728 | quot, rem = divmod(cshift, _log10_digits(q)) |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5729 | |
| 5730 | # reduce remainder back to original precision |
| 5731 | rem = _div_nearest(rem, 10**extra) |
| 5732 | |
| 5733 | # error in result of _iexp < 120; error after division < 0.62 |
| 5734 | return _div_nearest(_iexp(rem, 10**p), 1000), quot - p + 3 |
| 5735 | |
| 5736 | def _dpower(xc, xe, yc, ye, p): |
| 5737 | """Given integers xc, xe, yc and ye representing Decimals x = xc*10**xe and |
| 5738 | y = yc*10**ye, compute x**y. Returns a pair of integers (c, e) such that: |
| 5739 | |
| 5740 | 10**(p-1) <= c <= 10**p, and |
| 5741 | (c-1)*10**e < x**y < (c+1)*10**e |
| 5742 | |
| 5743 | in other words, c*10**e is an approximation to x**y with p digits |
| 5744 | of precision, and with an error in c of at most 1. (This is |
| 5745 | almost, but not quite, the same as the error being < 1ulp: when c |
| 5746 | == 10**(p-1) we can only guarantee error < 10ulp.) |
| 5747 | |
| 5748 | We assume that: x is positive and not equal to 1, and y is nonzero. |
| 5749 | """ |
| 5750 | |
| 5751 | # Find b such that 10**(b-1) <= |y| <= 10**b |
| 5752 | b = len(str(abs(yc))) + ye |
| 5753 | |
| 5754 | # log(x) = lxc*10**(-p-b-1), to p+b+1 places after the decimal point |
| 5755 | lxc = _dlog(xc, xe, p+b+1) |
| 5756 | |
| 5757 | # compute product y*log(x) = yc*lxc*10**(-p-b-1+ye) = pc*10**(-p-1) |
| 5758 | shift = ye-b |
| 5759 | if shift >= 0: |
| 5760 | pc = lxc*yc*10**shift |
| 5761 | else: |
| 5762 | pc = _div_nearest(lxc*yc, 10**-shift) |
| 5763 | |
| 5764 | if pc == 0: |
| 5765 | # we prefer a result that isn't exactly 1; this makes it |
| 5766 | # easier to compute a correctly rounded result in __pow__ |
| 5767 | if ((len(str(xc)) + xe >= 1) == (yc > 0)): # if x**y > 1: |
| 5768 | coeff, exp = 10**(p-1)+1, 1-p |
| 5769 | else: |
| 5770 | coeff, exp = 10**p-1, -p |
| 5771 | else: |
| 5772 | coeff, exp = _dexp(pc, -(p+1), p+1) |
| 5773 | coeff = _div_nearest(coeff, 10) |
| 5774 | exp += 1 |
| 5775 | |
| 5776 | return coeff, exp |
| 5777 | |
| 5778 | def _log10_lb(c, correction = { |
| 5779 | '1': 100, '2': 70, '3': 53, '4': 40, '5': 31, |
| 5780 | '6': 23, '7': 16, '8': 10, '9': 5}): |
| 5781 | """Compute a lower bound for 100*log10(c) for a positive integer c.""" |
| 5782 | if c <= 0: |
| 5783 | raise ValueError("The argument to _log10_lb should be nonnegative.") |
| 5784 | str_c = str(c) |
| 5785 | return 100*len(str_c) - correction[str_c[0]] |
| 5786 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5787 | ##### Helper Functions #################################################### |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5788 | |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 5789 | def _convert_other(other, raiseit=False, allow_float=False): |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5790 | """Convert other to Decimal. |
| 5791 | |
| 5792 | Verifies that it's ok to use in an implicit construction. |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 5793 | If allow_float is true, allow conversion from float; this |
| 5794 | is used in the comparison methods (__eq__ and friends). |
| 5795 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5796 | """ |
| 5797 | if isinstance(other, Decimal): |
| 5798 | return other |
| 5799 | if isinstance(other, (int, long)): |
| 5800 | return Decimal(other) |
Mark Dickinson | 99d8096 | 2010-04-02 08:53:22 +0000 | [diff] [blame] | 5801 | if allow_float and isinstance(other, float): |
| 5802 | return Decimal.from_float(other) |
| 5803 | |
Facundo Batista | 353750c | 2007-09-13 18:13:15 +0000 | [diff] [blame] | 5804 | if raiseit: |
| 5805 | raise TypeError("Unable to convert %s to Decimal" % other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 5806 | return NotImplemented |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5807 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 5808 | ##### Setup Specific Contexts ############################################ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5809 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5810 | # The default context prototype used by Context() |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 5811 | # Is mutable, so that new contexts can have different default values |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5812 | |
| 5813 | DefaultContext = Context( |
Raymond Hettinger | 6ea4845 | 2004-07-03 12:26:21 +0000 | [diff] [blame] | 5814 | prec=28, rounding=ROUND_HALF_EVEN, |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 5815 | traps=[DivisionByZero, Overflow, InvalidOperation], |
| 5816 | flags=[], |
Raymond Hettinger | 99148e7 | 2004-07-14 19:56:56 +0000 | [diff] [blame] | 5817 | Emax=999999999, |
| 5818 | Emin=-999999999, |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 5819 | capitals=1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5820 | ) |
| 5821 | |
| 5822 | # Pre-made alternate contexts offered by the specification |
| 5823 | # Don't change these; the user should be able to select these |
| 5824 | # contexts and be able to reproduce results from other implementations |
| 5825 | # of the spec. |
| 5826 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5827 | BasicContext = Context( |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5828 | prec=9, rounding=ROUND_HALF_UP, |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 5829 | traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow], |
| 5830 | flags=[], |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5831 | ) |
| 5832 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5833 | ExtendedContext = Context( |
Raymond Hettinger | 6ea4845 | 2004-07-03 12:26:21 +0000 | [diff] [blame] | 5834 | prec=9, rounding=ROUND_HALF_EVEN, |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 5835 | traps=[], |
| 5836 | flags=[], |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5837 | ) |
| 5838 | |
| 5839 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5840 | ##### crud for parsing strings ############################################# |
Mark Dickinson | 6a123cb | 2008-02-24 18:12:36 +0000 | [diff] [blame] | 5841 | # |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5842 | # Regular expression used for parsing numeric strings. Additional |
| 5843 | # comments: |
| 5844 | # |
| 5845 | # 1. Uncomment the two '\s*' lines to allow leading and/or trailing |
| 5846 | # whitespace. But note that the specification disallows whitespace in |
| 5847 | # a numeric string. |
| 5848 | # |
| 5849 | # 2. For finite numbers (not infinities and NaNs) the body of the |
| 5850 | # number between the optional sign and the optional exponent must have |
| 5851 | # at least one decimal digit, possibly after the decimal point. The |
| 5852 | # lookahead expression '(?=\d|\.\d)' checks this. |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5853 | |
| 5854 | import re |
Mark Dickinson | 70c3289 | 2008-07-02 09:37:01 +0000 | [diff] [blame] | 5855 | _parser = re.compile(r""" # A numeric string consists of: |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5856 | # \s* |
Mark Dickinson | 70c3289 | 2008-07-02 09:37:01 +0000 | [diff] [blame] | 5857 | (?P<sign>[-+])? # an optional sign, followed by either... |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5858 | ( |
Mark Dickinson | 4326ad8 | 2009-08-02 10:59:36 +0000 | [diff] [blame] | 5859 | (?=\d|\.\d) # ...a number (with at least one digit) |
| 5860 | (?P<int>\d*) # having a (possibly empty) integer part |
| 5861 | (\.(?P<frac>\d*))? # followed by an optional fractional part |
| 5862 | (E(?P<exp>[-+]?\d+))? # followed by an optional exponent, or... |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5863 | | |
Mark Dickinson | 70c3289 | 2008-07-02 09:37:01 +0000 | [diff] [blame] | 5864 | Inf(inity)? # ...an infinity, or... |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5865 | | |
Mark Dickinson | 70c3289 | 2008-07-02 09:37:01 +0000 | [diff] [blame] | 5866 | (?P<signal>s)? # ...an (optionally signaling) |
| 5867 | NaN # NaN |
Mark Dickinson | 4326ad8 | 2009-08-02 10:59:36 +0000 | [diff] [blame] | 5868 | (?P<diag>\d*) # with (possibly empty) diagnostic info. |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5869 | ) |
| 5870 | # \s* |
Mark Dickinson | 59bc20b | 2008-01-12 01:56:00 +0000 | [diff] [blame] | 5871 | \Z |
Mark Dickinson | 4326ad8 | 2009-08-02 10:59:36 +0000 | [diff] [blame] | 5872 | """, re.VERBOSE | re.IGNORECASE | re.UNICODE).match |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5873 | |
Facundo Batista | 2ec7415 | 2007-12-03 17:55:00 +0000 | [diff] [blame] | 5874 | _all_zeros = re.compile('0*$').match |
| 5875 | _exact_half = re.compile('50*$').match |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5876 | |
| 5877 | ##### PEP3101 support functions ############################################## |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5878 | # The functions in this section have little to do with the Decimal |
| 5879 | # class, and could potentially be reused or adapted for other pure |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5880 | # Python numeric classes that want to implement __format__ |
| 5881 | # |
| 5882 | # A format specifier for Decimal looks like: |
| 5883 | # |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5884 | # [[fill]align][sign][0][minimumwidth][,][.precision][type] |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5885 | |
| 5886 | _parse_format_specifier_regex = re.compile(r"""\A |
| 5887 | (?: |
| 5888 | (?P<fill>.)? |
| 5889 | (?P<align>[<>=^]) |
| 5890 | )? |
| 5891 | (?P<sign>[-+ ])? |
| 5892 | (?P<zeropad>0)? |
| 5893 | (?P<minimumwidth>(?!0)\d+)? |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5894 | (?P<thousands_sep>,)? |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5895 | (?:\.(?P<precision>0|(?!0)\d+))? |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5896 | (?P<type>[eEfFgGn%])? |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5897 | \Z |
| 5898 | """, re.VERBOSE) |
| 5899 | |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 5900 | del re |
| 5901 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5902 | # The locale module is only needed for the 'n' format specifier. The |
| 5903 | # rest of the PEP 3101 code functions quite happily without it, so we |
| 5904 | # don't care too much if locale isn't present. |
| 5905 | try: |
| 5906 | import locale as _locale |
| 5907 | except ImportError: |
| 5908 | pass |
| 5909 | |
| 5910 | def _parse_format_specifier(format_spec, _localeconv=None): |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5911 | """Parse and validate a format specifier. |
| 5912 | |
| 5913 | Turns a standard numeric format specifier into a dict, with the |
| 5914 | following entries: |
| 5915 | |
| 5916 | fill: fill character to pad field to minimum width |
| 5917 | align: alignment type, either '<', '>', '=' or '^' |
| 5918 | sign: either '+', '-' or ' ' |
| 5919 | minimumwidth: nonnegative integer giving minimum width |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5920 | zeropad: boolean, indicating whether to pad with zeros |
| 5921 | thousands_sep: string to use as thousands separator, or '' |
| 5922 | grouping: grouping for thousands separators, in format |
| 5923 | used by localeconv |
| 5924 | decimal_point: string to use for decimal point |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5925 | precision: nonnegative integer giving precision, or None |
| 5926 | type: one of the characters 'eEfFgG%', or None |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5927 | unicode: boolean (always True for Python 3.x) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5928 | |
| 5929 | """ |
| 5930 | m = _parse_format_specifier_regex.match(format_spec) |
| 5931 | if m is None: |
| 5932 | raise ValueError("Invalid format specifier: " + format_spec) |
| 5933 | |
| 5934 | # get the dictionary |
| 5935 | format_dict = m.groupdict() |
| 5936 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5937 | # zeropad; defaults for fill and alignment. If zero padding |
| 5938 | # is requested, the fill and align fields should be absent. |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5939 | fill = format_dict['fill'] |
| 5940 | align = format_dict['align'] |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5941 | format_dict['zeropad'] = (format_dict['zeropad'] is not None) |
| 5942 | if format_dict['zeropad']: |
| 5943 | if fill is not None: |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5944 | raise ValueError("Fill character conflicts with '0'" |
| 5945 | " in format specifier: " + format_spec) |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5946 | if align is not None: |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5947 | raise ValueError("Alignment conflicts with '0' in " |
| 5948 | "format specifier: " + format_spec) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5949 | format_dict['fill'] = fill or ' ' |
Mark Dickinson | 5cfa804 | 2009-09-08 20:20:19 +0000 | [diff] [blame] | 5950 | # PEP 3101 originally specified that the default alignment should |
| 5951 | # be left; it was later agreed that right-aligned makes more sense |
| 5952 | # for numeric types. See http://bugs.python.org/issue6857. |
| 5953 | format_dict['align'] = align or '>' |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5954 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5955 | # default sign handling: '-' for negative, '' for positive |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5956 | if format_dict['sign'] is None: |
| 5957 | format_dict['sign'] = '-' |
| 5958 | |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5959 | # minimumwidth defaults to 0; precision remains None if not given |
| 5960 | format_dict['minimumwidth'] = int(format_dict['minimumwidth'] or '0') |
| 5961 | if format_dict['precision'] is not None: |
| 5962 | format_dict['precision'] = int(format_dict['precision']) |
| 5963 | |
| 5964 | # if format type is 'g' or 'G' then a precision of 0 makes little |
| 5965 | # sense; convert it to 1. Same if format type is unspecified. |
| 5966 | if format_dict['precision'] == 0: |
Mark Dickinson | 491ea55 | 2009-09-07 16:17:41 +0000 | [diff] [blame] | 5967 | if format_dict['type'] is None or format_dict['type'] in 'gG': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5968 | format_dict['precision'] = 1 |
| 5969 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5970 | # determine thousands separator, grouping, and decimal separator, and |
| 5971 | # add appropriate entries to format_dict |
| 5972 | if format_dict['type'] == 'n': |
| 5973 | # apart from separators, 'n' behaves just like 'g' |
| 5974 | format_dict['type'] = 'g' |
| 5975 | if _localeconv is None: |
| 5976 | _localeconv = _locale.localeconv() |
| 5977 | if format_dict['thousands_sep'] is not None: |
| 5978 | raise ValueError("Explicit thousands separator conflicts with " |
| 5979 | "'n' type in format specifier: " + format_spec) |
| 5980 | format_dict['thousands_sep'] = _localeconv['thousands_sep'] |
| 5981 | format_dict['grouping'] = _localeconv['grouping'] |
| 5982 | format_dict['decimal_point'] = _localeconv['decimal_point'] |
| 5983 | else: |
| 5984 | if format_dict['thousands_sep'] is None: |
| 5985 | format_dict['thousands_sep'] = '' |
| 5986 | format_dict['grouping'] = [3, 0] |
| 5987 | format_dict['decimal_point'] = '.' |
| 5988 | |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5989 | # record whether return type should be str or unicode |
| 5990 | format_dict['unicode'] = isinstance(format_spec, unicode) |
| 5991 | |
| 5992 | return format_dict |
| 5993 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5994 | def _format_align(sign, body, spec): |
| 5995 | """Given an unpadded, non-aligned numeric string 'body' and sign |
Ezio Melotti | 24b07bc | 2011-03-15 18:55:01 +0200 | [diff] [blame] | 5996 | string 'sign', add padding and alignment conforming to the given |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 5997 | format specifier dictionary 'spec' (as produced by |
| 5998 | parse_format_specifier). |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 5999 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 6000 | Also converts result to unicode if necessary. |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 6001 | |
| 6002 | """ |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 6003 | # how much extra space do we have to play with? |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 6004 | minimumwidth = spec['minimumwidth'] |
| 6005 | fill = spec['fill'] |
| 6006 | padding = fill*(minimumwidth - len(sign) - len(body)) |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 6007 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 6008 | align = spec['align'] |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 6009 | if align == '<': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 6010 | result = sign + body + padding |
Mark Dickinson | b065e52 | 2009-03-17 18:01:03 +0000 | [diff] [blame] | 6011 | elif align == '>': |
| 6012 | result = padding + sign + body |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 6013 | elif align == '=': |
| 6014 | result = sign + padding + body |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 6015 | elif align == '^': |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 6016 | half = len(padding)//2 |
| 6017 | result = padding[:half] + sign + body + padding[half:] |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 6018 | else: |
| 6019 | raise ValueError('Unrecognised alignment field') |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 6020 | |
| 6021 | # make sure that result is unicode if necessary |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 6022 | if spec['unicode']: |
Mark Dickinson | 1ddf1d8 | 2008-02-29 02:16:37 +0000 | [diff] [blame] | 6023 | result = unicode(result) |
| 6024 | |
| 6025 | return result |
Facundo Batista | 72bc54f | 2007-11-23 17:59:00 +0000 | [diff] [blame] | 6026 | |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 6027 | def _group_lengths(grouping): |
| 6028 | """Convert a localeconv-style grouping into a (possibly infinite) |
| 6029 | iterable of integers representing group lengths. |
| 6030 | |
| 6031 | """ |
| 6032 | # The result from localeconv()['grouping'], and the input to this |
| 6033 | # function, should be a list of integers in one of the |
| 6034 | # following three forms: |
| 6035 | # |
| 6036 | # (1) an empty list, or |
| 6037 | # (2) nonempty list of positive integers + [0] |
| 6038 | # (3) list of positive integers + [locale.CHAR_MAX], or |
| 6039 | |
| 6040 | from itertools import chain, repeat |
| 6041 | if not grouping: |
| 6042 | return [] |
| 6043 | elif grouping[-1] == 0 and len(grouping) >= 2: |
| 6044 | return chain(grouping[:-1], repeat(grouping[-2])) |
| 6045 | elif grouping[-1] == _locale.CHAR_MAX: |
| 6046 | return grouping[:-1] |
| 6047 | else: |
| 6048 | raise ValueError('unrecognised format for grouping') |
| 6049 | |
| 6050 | def _insert_thousands_sep(digits, spec, min_width=1): |
| 6051 | """Insert thousands separators into a digit string. |
| 6052 | |
| 6053 | spec is a dictionary whose keys should include 'thousands_sep' and |
| 6054 | 'grouping'; typically it's the result of parsing the format |
| 6055 | specifier using _parse_format_specifier. |
| 6056 | |
| 6057 | The min_width keyword argument gives the minimum length of the |
| 6058 | result, which will be padded on the left with zeros if necessary. |
| 6059 | |
| 6060 | If necessary, the zero padding adds an extra '0' on the left to |
| 6061 | avoid a leading thousands separator. For example, inserting |
| 6062 | commas every three digits in '123456', with min_width=8, gives |
| 6063 | '0,123,456', even though that has length 9. |
| 6064 | |
| 6065 | """ |
| 6066 | |
| 6067 | sep = spec['thousands_sep'] |
| 6068 | grouping = spec['grouping'] |
| 6069 | |
| 6070 | groups = [] |
| 6071 | for l in _group_lengths(grouping): |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 6072 | if l <= 0: |
| 6073 | raise ValueError("group length should be positive") |
| 6074 | # max(..., 1) forces at least 1 digit to the left of a separator |
| 6075 | l = min(max(len(digits), min_width, 1), l) |
| 6076 | groups.append('0'*(l - len(digits)) + digits[-l:]) |
| 6077 | digits = digits[:-l] |
| 6078 | min_width -= l |
| 6079 | if not digits and min_width <= 0: |
| 6080 | break |
Mark Dickinson | b14514a | 2009-03-18 08:22:51 +0000 | [diff] [blame] | 6081 | min_width -= len(sep) |
Mark Dickinson | 277859d | 2009-03-17 23:03:46 +0000 | [diff] [blame] | 6082 | else: |
| 6083 | l = max(len(digits), min_width, 1) |
| 6084 | groups.append('0'*(l - len(digits)) + digits[-l:]) |
| 6085 | return sep.join(reversed(groups)) |
| 6086 | |
| 6087 | def _format_sign(is_negative, spec): |
| 6088 | """Determine sign character.""" |
| 6089 | |
| 6090 | if is_negative: |
| 6091 | return '-' |
| 6092 | elif spec['sign'] in ' +': |
| 6093 | return spec['sign'] |
| 6094 | else: |
| 6095 | return '' |
| 6096 | |
| 6097 | def _format_number(is_negative, intpart, fracpart, exp, spec): |
| 6098 | """Format a number, given the following data: |
| 6099 | |
| 6100 | is_negative: true if the number is negative, else false |
| 6101 | intpart: string of digits that must appear before the decimal point |
| 6102 | fracpart: string of digits that must come after the point |
| 6103 | exp: exponent, as an integer |
| 6104 | spec: dictionary resulting from parsing the format specifier |
| 6105 | |
| 6106 | This function uses the information in spec to: |
| 6107 | insert separators (decimal separator and thousands separators) |
| 6108 | format the sign |
| 6109 | format the exponent |
| 6110 | add trailing '%' for the '%' type |
| 6111 | zero-pad if necessary |
| 6112 | fill and align if necessary |
| 6113 | """ |
| 6114 | |
| 6115 | sign = _format_sign(is_negative, spec) |
| 6116 | |
| 6117 | if fracpart: |
| 6118 | fracpart = spec['decimal_point'] + fracpart |
| 6119 | |
| 6120 | if exp != 0 or spec['type'] in 'eE': |
| 6121 | echar = {'E': 'E', 'e': 'e', 'G': 'E', 'g': 'e'}[spec['type']] |
| 6122 | fracpart += "{0}{1:+}".format(echar, exp) |
| 6123 | if spec['type'] == '%': |
| 6124 | fracpart += '%' |
| 6125 | |
| 6126 | if spec['zeropad']: |
| 6127 | min_width = spec['minimumwidth'] - len(fracpart) - len(sign) |
| 6128 | else: |
| 6129 | min_width = 0 |
| 6130 | intpart = _insert_thousands_sep(intpart, spec, min_width) |
| 6131 | |
| 6132 | return _format_align(sign, intpart+fracpart, spec) |
| 6133 | |
| 6134 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 6135 | ##### Useful Constants (internal use only) ################################ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6136 | |
Facundo Batista | 59c5884 | 2007-04-10 12:58:45 +0000 | [diff] [blame] | 6137 | # Reusable defaults |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 6138 | _Infinity = Decimal('Inf') |
| 6139 | _NegativeInfinity = Decimal('-Inf') |
Mark Dickinson | c5de096 | 2009-01-02 23:07:08 +0000 | [diff] [blame] | 6140 | _NaN = Decimal('NaN') |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 6141 | _Zero = Decimal(0) |
| 6142 | _One = Decimal(1) |
| 6143 | _NegativeOne = Decimal(-1) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6144 | |
Raymond Hettinger | b7e835b | 2009-01-03 19:08:10 +0000 | [diff] [blame] | 6145 | # _SignedInfinity[sign] is infinity w/ that sign |
| 6146 | _SignedInfinity = (_Infinity, _NegativeInfinity) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6147 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6148 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6149 | |
| 6150 | if __name__ == '__main__': |
| 6151 | import doctest, sys |
| 6152 | doctest.testmod(sys.modules[__name__]) |