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 | |
Facundo Batista | 6ab2479 | 2009-02-16 15:41:37 +0000 | [diff] [blame] | 10 | # This module should be kept in sync with the latest updates of the |
| 11 | # IBM specification as it evolves. Those updates will be treated |
Raymond Hettinger | 27dbcf2 | 2004-08-19 22:39:55 +0000 | [diff] [blame] | 12 | # as bug fixes (deviation from the spec is a compatibility, usability |
| 13 | # bug) and will be backported. At this point the spec is stabilizing |
| 14 | # and the updates are becoming fewer, smaller, and less significant. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 15 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 16 | """ |
Facundo Batista | 6ab2479 | 2009-02-16 15:41:37 +0000 | [diff] [blame] | 17 | This is an implementation of decimal floating point arithmetic based on |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 18 | the General Decimal Arithmetic Specification: |
| 19 | |
Raymond Hettinger | 960dc36 | 2009-04-21 03:43:15 +0000 | [diff] [blame] | 20 | http://speleotrove.com/decimal/decarith.html |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 21 | |
Raymond Hettinger | 0ea241e | 2004-07-04 13:53:24 +0000 | [diff] [blame] | 22 | and IEEE standard 854-1987: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 23 | |
| 24 | www.cs.berkeley.edu/~ejr/projects/754/private/drafts/854-1987/dir.html |
| 25 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 26 | Decimal floating point has finite precision with arbitrarily large bounds. |
| 27 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 28 | The purpose of this module is to support arithmetic using familiar |
| 29 | "schoolhouse" rules and to avoid some of the tricky representation |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 30 | issues associated with binary floating point. The package is especially |
| 31 | useful for financial applications or for contexts where users have |
| 32 | expectations that are at odds with binary floating point (for instance, |
| 33 | in binary floating point, 1.00 % 0.1 gives 0.09999999999999995 instead |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 34 | of the expected Decimal('0.00') returned by decimal floating point). |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 35 | |
| 36 | Here are some examples of using the decimal module: |
| 37 | |
| 38 | >>> from decimal import * |
Raymond Hettinger | bd7f76d | 2004-07-08 00:49:18 +0000 | [diff] [blame] | 39 | >>> setcontext(ExtendedContext) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 40 | >>> Decimal(0) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 41 | Decimal('0') |
| 42 | >>> Decimal('1') |
| 43 | Decimal('1') |
| 44 | >>> Decimal('-.0123') |
| 45 | Decimal('-0.0123') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 46 | >>> Decimal(123456) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 47 | Decimal('123456') |
| 48 | >>> Decimal('123.45e12345678901234567890') |
| 49 | Decimal('1.2345E+12345678901234567892') |
| 50 | >>> Decimal('1.33') + Decimal('1.27') |
| 51 | Decimal('2.60') |
| 52 | >>> Decimal('12.34') + Decimal('3.87') - Decimal('18.41') |
| 53 | Decimal('-2.20') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 54 | >>> dig = Decimal(1) |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 55 | >>> print(dig / Decimal(3)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 56 | 0.333333333 |
| 57 | >>> getcontext().prec = 18 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 58 | >>> print(dig / Decimal(3)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 59 | 0.333333333333333333 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 60 | >>> print(dig.sqrt()) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 61 | 1 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 62 | >>> print(Decimal(3).sqrt()) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 63 | 1.73205080756887729 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 64 | >>> print(Decimal(3) ** 123) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 65 | 4.85192780976896427E+58 |
| 66 | >>> inf = Decimal(1) / Decimal(0) |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 67 | >>> print(inf) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 68 | Infinity |
| 69 | >>> neginf = Decimal(-1) / Decimal(0) |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 70 | >>> print(neginf) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 71 | -Infinity |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 72 | >>> print(neginf + inf) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 73 | NaN |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 74 | >>> print(neginf * inf) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 75 | -Infinity |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 76 | >>> print(dig / 0) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 77 | Infinity |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 78 | >>> getcontext().traps[DivisionByZero] = 1 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 79 | >>> print(dig / 0) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 80 | Traceback (most recent call last): |
| 81 | ... |
| 82 | ... |
| 83 | ... |
Guido van Rossum | 6a2a2a0 | 2006-08-26 20:37:44 +0000 | [diff] [blame] | 84 | decimal.DivisionByZero: x / 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 85 | >>> c = Context() |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 86 | >>> c.traps[InvalidOperation] = 0 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 87 | >>> print(c.flags[InvalidOperation]) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 88 | 0 |
| 89 | >>> c.divide(Decimal(0), Decimal(0)) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 90 | Decimal('NaN') |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 91 | >>> c.traps[InvalidOperation] = 1 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 92 | >>> print(c.flags[InvalidOperation]) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 93 | 1 |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 94 | >>> c.flags[InvalidOperation] = 0 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 95 | >>> print(c.flags[InvalidOperation]) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 96 | 0 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 97 | >>> print(c.divide(Decimal(0), Decimal(0))) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 98 | Traceback (most recent call last): |
| 99 | ... |
| 100 | ... |
| 101 | ... |
Guido van Rossum | 6a2a2a0 | 2006-08-26 20:37:44 +0000 | [diff] [blame] | 102 | decimal.InvalidOperation: 0 / 0 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 103 | >>> print(c.flags[InvalidOperation]) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 104 | 1 |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 105 | >>> c.flags[InvalidOperation] = 0 |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 106 | >>> c.traps[InvalidOperation] = 0 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 107 | >>> print(c.divide(Decimal(0), Decimal(0))) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 108 | NaN |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 109 | >>> print(c.flags[InvalidOperation]) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 110 | 1 |
| 111 | >>> |
| 112 | """ |
| 113 | |
| 114 | __all__ = [ |
| 115 | # Two major classes |
| 116 | 'Decimal', 'Context', |
| 117 | |
| 118 | # Contexts |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 119 | 'DefaultContext', 'BasicContext', 'ExtendedContext', |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 120 | |
| 121 | # Exceptions |
Raymond Hettinger | d87ac8f | 2004-07-09 10:52:54 +0000 | [diff] [blame] | 122 | 'DecimalException', 'Clamped', 'InvalidOperation', 'DivisionByZero', |
| 123 | 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow', |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 124 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 125 | # Constants for use in setting up contexts |
| 126 | 'ROUND_DOWN', 'ROUND_HALF_UP', 'ROUND_HALF_EVEN', 'ROUND_CEILING', |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 127 | 'ROUND_FLOOR', 'ROUND_UP', 'ROUND_HALF_DOWN', 'ROUND_05UP', |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 128 | |
| 129 | # Functions for manipulating contexts |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 130 | 'setcontext', 'getcontext', 'localcontext' |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 131 | ] |
| 132 | |
Raymond Hettinger | 960dc36 | 2009-04-21 03:43:15 +0000 | [diff] [blame] | 133 | __version__ = '1.70' # Highest version of the spec this complies with |
| 134 | |
Raymond Hettinger | eb26084 | 2005-06-07 18:52:34 +0000 | [diff] [blame] | 135 | import copy as _copy |
Raymond Hettinger | 771ed76 | 2009-01-03 19:20:32 +0000 | [diff] [blame] | 136 | import math as _math |
Raymond Hettinger | 82417ca | 2009-02-03 03:54:28 +0000 | [diff] [blame] | 137 | import numbers as _numbers |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 138 | |
Christian Heimes | 25bb783 | 2008-01-11 16:17:00 +0000 | [diff] [blame] | 139 | try: |
| 140 | from collections import namedtuple as _namedtuple |
| 141 | DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent') |
| 142 | except ImportError: |
| 143 | DecimalTuple = lambda *args: args |
| 144 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 145 | # Rounding |
Raymond Hettinger | 0ea241e | 2004-07-04 13:53:24 +0000 | [diff] [blame] | 146 | ROUND_DOWN = 'ROUND_DOWN' |
| 147 | ROUND_HALF_UP = 'ROUND_HALF_UP' |
| 148 | ROUND_HALF_EVEN = 'ROUND_HALF_EVEN' |
| 149 | ROUND_CEILING = 'ROUND_CEILING' |
| 150 | ROUND_FLOOR = 'ROUND_FLOOR' |
| 151 | ROUND_UP = 'ROUND_UP' |
| 152 | ROUND_HALF_DOWN = 'ROUND_HALF_DOWN' |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 153 | ROUND_05UP = 'ROUND_05UP' |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 154 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 155 | # Errors |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 156 | |
| 157 | class DecimalException(ArithmeticError): |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 158 | """Base exception class. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 159 | |
| 160 | Used exceptions derive from this. |
| 161 | If an exception derives from another exception besides this (such as |
| 162 | Underflow (Inexact, Rounded, Subnormal) that indicates that it is only |
| 163 | called if the others are present. This isn't actually used for |
| 164 | anything, though. |
| 165 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 166 | handle -- Called when context._raise_error is called and the |
| 167 | trap_enabler is set. First argument is self, second is the |
| 168 | context. More arguments can be given, those being after |
| 169 | the explanation in _raise_error (For example, |
| 170 | context._raise_error(NewError, '(-x)!', self._sign) would |
| 171 | call NewError().handle(context, self._sign).) |
| 172 | |
| 173 | To define a new exception, it should be sufficient to have it derive |
| 174 | from DecimalException. |
| 175 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 176 | def handle(self, context, *args): |
| 177 | pass |
| 178 | |
| 179 | |
| 180 | class Clamped(DecimalException): |
| 181 | """Exponent of a 0 changed to fit bounds. |
| 182 | |
| 183 | This occurs and signals clamped if the exponent of a result has been |
| 184 | altered in order to fit the constraints of a specific concrete |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 185 | representation. This may occur when the exponent of a zero result would |
| 186 | be outside the bounds of a representation, or when a large normal |
| 187 | number would have an encoded exponent that cannot be represented. In |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 188 | this latter case, the exponent is reduced to fit and the corresponding |
| 189 | number of zero digits are appended to the coefficient ("fold-down"). |
| 190 | """ |
| 191 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 192 | class InvalidOperation(DecimalException): |
| 193 | """An invalid operation was performed. |
| 194 | |
| 195 | Various bad things cause this: |
| 196 | |
| 197 | Something creates a signaling NaN |
| 198 | -INF + INF |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 199 | 0 * (+-)INF |
| 200 | (+-)INF / (+-)INF |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 201 | x % 0 |
| 202 | (+-)INF % x |
| 203 | x._rescale( non-integer ) |
| 204 | sqrt(-x) , x > 0 |
| 205 | 0 ** 0 |
| 206 | x ** (non-integer) |
| 207 | x ** (+-)INF |
| 208 | An operand is invalid |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 209 | |
| 210 | The result of the operation after these is a quiet positive NaN, |
| 211 | except when the cause is a signaling NaN, in which case the result is |
| 212 | also a quiet NaN, but with the original sign, and an optional |
| 213 | diagnostic information. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 214 | """ |
| 215 | def handle(self, context, *args): |
| 216 | if args: |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 217 | ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True) |
| 218 | return ans._fix_nan(context) |
Mark Dickinson | f923641 | 2009-01-02 23:23:21 +0000 | [diff] [blame] | 219 | return _NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 220 | |
| 221 | class ConversionSyntax(InvalidOperation): |
| 222 | """Trying to convert badly formed string. |
| 223 | |
| 224 | This occurs and signals invalid-operation if an string is being |
| 225 | converted to a number and it does not conform to the numeric string |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 226 | syntax. The result is [0,qNaN]. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 227 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 228 | def handle(self, context, *args): |
Mark Dickinson | f923641 | 2009-01-02 23:23:21 +0000 | [diff] [blame] | 229 | return _NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 230 | |
| 231 | class DivisionByZero(DecimalException, ZeroDivisionError): |
| 232 | """Division by 0. |
| 233 | |
| 234 | This occurs and signals division-by-zero if division of a finite number |
| 235 | by zero was attempted (during a divide-integer or divide operation, or a |
| 236 | power operation with negative right-hand operand), and the dividend was |
| 237 | not zero. |
| 238 | |
| 239 | The result of the operation is [sign,inf], where sign is the exclusive |
| 240 | or of the signs of the operands for divide, or is 1 for an odd power of |
| 241 | -0, for power. |
| 242 | """ |
| 243 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 244 | def handle(self, context, sign, *args): |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 245 | return _SignedInfinity[sign] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 246 | |
| 247 | class DivisionImpossible(InvalidOperation): |
| 248 | """Cannot perform the division adequately. |
| 249 | |
| 250 | This occurs and signals invalid-operation if the integer result of a |
| 251 | divide-integer or remainder operation had too many digits (would be |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 252 | longer than precision). The result is [0,qNaN]. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 253 | """ |
| 254 | |
| 255 | def handle(self, context, *args): |
Mark Dickinson | f923641 | 2009-01-02 23:23:21 +0000 | [diff] [blame] | 256 | return _NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 257 | |
| 258 | class DivisionUndefined(InvalidOperation, ZeroDivisionError): |
| 259 | """Undefined result of division. |
| 260 | |
| 261 | This occurs and signals invalid-operation if division by zero was |
| 262 | attempted (during a divide-integer, divide, or remainder operation), and |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 263 | the dividend is also zero. The result is [0,qNaN]. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 264 | """ |
| 265 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 266 | def handle(self, context, *args): |
Mark Dickinson | f923641 | 2009-01-02 23:23:21 +0000 | [diff] [blame] | 267 | return _NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 268 | |
| 269 | class Inexact(DecimalException): |
| 270 | """Had to round, losing information. |
| 271 | |
| 272 | This occurs and signals inexact whenever the result of an operation is |
| 273 | not exact (that is, it needed to be rounded and any discarded digits |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 274 | were non-zero), or if an overflow or underflow condition occurs. The |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 275 | result in all cases is unchanged. |
| 276 | |
| 277 | The inexact signal may be tested (or trapped) to determine if a given |
| 278 | operation (or sequence of operations) was inexact. |
| 279 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 280 | |
| 281 | class InvalidContext(InvalidOperation): |
| 282 | """Invalid context. Unknown rounding, for example. |
| 283 | |
| 284 | This occurs and signals invalid-operation if an invalid context was |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 285 | detected during an operation. This can occur if contexts are not checked |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 286 | on creation and either the precision exceeds the capability of the |
| 287 | underlying concrete representation or an unknown or unsupported rounding |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 288 | was specified. These aspects of the context need only be checked when |
| 289 | the values are required to be used. The result is [0,qNaN]. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 290 | """ |
| 291 | |
| 292 | def handle(self, context, *args): |
Mark Dickinson | f923641 | 2009-01-02 23:23:21 +0000 | [diff] [blame] | 293 | return _NaN |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 294 | |
| 295 | class Rounded(DecimalException): |
| 296 | """Number got rounded (not necessarily changed during rounding). |
| 297 | |
| 298 | This occurs and signals rounded whenever the result of an operation is |
| 299 | rounded (that is, some zero or non-zero digits were discarded from the |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 300 | coefficient), or if an overflow or underflow condition occurs. The |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 301 | result in all cases is unchanged. |
| 302 | |
| 303 | The rounded signal may be tested (or trapped) to determine if a given |
| 304 | operation (or sequence of operations) caused a loss of precision. |
| 305 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 306 | |
| 307 | class Subnormal(DecimalException): |
| 308 | """Exponent < Emin before rounding. |
| 309 | |
| 310 | This occurs and signals subnormal whenever the result of a conversion or |
| 311 | operation is subnormal (that is, its adjusted exponent is less than |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 312 | Emin, before any rounding). The result in all cases is unchanged. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 313 | |
| 314 | The subnormal signal may be tested (or trapped) to determine if a given |
| 315 | or operation (or sequence of operations) yielded a subnormal result. |
| 316 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 317 | |
| 318 | class Overflow(Inexact, Rounded): |
| 319 | """Numerical overflow. |
| 320 | |
| 321 | This occurs and signals overflow if the adjusted exponent of a result |
| 322 | (from a conversion or from an operation that is not an attempt to divide |
| 323 | by zero), after rounding, would be greater than the largest value that |
| 324 | can be handled by the implementation (the value Emax). |
| 325 | |
| 326 | The result depends on the rounding mode: |
| 327 | |
| 328 | For round-half-up and round-half-even (and for round-half-down and |
| 329 | round-up, if implemented), the result of the operation is [sign,inf], |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 330 | 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] | 331 | result is the largest finite number that can be represented in the |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 332 | current precision, with the sign of the intermediate result. For |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 333 | round-ceiling, the result is the same as for round-down if the sign of |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 334 | 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] | 335 | the result is the same as for round-down if the sign of the intermediate |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 336 | 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] | 337 | will also be raised. |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 338 | """ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 339 | |
| 340 | def handle(self, context, sign, *args): |
| 341 | if context.rounding in (ROUND_HALF_UP, ROUND_HALF_EVEN, |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 342 | ROUND_HALF_DOWN, ROUND_UP): |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 343 | return _SignedInfinity[sign] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 344 | if sign == 0: |
| 345 | if context.rounding == ROUND_CEILING: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 346 | return _SignedInfinity[sign] |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 347 | return _dec_from_triple(sign, '9'*context.prec, |
| 348 | context.Emax-context.prec+1) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 349 | if sign == 1: |
| 350 | if context.rounding == ROUND_FLOOR: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 351 | return _SignedInfinity[sign] |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 352 | return _dec_from_triple(sign, '9'*context.prec, |
| 353 | context.Emax-context.prec+1) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 354 | |
| 355 | |
| 356 | class Underflow(Inexact, Rounded, Subnormal): |
| 357 | """Numerical underflow with result rounded to 0. |
| 358 | |
| 359 | This occurs and signals underflow if a result is inexact and the |
| 360 | adjusted exponent of the result would be smaller (more negative) than |
| 361 | the smallest value that can be handled by the implementation (the value |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 362 | Emin). That is, the result is both inexact and subnormal. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 363 | |
| 364 | The result after an underflow will be a subnormal number rounded, if |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 365 | 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] | 366 | in 0 with the sign of the intermediate result and an exponent of Etiny. |
| 367 | |
| 368 | In all cases, Inexact, Rounded, and Subnormal will also be raised. |
| 369 | """ |
| 370 | |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 371 | # List of public traps and flags |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 372 | _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded, |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 373 | Underflow, InvalidOperation, Subnormal] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 374 | |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 375 | # Map conditions (per the spec) to signals |
| 376 | _condition_map = {ConversionSyntax:InvalidOperation, |
| 377 | DivisionImpossible:InvalidOperation, |
| 378 | DivisionUndefined:InvalidOperation, |
| 379 | InvalidContext:InvalidOperation} |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 380 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 381 | ##### Context Functions ################################################## |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 382 | |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 383 | # The getcontext() and setcontext() function manage access to a thread-local |
| 384 | # current context. Py2.4 offers direct support for thread locals. If that |
Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 385 | # is not available, use threading.current_thread() which is slower but will |
Raymond Hettinger | 7e71fa5 | 2004-12-18 19:07:19 +0000 | [diff] [blame] | 386 | # work for older Pythons. If threads are not part of the build, create a |
| 387 | # mock threading object with threading.local() returning the module namespace. |
| 388 | |
| 389 | try: |
| 390 | import threading |
| 391 | except ImportError: |
| 392 | # Python was compiled without threads; create a mock object instead |
| 393 | import sys |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 394 | class MockThreading(object): |
Raymond Hettinger | 7e71fa5 | 2004-12-18 19:07:19 +0000 | [diff] [blame] | 395 | def local(self, sys=sys): |
| 396 | return sys.modules[__name__] |
| 397 | threading = MockThreading() |
| 398 | del sys, MockThreading |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 399 | |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 400 | try: |
| 401 | threading.local |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 402 | |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 403 | except AttributeError: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 404 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 405 | # To fix reloading, force it to create a new context |
| 406 | # Old contexts have different exceptions in their dicts, making problems. |
Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 407 | if hasattr(threading.current_thread(), '__decimal_context__'): |
| 408 | del threading.current_thread().__decimal_context__ |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 409 | |
| 410 | def setcontext(context): |
| 411 | """Set this thread's context to context.""" |
| 412 | if context in (DefaultContext, BasicContext, ExtendedContext): |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 413 | context = context.copy() |
Raymond Hettinger | 61992ef | 2004-08-06 23:42:16 +0000 | [diff] [blame] | 414 | context.clear_flags() |
Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 415 | threading.current_thread().__decimal_context__ = context |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 416 | |
| 417 | def getcontext(): |
| 418 | """Returns this thread's context. |
| 419 | |
| 420 | If this thread does not yet have a context, returns |
| 421 | a new context and sets this thread's context. |
| 422 | New contexts are copies of DefaultContext. |
| 423 | """ |
| 424 | try: |
Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 425 | return threading.current_thread().__decimal_context__ |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 426 | except AttributeError: |
| 427 | context = Context() |
Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 428 | threading.current_thread().__decimal_context__ = context |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 429 | return context |
| 430 | |
| 431 | else: |
| 432 | |
| 433 | local = threading.local() |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 434 | if hasattr(local, '__decimal_context__'): |
| 435 | del local.__decimal_context__ |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 436 | |
| 437 | def getcontext(_local=local): |
| 438 | """Returns this thread's context. |
| 439 | |
| 440 | If this thread does not yet have a context, returns |
| 441 | a new context and sets this thread's context. |
| 442 | New contexts are copies of DefaultContext. |
| 443 | """ |
| 444 | try: |
| 445 | return _local.__decimal_context__ |
| 446 | except AttributeError: |
| 447 | context = Context() |
| 448 | _local.__decimal_context__ = context |
| 449 | return context |
| 450 | |
| 451 | def setcontext(context, _local=local): |
| 452 | """Set this thread's context to context.""" |
| 453 | if context in (DefaultContext, BasicContext, ExtendedContext): |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 454 | context = context.copy() |
Raymond Hettinger | 61992ef | 2004-08-06 23:42:16 +0000 | [diff] [blame] | 455 | context.clear_flags() |
Raymond Hettinger | ef66deb | 2004-07-14 21:04:27 +0000 | [diff] [blame] | 456 | _local.__decimal_context__ = context |
| 457 | |
| 458 | del threading, local # Don't contaminate the namespace |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 459 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 460 | def localcontext(ctx=None): |
| 461 | """Return a context manager for a copy of the supplied context |
| 462 | |
| 463 | Uses a copy of the current context if no context is specified |
| 464 | The returned context manager creates a local decimal context |
| 465 | in a with statement: |
| 466 | def sin(x): |
| 467 | with localcontext() as ctx: |
| 468 | ctx.prec += 2 |
| 469 | # Rest of sin calculation algorithm |
| 470 | # uses a precision 2 greater than normal |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 471 | return +s # Convert result to normal precision |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 472 | |
| 473 | def sin(x): |
| 474 | with localcontext(ExtendedContext): |
| 475 | # Rest of sin calculation algorithm |
| 476 | # uses the Extended Context from the |
| 477 | # General Decimal Arithmetic Specification |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 478 | return +s # Convert result to normal context |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 479 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 480 | >>> setcontext(DefaultContext) |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 481 | >>> print(getcontext().prec) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 482 | 28 |
| 483 | >>> with localcontext(): |
| 484 | ... ctx = getcontext() |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 485 | ... ctx.prec += 2 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 486 | ... print(ctx.prec) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 487 | ... |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 488 | 30 |
| 489 | >>> with localcontext(ExtendedContext): |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 490 | ... print(getcontext().prec) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 491 | ... |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 492 | 9 |
Guido van Rossum | 7131f84 | 2007-02-09 20:13:25 +0000 | [diff] [blame] | 493 | >>> print(getcontext().prec) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 494 | 28 |
| 495 | """ |
| 496 | if ctx is None: ctx = getcontext() |
| 497 | return _ContextManager(ctx) |
| 498 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 499 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 500 | ##### Decimal class ####################################################### |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 501 | |
Raymond Hettinger | a0fd888 | 2009-01-20 07:24:44 +0000 | [diff] [blame] | 502 | # Do not subclass Decimal from numbers.Real and do not register it as such |
| 503 | # (because Decimals are not interoperable with floats). See the notes in |
| 504 | # numbers.py for more detail. |
| 505 | |
| 506 | class Decimal(object): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 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 |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 519 | Decimal('3.14') |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 520 | >>> Decimal((0, (3, 1, 4), -2)) # tuple (sign, digit_tuple, exponent) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 521 | Decimal('3.14') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 522 | >>> Decimal(314) # int |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +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 |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 525 | Decimal('314') |
Christian Heimes | a62da1d | 2008-01-12 19:39:10 +0000 | [diff] [blame] | 526 | >>> Decimal(' 3.14 \\n') # leading and trailing whitespace okay |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +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 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +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 | |
Christian Heimes | d59c64c | 2007-11-30 19:27:20 +0000 | [diff] [blame] | 540 | # From a string |
| 541 | # REs insist on real strings, so we can too. |
| 542 | if isinstance(value, str): |
Christian Heimes | a62da1d | 2008-01-12 19:39:10 +0000 | [diff] [blame] | 543 | m = _parser(value.strip()) |
Christian Heimes | d59c64c | 2007-11-30 19:27:20 +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 | |
Christian Heimes | d59c64c | 2007-11-30 19:27:20 +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 | 345adc4 | 2009-08-02 10:14:23 +0000 | [diff] [blame] | 557 | fracpart = m.group('frac') or '' |
Christian Heimes | d59c64c | 2007-11-30 19:27:20 +0000 | [diff] [blame] | 558 | exp = int(m.group('exp') or '0') |
Mark Dickinson | 345adc4 | 2009-08-02 10:14:23 +0000 | [diff] [blame] | 559 | self._int = str(int(intpart+fracpart)) |
| 560 | self._exp = exp - len(fracpart) |
Christian Heimes | d59c64c | 2007-11-30 19:27:20 +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 | 345adc4 | 2009-08-02 10:14:23 +0000 | [diff] [blame] | 566 | self._int = str(int(diag or '0')).lstrip('0') |
Christian Heimes | d59c64c | 2007-11-30 19:27:20 +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 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 579 | if isinstance(value, int): |
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 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 585 | self._int = str(abs(value)) |
Christian Heimes | d59c64c | 2007-11-30 19:27:20 +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: |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +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) 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] |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 617 | if value[2] == 'F': |
| 618 | # infinity: value[1] is ignored |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +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: |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +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) 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 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 636 | self._int = ''.join(map(str, digits)) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 637 | self._exp = value[2] |
| 638 | self._is_special = True |
| 639 | elif isinstance(value[2], int): |
| 640 | # finite number: digits give the coefficient |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 641 | self._int = ''.join(map(str, digits or [0])) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +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 | 9679859 | 2010-04-02 16:58:27 +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 | ba298e4 | 2009-01-04 21:17:43 +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 | 771ed76 | 2009-01-03 19:20:32 +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): # 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 | ba298e4 | 2009-01-04 21:17:43 +0000 | [diff] [blame] | 687 | if _math.copysign(1.0, f) == 1.0: |
| 688 | sign = 0 |
| 689 | else: |
| 690 | sign = 1 |
Raymond Hettinger | 771ed76 | 2009-01-03 19:20:32 +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 | ba298e4 | 2009-01-04 21:17:43 +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 | 771ed76 | 2009-01-03 19:20:32 +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 |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +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 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +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', |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +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', |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 753 | other) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 754 | if self_is_nan: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 755 | return self._fix_nan(context) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 756 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +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 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +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 | |
Jack Diederich | 4dafcc4 | 2006-11-28 19:15:13 +0000 | [diff] [blame] | 793 | def __bool__(self): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +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 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 796 | NaNs and infinities are considered nonzero. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 797 | """ |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +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 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +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 | e6aad75 | 2009-01-25 10:48:51 +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 | e6aad75 | 2009-01-25 10:48:51 +0000 | [diff] [blame] | 816 | # check for zeros; Decimal('0') == Decimal('-0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +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 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +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() |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 833 | if self_adjusted == other_adjusted: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +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 | e6aad75 | 2009-01-25 10:48:51 +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 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +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 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +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 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +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 | ac256ab | 2010-04-03 11:08:14 +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. |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 857 | # <, >, <= and >= comparisons involving a (quiet or signaling) |
| 858 | # NaN signal InvalidOperation, and return False if the |
Christian Heimes | 3feef61 | 2008-02-11 06:19:17 +0000 | [diff] [blame] | 859 | # InvalidOperation is not trapped. |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +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 | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 864 | def __eq__(self, other, context=None): |
| 865 | other = _convert_other(other, allow_float=True) |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 866 | if other is NotImplemented: |
| 867 | return other |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 868 | if self._check_nans(other, context): |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +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 | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 872 | def __ne__(self, other, context=None): |
| 873 | other = _convert_other(other, allow_float=True) |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 874 | if other is NotImplemented: |
| 875 | return other |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 876 | if self._check_nans(other, context): |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 877 | return True |
| 878 | return self._cmp(other) != 0 |
Raymond Hettinger | 0aeac10 | 2004-07-05 22:53:03 +0000 | [diff] [blame] | 879 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 880 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 881 | def __lt__(self, other, context=None): |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 882 | other = _convert_other(other, allow_float=True) |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 883 | if other is NotImplemented: |
| 884 | return other |
| 885 | ans = self._compare_check_nans(other, context) |
| 886 | if ans: |
| 887 | return False |
| 888 | return self._cmp(other) < 0 |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 889 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 890 | def __le__(self, other, context=None): |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 891 | other = _convert_other(other, allow_float=True) |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 892 | if other is NotImplemented: |
| 893 | return other |
| 894 | ans = self._compare_check_nans(other, context) |
| 895 | if ans: |
| 896 | return False |
| 897 | return self._cmp(other) <= 0 |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 898 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 899 | def __gt__(self, other, context=None): |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 900 | other = _convert_other(other, allow_float=True) |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 901 | if other is NotImplemented: |
| 902 | return other |
| 903 | ans = self._compare_check_nans(other, context) |
| 904 | if ans: |
| 905 | return False |
| 906 | return self._cmp(other) > 0 |
| 907 | |
| 908 | def __ge__(self, other, context=None): |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 909 | other = _convert_other(other, allow_float=True) |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 910 | if other is NotImplemented: |
| 911 | return other |
| 912 | ans = self._compare_check_nans(other, context) |
| 913 | if ans: |
| 914 | return False |
| 915 | return self._cmp(other) >= 0 |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 916 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 917 | def compare(self, other, context=None): |
| 918 | """Compares one to another. |
| 919 | |
| 920 | -1 => a < b |
| 921 | 0 => a = b |
| 922 | 1 => a > b |
| 923 | NaN => one is NaN |
| 924 | Like __cmp__, but returns Decimal instances. |
| 925 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 926 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 927 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 928 | # Compare(NaN, NaN) = NaN |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 929 | if (self._is_special or other and other._is_special): |
| 930 | ans = self._check_nans(other, context) |
| 931 | if ans: |
| 932 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 933 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 934 | return Decimal(self._cmp(other)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 935 | |
| 936 | def __hash__(self): |
| 937 | """x.__hash__() <==> hash(x)""" |
| 938 | # Decimal integers must hash the same as the ints |
Christian Heimes | 2380ac7 | 2008-01-09 00:17:24 +0000 | [diff] [blame] | 939 | # |
| 940 | # The hash of a nonspecial noninteger Decimal must depend only |
| 941 | # on the value of that Decimal, and not on its representation. |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 942 | # For example: hash(Decimal('100E-1')) == hash(Decimal('10')). |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 943 | |
| 944 | # Equality comparisons involving signaling nans can raise an |
| 945 | # exception; since equality checks are implicitly and |
| 946 | # unpredictably used when checking set and dict membership, we |
| 947 | # prevent signaling nans from being used as set elements or |
| 948 | # dict keys by making __hash__ raise an exception. |
Raymond Hettinger | bea3f6f | 2005-03-15 04:59:17 +0000 | [diff] [blame] | 949 | if self._is_special: |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 950 | if self.is_snan(): |
| 951 | raise TypeError('Cannot hash a signaling NaN value.') |
| 952 | elif self.is_nan(): |
| 953 | # 0 to match hash(float('nan')) |
| 954 | return 0 |
| 955 | else: |
| 956 | # values chosen to match hash(float('inf')) and |
| 957 | # hash(float('-inf')). |
| 958 | if self._sign: |
| 959 | return -271828 |
| 960 | else: |
| 961 | return 314159 |
| 962 | |
| 963 | # In Python 2.7, we're allowing comparisons (but not |
| 964 | # arithmetic operations) between floats and Decimals; so if |
| 965 | # a Decimal instance is exactly representable as a float then |
| 966 | # its hash should match that of the float. |
| 967 | self_as_float = float(self) |
| 968 | if Decimal.from_float(self_as_float) == self: |
| 969 | return hash(self_as_float) |
| 970 | |
Thomas Wouters | 8ce81f7 | 2007-09-20 18:22:40 +0000 | [diff] [blame] | 971 | if self._isinteger(): |
| 972 | op = _WorkRep(self.to_integral_value()) |
| 973 | # to make computation feasible for Decimals with large |
| 974 | # exponent, we use the fact that hash(n) == hash(m) for |
| 975 | # any two nonzero integers n and m such that (i) n and m |
| 976 | # have the same sign, and (ii) n is congruent to m modulo |
| 977 | # 2**64-1. So we can replace hash((-1)**s*c*10**e) with |
| 978 | # hash((-1)**s*c*pow(10, e, 2**64-1). |
| 979 | return hash((-1)**op.sign*op.int*pow(10, op.exp, 2**64-1)) |
Christian Heimes | 2380ac7 | 2008-01-09 00:17:24 +0000 | [diff] [blame] | 980 | # The value of a nonzero nonspecial Decimal instance is |
| 981 | # faithfully represented by the triple consisting of its sign, |
| 982 | # its adjusted exponent, and its coefficient with trailing |
| 983 | # zeros removed. |
| 984 | return hash((self._sign, |
| 985 | self._exp+len(self._int), |
| 986 | self._int.rstrip('0'))) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 987 | |
| 988 | def as_tuple(self): |
| 989 | """Represents the number as a triple tuple. |
| 990 | |
| 991 | To show the internals exactly as they are. |
| 992 | """ |
Christian Heimes | 25bb783 | 2008-01-11 16:17:00 +0000 | [diff] [blame] | 993 | return DecimalTuple(self._sign, tuple(map(int, self._int)), self._exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 994 | |
| 995 | def __repr__(self): |
| 996 | """Represents the number as an instance of Decimal.""" |
| 997 | # Invariant: eval(repr(d)) == d |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 998 | return "Decimal('%s')" % str(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 999 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1000 | def __str__(self, eng=False, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1001 | """Return string representation of the number in scientific notation. |
| 1002 | |
| 1003 | Captures all of the information in the underlying representation. |
| 1004 | """ |
| 1005 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1006 | sign = ['', '-'][self._sign] |
Raymond Hettinger | e5a0a96 | 2005-06-20 09:49:42 +0000 | [diff] [blame] | 1007 | if self._is_special: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1008 | if self._exp == 'F': |
| 1009 | return sign + 'Infinity' |
| 1010 | elif self._exp == 'n': |
| 1011 | return sign + 'NaN' + self._int |
| 1012 | else: # self._exp == 'N' |
| 1013 | return sign + 'sNaN' + self._int |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1014 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1015 | # number of digits of self._int to left of decimal point |
| 1016 | leftdigits = self._exp + len(self._int) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1017 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1018 | # dotplace is number of digits of self._int to the left of the |
| 1019 | # decimal point in the mantissa of the output string (that is, |
| 1020 | # after adjusting the exponent) |
| 1021 | if self._exp <= 0 and leftdigits > -6: |
| 1022 | # no exponent required |
| 1023 | dotplace = leftdigits |
| 1024 | elif not eng: |
| 1025 | # usual scientific notation: 1 digit on left of the point |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1026 | dotplace = 1 |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1027 | elif self._int == '0': |
| 1028 | # engineering notation, zero |
| 1029 | dotplace = (leftdigits + 1) % 3 - 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1030 | else: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1031 | # engineering notation, nonzero |
| 1032 | dotplace = (leftdigits - 1) % 3 + 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1033 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1034 | if dotplace <= 0: |
| 1035 | intpart = '0' |
| 1036 | fracpart = '.' + '0'*(-dotplace) + self._int |
| 1037 | elif dotplace >= len(self._int): |
| 1038 | intpart = self._int+'0'*(dotplace-len(self._int)) |
| 1039 | fracpart = '' |
| 1040 | else: |
| 1041 | intpart = self._int[:dotplace] |
| 1042 | fracpart = '.' + self._int[dotplace:] |
| 1043 | if leftdigits == dotplace: |
| 1044 | exp = '' |
| 1045 | else: |
| 1046 | if context is None: |
| 1047 | context = getcontext() |
| 1048 | exp = ['e', 'E'][context.capitals] + "%+d" % (leftdigits-dotplace) |
| 1049 | |
| 1050 | return sign + intpart + fracpart + exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1051 | |
| 1052 | def to_eng_string(self, context=None): |
| 1053 | """Convert to engineering-type string. |
| 1054 | |
| 1055 | Engineering notation has an exponent which is a multiple of 3, so there |
| 1056 | are up to 3 digits left of the decimal place. |
| 1057 | |
| 1058 | Same rules for when in exponential and when as a value as in __str__. |
| 1059 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1060 | return self.__str__(eng=True, context=context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1061 | |
| 1062 | def __neg__(self, context=None): |
| 1063 | """Returns a copy with the sign switched. |
| 1064 | |
| 1065 | Rounds, if it has reason. |
| 1066 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1067 | if self._is_special: |
| 1068 | ans = self._check_nans(context=context) |
| 1069 | if ans: |
| 1070 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1071 | |
| 1072 | if not self: |
| 1073 | # -Decimal('0') is Decimal('0'), not Decimal('-0') |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 1074 | ans = self.copy_abs() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1075 | else: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1076 | ans = self.copy_negate() |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1077 | |
| 1078 | if context is None: |
| 1079 | context = getcontext() |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1080 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1081 | |
| 1082 | def __pos__(self, context=None): |
| 1083 | """Returns a copy, unless it is a sNaN. |
| 1084 | |
| 1085 | Rounds the number (if more then precision digits) |
| 1086 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1087 | if self._is_special: |
| 1088 | ans = self._check_nans(context=context) |
| 1089 | if ans: |
| 1090 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1091 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1092 | if not self: |
| 1093 | # + (-0) = 0 |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 1094 | ans = self.copy_abs() |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1095 | else: |
| 1096 | ans = Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1097 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1098 | if context is None: |
| 1099 | context = getcontext() |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1100 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1101 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1102 | def __abs__(self, round=True, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1103 | """Returns the absolute value of self. |
| 1104 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1105 | If the keyword argument 'round' is false, do not round. The |
| 1106 | expression self.__abs__(round=False) is equivalent to |
| 1107 | self.copy_abs(). |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1108 | """ |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1109 | if not round: |
| 1110 | return self.copy_abs() |
| 1111 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1112 | if self._is_special: |
| 1113 | ans = self._check_nans(context=context) |
| 1114 | if ans: |
| 1115 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1116 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1117 | if self._sign: |
| 1118 | ans = self.__neg__(context=context) |
| 1119 | else: |
| 1120 | ans = self.__pos__(context=context) |
| 1121 | |
| 1122 | return ans |
| 1123 | |
| 1124 | def __add__(self, other, context=None): |
| 1125 | """Returns self + other. |
| 1126 | |
| 1127 | -INF + INF (or the reverse) cause InvalidOperation errors. |
| 1128 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1129 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1130 | if other is NotImplemented: |
| 1131 | return other |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1132 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1133 | if context is None: |
| 1134 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1135 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1136 | if self._is_special or other._is_special: |
| 1137 | ans = self._check_nans(other, context) |
| 1138 | if ans: |
| 1139 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1140 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1141 | if self._isinfinity(): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1142 | # If both INF, same sign => same as both, opposite => error. |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1143 | if self._sign != other._sign and other._isinfinity(): |
| 1144 | return context._raise_error(InvalidOperation, '-INF + INF') |
| 1145 | return Decimal(self) |
| 1146 | if other._isinfinity(): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1147 | return Decimal(other) # Can't both be infinity here |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1148 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1149 | exp = min(self._exp, other._exp) |
| 1150 | negativezero = 0 |
| 1151 | if context.rounding == ROUND_FLOOR and self._sign != other._sign: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1152 | # 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] | 1153 | negativezero = 1 |
| 1154 | |
| 1155 | if not self and not other: |
| 1156 | sign = min(self._sign, other._sign) |
| 1157 | if negativezero: |
| 1158 | sign = 1 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1159 | ans = _dec_from_triple(sign, '0', exp) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1160 | ans = ans._fix(context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1161 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1162 | if not self: |
Facundo Batista | 99b5548 | 2004-10-26 23:38:46 +0000 | [diff] [blame] | 1163 | exp = max(exp, other._exp - context.prec-1) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1164 | ans = other._rescale(exp, context.rounding) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1165 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1166 | return ans |
| 1167 | if not other: |
Facundo Batista | 99b5548 | 2004-10-26 23:38:46 +0000 | [diff] [blame] | 1168 | exp = max(exp, self._exp - context.prec-1) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1169 | ans = self._rescale(exp, context.rounding) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1170 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1171 | return ans |
| 1172 | |
| 1173 | op1 = _WorkRep(self) |
| 1174 | op2 = _WorkRep(other) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1175 | op1, op2 = _normalize(op1, op2, context.prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1176 | |
| 1177 | result = _WorkRep() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1178 | if op1.sign != op2.sign: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1179 | # Equal and opposite |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1180 | if op1.int == op2.int: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1181 | ans = _dec_from_triple(negativezero, '0', exp) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1182 | ans = ans._fix(context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1183 | return ans |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1184 | if op1.int < op2.int: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1185 | op1, op2 = op2, op1 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1186 | # OK, now abs(op1) > abs(op2) |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1187 | if op1.sign == 1: |
| 1188 | result.sign = 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1189 | op1.sign, op2.sign = op2.sign, op1.sign |
| 1190 | else: |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1191 | result.sign = 0 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1192 | # So we know the sign, and op1 > 0. |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1193 | elif op1.sign == 1: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1194 | result.sign = 1 |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1195 | op1.sign, op2.sign = (0, 0) |
| 1196 | else: |
| 1197 | result.sign = 0 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1198 | # Now, op1 > abs(op2) > 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1199 | |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 1200 | if op2.sign == 0: |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1201 | result.int = op1.int + op2.int |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1202 | else: |
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 | |
| 1205 | result.exp = op1.exp |
| 1206 | ans = Decimal(result) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1207 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1208 | return ans |
| 1209 | |
| 1210 | __radd__ = __add__ |
| 1211 | |
| 1212 | def __sub__(self, other, context=None): |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1213 | """Return self - other""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1214 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1215 | if other is NotImplemented: |
| 1216 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1217 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1218 | if self._is_special or other._is_special: |
| 1219 | ans = self._check_nans(other, context=context) |
| 1220 | if ans: |
| 1221 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1222 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1223 | # self - other is computed as self + other.copy_negate() |
| 1224 | return self.__add__(other.copy_negate(), context=context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1225 | |
| 1226 | def __rsub__(self, other, context=None): |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1227 | """Return other - self""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1228 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1229 | if other is NotImplemented: |
| 1230 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1231 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1232 | return other.__sub__(self, context=context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1233 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1234 | def __mul__(self, other, context=None): |
| 1235 | """Return self * other. |
| 1236 | |
| 1237 | (+-) INF * 0 (or its reverse) raise InvalidOperation. |
| 1238 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1239 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1240 | if other is NotImplemented: |
| 1241 | return other |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1242 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1243 | if context is None: |
| 1244 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1245 | |
Raymond Hettinger | d87ac8f | 2004-07-09 10:52:54 +0000 | [diff] [blame] | 1246 | resultsign = self._sign ^ other._sign |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1247 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1248 | if self._is_special or other._is_special: |
| 1249 | ans = self._check_nans(other, context) |
| 1250 | if ans: |
| 1251 | return ans |
| 1252 | |
| 1253 | if self._isinfinity(): |
| 1254 | if not other: |
| 1255 | return context._raise_error(InvalidOperation, '(+-)INF * 0') |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 1256 | return _SignedInfinity[resultsign] |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1257 | |
| 1258 | if other._isinfinity(): |
| 1259 | if not self: |
| 1260 | return context._raise_error(InvalidOperation, '0 * (+-)INF') |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 1261 | return _SignedInfinity[resultsign] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1262 | |
| 1263 | resultexp = self._exp + other._exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1264 | |
| 1265 | # Special case for multiplying by zero |
| 1266 | if not self or not other: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1267 | ans = _dec_from_triple(resultsign, '0', resultexp) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1268 | # Fixing in case the exponent is out of bounds |
| 1269 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1270 | return ans |
| 1271 | |
| 1272 | # Special case for multiplying by power of 10 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1273 | if self._int == '1': |
| 1274 | ans = _dec_from_triple(resultsign, other._int, resultexp) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1275 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1276 | return ans |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1277 | if other._int == '1': |
| 1278 | ans = _dec_from_triple(resultsign, self._int, resultexp) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1279 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1280 | return ans |
| 1281 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1282 | op1 = _WorkRep(self) |
| 1283 | op2 = _WorkRep(other) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1284 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1285 | ans = _dec_from_triple(resultsign, str(op1.int * op2.int), resultexp) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1286 | ans = ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1287 | |
| 1288 | return ans |
| 1289 | __rmul__ = __mul__ |
| 1290 | |
Neal Norwitz | bcc0db8 | 2006-03-24 08:14:36 +0000 | [diff] [blame] | 1291 | def __truediv__(self, other, context=None): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1292 | """Return self / other.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1293 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1294 | if other is NotImplemented: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1295 | return NotImplemented |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1296 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1297 | if context is None: |
| 1298 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1299 | |
Raymond Hettinger | d87ac8f | 2004-07-09 10:52:54 +0000 | [diff] [blame] | 1300 | sign = self._sign ^ other._sign |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1301 | |
| 1302 | if self._is_special or other._is_special: |
| 1303 | ans = self._check_nans(other, context) |
| 1304 | if ans: |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1305 | return ans |
| 1306 | |
| 1307 | if self._isinfinity() and other._isinfinity(): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1308 | return context._raise_error(InvalidOperation, '(+-)INF/(+-)INF') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1309 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1310 | if self._isinfinity(): |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 1311 | return _SignedInfinity[sign] |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1312 | |
| 1313 | if other._isinfinity(): |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1314 | context._raise_error(Clamped, 'Division by infinity') |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1315 | return _dec_from_triple(sign, '0', context.Etiny()) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1316 | |
| 1317 | # Special cases for zeroes |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1318 | if not other: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1319 | if not self: |
| 1320 | return context._raise_error(DivisionUndefined, '0 / 0') |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1321 | return context._raise_error(DivisionByZero, 'x / 0', sign) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1322 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1323 | if not self: |
| 1324 | exp = self._exp - other._exp |
| 1325 | coeff = 0 |
| 1326 | else: |
| 1327 | # OK, so neither = 0, INF or NaN |
| 1328 | shift = len(other._int) - len(self._int) + context.prec + 1 |
| 1329 | exp = self._exp - other._exp - shift |
| 1330 | op1 = _WorkRep(self) |
| 1331 | op2 = _WorkRep(other) |
| 1332 | if shift >= 0: |
| 1333 | coeff, remainder = divmod(op1.int * 10**shift, op2.int) |
| 1334 | else: |
| 1335 | coeff, remainder = divmod(op1.int, op2.int * 10**-shift) |
| 1336 | if remainder: |
| 1337 | # result is not exact; adjust to ensure correct rounding |
| 1338 | if coeff % 5 == 0: |
| 1339 | coeff += 1 |
| 1340 | else: |
| 1341 | # result is exact; get as close to ideal exponent as possible |
| 1342 | ideal_exp = self._exp - other._exp |
| 1343 | while exp < ideal_exp and coeff % 10 == 0: |
| 1344 | coeff //= 10 |
| 1345 | exp += 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1346 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1347 | ans = _dec_from_triple(sign, str(coeff), exp) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1348 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1349 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1350 | def _divide(self, other, context): |
| 1351 | """Return (self // other, self % other), to context.prec precision. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1352 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1353 | Assumes that neither self nor other is a NaN, that self is not |
| 1354 | infinite and that other is nonzero. |
| 1355 | """ |
| 1356 | sign = self._sign ^ other._sign |
| 1357 | if other._isinfinity(): |
| 1358 | ideal_exp = self._exp |
| 1359 | else: |
| 1360 | ideal_exp = min(self._exp, other._exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1361 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1362 | expdiff = self.adjusted() - other.adjusted() |
| 1363 | if not self or other._isinfinity() or expdiff <= -2: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1364 | return (_dec_from_triple(sign, '0', 0), |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1365 | self._rescale(ideal_exp, context.rounding)) |
| 1366 | if expdiff <= context.prec: |
| 1367 | op1 = _WorkRep(self) |
| 1368 | op2 = _WorkRep(other) |
| 1369 | if op1.exp >= op2.exp: |
| 1370 | op1.int *= 10**(op1.exp - op2.exp) |
| 1371 | else: |
| 1372 | op2.int *= 10**(op2.exp - op1.exp) |
| 1373 | q, r = divmod(op1.int, op2.int) |
| 1374 | if q < 10**context.prec: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1375 | return (_dec_from_triple(sign, str(q), 0), |
| 1376 | _dec_from_triple(self._sign, str(r), ideal_exp)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1377 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1378 | # Here the quotient is too large to be representable |
| 1379 | ans = context._raise_error(DivisionImpossible, |
| 1380 | 'quotient too large in //, % or divmod') |
| 1381 | return ans, ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1382 | |
Neal Norwitz | bcc0db8 | 2006-03-24 08:14:36 +0000 | [diff] [blame] | 1383 | def __rtruediv__(self, other, context=None): |
| 1384 | """Swaps self/other and returns __truediv__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1385 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1386 | if other is NotImplemented: |
| 1387 | return other |
Neal Norwitz | bcc0db8 | 2006-03-24 08:14:36 +0000 | [diff] [blame] | 1388 | return other.__truediv__(self, context=context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1389 | |
| 1390 | def __divmod__(self, other, context=None): |
| 1391 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1392 | Return (self // other, self % other) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1393 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1394 | other = _convert_other(other) |
| 1395 | if other is NotImplemented: |
| 1396 | return other |
| 1397 | |
| 1398 | if context is None: |
| 1399 | context = getcontext() |
| 1400 | |
| 1401 | ans = self._check_nans(other, context) |
| 1402 | if ans: |
| 1403 | return (ans, ans) |
| 1404 | |
| 1405 | sign = self._sign ^ other._sign |
| 1406 | if self._isinfinity(): |
| 1407 | if other._isinfinity(): |
| 1408 | ans = context._raise_error(InvalidOperation, 'divmod(INF, INF)') |
| 1409 | return ans, ans |
| 1410 | else: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 1411 | return (_SignedInfinity[sign], |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1412 | context._raise_error(InvalidOperation, 'INF % x')) |
| 1413 | |
| 1414 | if not other: |
| 1415 | if not self: |
| 1416 | ans = context._raise_error(DivisionUndefined, 'divmod(0, 0)') |
| 1417 | return ans, ans |
| 1418 | else: |
| 1419 | return (context._raise_error(DivisionByZero, 'x // 0', sign), |
| 1420 | context._raise_error(InvalidOperation, 'x % 0')) |
| 1421 | |
| 1422 | quotient, remainder = self._divide(other, context) |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1423 | remainder = remainder._fix(context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1424 | return quotient, remainder |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1425 | |
| 1426 | def __rdivmod__(self, other, context=None): |
| 1427 | """Swaps self/other and returns __divmod__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1428 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1429 | if other is NotImplemented: |
| 1430 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1431 | return other.__divmod__(self, context=context) |
| 1432 | |
| 1433 | def __mod__(self, other, context=None): |
| 1434 | """ |
| 1435 | self % other |
| 1436 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1437 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1438 | if other is NotImplemented: |
| 1439 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1440 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1441 | if context is None: |
| 1442 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1443 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1444 | ans = self._check_nans(other, context) |
| 1445 | if ans: |
| 1446 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1447 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1448 | if self._isinfinity(): |
| 1449 | return context._raise_error(InvalidOperation, 'INF % x') |
| 1450 | elif not other: |
| 1451 | if self: |
| 1452 | return context._raise_error(InvalidOperation, 'x % 0') |
| 1453 | else: |
| 1454 | return context._raise_error(DivisionUndefined, '0 % 0') |
| 1455 | |
| 1456 | remainder = self._divide(other, context)[1] |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 1457 | remainder = remainder._fix(context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1458 | return remainder |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1459 | |
| 1460 | def __rmod__(self, other, context=None): |
| 1461 | """Swaps self/other and returns __mod__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1462 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1463 | if other is NotImplemented: |
| 1464 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1465 | return other.__mod__(self, context=context) |
| 1466 | |
| 1467 | def remainder_near(self, other, context=None): |
| 1468 | """ |
| 1469 | Remainder nearest to 0- abs(remainder-near) <= other/2 |
| 1470 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1471 | if context is None: |
| 1472 | context = getcontext() |
| 1473 | |
| 1474 | other = _convert_other(other, raiseit=True) |
| 1475 | |
| 1476 | ans = self._check_nans(other, context) |
| 1477 | if ans: |
| 1478 | return ans |
| 1479 | |
| 1480 | # self == +/-infinity -> InvalidOperation |
| 1481 | if self._isinfinity(): |
| 1482 | return context._raise_error(InvalidOperation, |
| 1483 | 'remainder_near(infinity, x)') |
| 1484 | |
| 1485 | # other == 0 -> either InvalidOperation or DivisionUndefined |
| 1486 | if not other: |
| 1487 | if self: |
| 1488 | return context._raise_error(InvalidOperation, |
| 1489 | 'remainder_near(x, 0)') |
| 1490 | else: |
| 1491 | return context._raise_error(DivisionUndefined, |
| 1492 | 'remainder_near(0, 0)') |
| 1493 | |
| 1494 | # other = +/-infinity -> remainder = self |
| 1495 | if other._isinfinity(): |
| 1496 | ans = Decimal(self) |
| 1497 | return ans._fix(context) |
| 1498 | |
| 1499 | # self = 0 -> remainder = self, with ideal exponent |
| 1500 | ideal_exponent = min(self._exp, other._exp) |
| 1501 | if not self: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1502 | ans = _dec_from_triple(self._sign, '0', ideal_exponent) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1503 | return ans._fix(context) |
| 1504 | |
| 1505 | # catch most cases of large or small quotient |
| 1506 | expdiff = self.adjusted() - other.adjusted() |
| 1507 | if expdiff >= context.prec + 1: |
| 1508 | # expdiff >= prec+1 => abs(self/other) > 10**prec |
| 1509 | return context._raise_error(DivisionImpossible) |
| 1510 | if expdiff <= -2: |
| 1511 | # expdiff <= -2 => abs(self/other) < 0.1 |
| 1512 | ans = self._rescale(ideal_exponent, context.rounding) |
| 1513 | return ans._fix(context) |
| 1514 | |
| 1515 | # adjust both arguments to have the same exponent, then divide |
| 1516 | op1 = _WorkRep(self) |
| 1517 | op2 = _WorkRep(other) |
| 1518 | if op1.exp >= op2.exp: |
| 1519 | op1.int *= 10**(op1.exp - op2.exp) |
| 1520 | else: |
| 1521 | op2.int *= 10**(op2.exp - op1.exp) |
| 1522 | q, r = divmod(op1.int, op2.int) |
| 1523 | # remainder is r*10**ideal_exponent; other is +/-op2.int * |
| 1524 | # 10**ideal_exponent. Apply correction to ensure that |
| 1525 | # abs(remainder) <= abs(other)/2 |
| 1526 | if 2*r + (q&1) > op2.int: |
| 1527 | r -= op2.int |
| 1528 | q += 1 |
| 1529 | |
| 1530 | if q >= 10**context.prec: |
| 1531 | return context._raise_error(DivisionImpossible) |
| 1532 | |
| 1533 | # result has same sign as self unless r is negative |
| 1534 | sign = self._sign |
| 1535 | if r < 0: |
| 1536 | sign = 1-sign |
| 1537 | r = -r |
| 1538 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1539 | ans = _dec_from_triple(sign, str(r), ideal_exponent) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1540 | return ans._fix(context) |
| 1541 | |
| 1542 | def __floordiv__(self, other, context=None): |
| 1543 | """self // other""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1544 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1545 | if other is NotImplemented: |
| 1546 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1547 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1548 | if context is None: |
| 1549 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1550 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1551 | ans = self._check_nans(other, context) |
| 1552 | if ans: |
| 1553 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1554 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1555 | if self._isinfinity(): |
| 1556 | if other._isinfinity(): |
| 1557 | return context._raise_error(InvalidOperation, 'INF // INF') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1558 | else: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 1559 | return _SignedInfinity[self._sign ^ other._sign] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1560 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1561 | if not other: |
| 1562 | if self: |
| 1563 | return context._raise_error(DivisionByZero, 'x // 0', |
| 1564 | self._sign ^ other._sign) |
| 1565 | else: |
| 1566 | return context._raise_error(DivisionUndefined, '0 // 0') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1567 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1568 | return self._divide(other, context)[0] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1569 | |
| 1570 | def __rfloordiv__(self, other, context=None): |
| 1571 | """Swaps self/other and returns __floordiv__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1572 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 1573 | if other is NotImplemented: |
| 1574 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1575 | return other.__floordiv__(self, context=context) |
| 1576 | |
| 1577 | def __float__(self): |
| 1578 | """Float representation.""" |
| 1579 | return float(str(self)) |
| 1580 | |
| 1581 | def __int__(self): |
Brett Cannon | 46b0802 | 2005-03-01 03:12:26 +0000 | [diff] [blame] | 1582 | """Converts self to an int, truncating if necessary.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1583 | if self._is_special: |
| 1584 | if self._isnan(): |
Mark Dickinson | 825fce3 | 2009-09-07 18:08:12 +0000 | [diff] [blame] | 1585 | raise ValueError("Cannot convert NaN to integer") |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1586 | elif self._isinfinity(): |
Mark Dickinson | 825fce3 | 2009-09-07 18:08:12 +0000 | [diff] [blame] | 1587 | raise OverflowError("Cannot convert infinity to integer") |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1588 | s = (-1)**self._sign |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1589 | if self._exp >= 0: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1590 | return s*int(self._int)*10**self._exp |
Raymond Hettinger | 605ed02 | 2004-11-24 07:28:48 +0000 | [diff] [blame] | 1591 | else: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1592 | return s*int(self._int[:self._exp] or '0') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1593 | |
Christian Heimes | 969fe57 | 2008-01-25 11:23:10 +0000 | [diff] [blame] | 1594 | __trunc__ = __int__ |
| 1595 | |
Christian Heimes | 0bd4e11 | 2008-02-12 22:59:25 +0000 | [diff] [blame] | 1596 | def real(self): |
| 1597 | return self |
Mark Dickinson | 315a20a | 2009-01-04 21:34:18 +0000 | [diff] [blame] | 1598 | real = property(real) |
Christian Heimes | 0bd4e11 | 2008-02-12 22:59:25 +0000 | [diff] [blame] | 1599 | |
Christian Heimes | 0bd4e11 | 2008-02-12 22:59:25 +0000 | [diff] [blame] | 1600 | def imag(self): |
| 1601 | return Decimal(0) |
Mark Dickinson | 315a20a | 2009-01-04 21:34:18 +0000 | [diff] [blame] | 1602 | imag = property(imag) |
Christian Heimes | 0bd4e11 | 2008-02-12 22:59:25 +0000 | [diff] [blame] | 1603 | |
| 1604 | def conjugate(self): |
| 1605 | return self |
| 1606 | |
| 1607 | def __complex__(self): |
| 1608 | return complex(float(self)) |
| 1609 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1610 | def _fix_nan(self, context): |
| 1611 | """Decapitate the payload of a NaN to fit the context""" |
| 1612 | payload = self._int |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1613 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1614 | # maximum length of payload is precision if _clamp=0, |
| 1615 | # precision-1 if _clamp=1. |
| 1616 | max_payload_len = context.prec - context._clamp |
| 1617 | if len(payload) > max_payload_len: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1618 | payload = payload[len(payload)-max_payload_len:].lstrip('0') |
| 1619 | return _dec_from_triple(self._sign, payload, self._exp, True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1620 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1621 | |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 1622 | def _fix(self, context): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1623 | """Round if it is necessary to keep self within prec precision. |
| 1624 | |
| 1625 | Rounds and fixes the exponent. Does not raise on a sNaN. |
| 1626 | |
| 1627 | Arguments: |
| 1628 | self - Decimal instance |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1629 | context - context used. |
| 1630 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1631 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1632 | if self._is_special: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1633 | if self._isnan(): |
| 1634 | # decapitate payload if necessary |
| 1635 | return self._fix_nan(context) |
| 1636 | else: |
| 1637 | # self is +/-Infinity; return unaltered |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 1638 | return Decimal(self) |
| 1639 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1640 | # if self is zero then exponent should be between Etiny and |
| 1641 | # Emax if _clamp==0, and between Etiny and Etop if _clamp==1. |
| 1642 | Etiny = context.Etiny() |
| 1643 | Etop = context.Etop() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1644 | if not self: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1645 | exp_max = [context.Emax, Etop][context._clamp] |
| 1646 | new_exp = min(max(self._exp, Etiny), exp_max) |
| 1647 | if new_exp != self._exp: |
| 1648 | context._raise_error(Clamped) |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1649 | return _dec_from_triple(self._sign, '0', new_exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1650 | else: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1651 | return Decimal(self) |
| 1652 | |
| 1653 | # exp_min is the smallest allowable exponent of the result, |
| 1654 | # equal to max(self.adjusted()-context.prec+1, Etiny) |
| 1655 | exp_min = len(self._int) + self._exp - context.prec |
| 1656 | if exp_min > Etop: |
| 1657 | # overflow: exp_min > Etop iff self.adjusted() > Emax |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 1658 | ans = context._raise_error(Overflow, 'above Emax', self._sign) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1659 | context._raise_error(Inexact) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1660 | context._raise_error(Rounded) |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 1661 | return ans |
| 1662 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1663 | self_is_subnormal = exp_min < Etiny |
| 1664 | if self_is_subnormal: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1665 | exp_min = Etiny |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1666 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1667 | # round if self has too many digits |
| 1668 | if self._exp < exp_min: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1669 | digits = len(self._int) + self._exp - exp_min |
| 1670 | if digits < 0: |
| 1671 | self = _dec_from_triple(self._sign, '1', exp_min-1) |
| 1672 | digits = 0 |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 1673 | rounding_method = self._pick_rounding_function[context.rounding] |
| 1674 | changed = getattr(self, rounding_method)(digits) |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1675 | coeff = self._int[:digits] or '0' |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 1676 | if changed > 0: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1677 | coeff = str(int(coeff)+1) |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 1678 | if len(coeff) > context.prec: |
| 1679 | coeff = coeff[:-1] |
| 1680 | exp_min += 1 |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1681 | |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 1682 | # check whether the rounding pushed the exponent out of range |
| 1683 | if exp_min > Etop: |
| 1684 | ans = context._raise_error(Overflow, 'above Emax', self._sign) |
| 1685 | else: |
| 1686 | ans = _dec_from_triple(self._sign, coeff, exp_min) |
| 1687 | |
| 1688 | # raise the appropriate signals, taking care to respect |
| 1689 | # the precedence described in the specification |
| 1690 | if changed and self_is_subnormal: |
| 1691 | context._raise_error(Underflow) |
| 1692 | if self_is_subnormal: |
| 1693 | context._raise_error(Subnormal) |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1694 | if changed: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1695 | context._raise_error(Inexact) |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 1696 | context._raise_error(Rounded) |
| 1697 | if not ans: |
| 1698 | # raise Clamped on underflow to 0 |
| 1699 | context._raise_error(Clamped) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1700 | return ans |
| 1701 | |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 1702 | if self_is_subnormal: |
| 1703 | context._raise_error(Subnormal) |
| 1704 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1705 | # fold down if _clamp == 1 and self has too few digits |
| 1706 | if context._clamp == 1 and self._exp > Etop: |
| 1707 | context._raise_error(Clamped) |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1708 | self_padded = self._int + '0'*(self._exp - Etop) |
| 1709 | return _dec_from_triple(self._sign, self_padded, Etop) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1710 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1711 | # here self was representable to begin with; return unchanged |
| 1712 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1713 | |
| 1714 | _pick_rounding_function = {} |
| 1715 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1716 | # for each of the rounding functions below: |
| 1717 | # self is a finite, nonzero Decimal |
| 1718 | # prec is an integer satisfying 0 <= prec < len(self._int) |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1719 | # |
| 1720 | # each function returns either -1, 0, or 1, as follows: |
| 1721 | # 1 indicates that self should be rounded up (away from zero) |
| 1722 | # 0 indicates that self should be truncated, and that all the |
| 1723 | # digits to be truncated are zeros (so the value is unchanged) |
| 1724 | # -1 indicates that there are nonzero digits to be truncated |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1725 | |
| 1726 | def _round_down(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1727 | """Also known as round-towards-0, truncate.""" |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1728 | if _all_zeros(self._int, prec): |
| 1729 | return 0 |
| 1730 | else: |
| 1731 | return -1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1732 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1733 | def _round_up(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1734 | """Rounds away from 0.""" |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1735 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1736 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1737 | def _round_half_up(self, prec): |
| 1738 | """Rounds 5 up (away from 0)""" |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 1739 | if self._int[prec] in '56789': |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1740 | return 1 |
| 1741 | elif _all_zeros(self._int, prec): |
| 1742 | return 0 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1743 | else: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1744 | return -1 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1745 | |
| 1746 | def _round_half_down(self, prec): |
| 1747 | """Round 5 down""" |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1748 | if _exact_half(self._int, prec): |
| 1749 | return -1 |
| 1750 | else: |
| 1751 | return self._round_half_up(prec) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1752 | |
| 1753 | def _round_half_even(self, prec): |
| 1754 | """Round 5 to even, rest to nearest.""" |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1755 | if _exact_half(self._int, prec) and \ |
| 1756 | (prec == 0 or self._int[prec-1] in '02468'): |
| 1757 | return -1 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1758 | else: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1759 | return self._round_half_up(prec) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1760 | |
| 1761 | def _round_ceiling(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1762 | """Rounds up (not away from 0 if negative.)""" |
| 1763 | if self._sign: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1764 | return self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1765 | else: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1766 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1767 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1768 | def _round_floor(self, prec): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1769 | """Rounds down (not towards 0 if negative)""" |
| 1770 | if not self._sign: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1771 | return self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1772 | else: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1773 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1774 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1775 | def _round_05up(self, prec): |
| 1776 | """Round down unless digit prec-1 is 0 or 5.""" |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1777 | if prec and self._int[prec-1] not in '05': |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1778 | return self._round_down(prec) |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 1779 | else: |
| 1780 | return -self._round_down(prec) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1781 | |
Mark Dickinson | b27406c | 2008-05-09 13:42:33 +0000 | [diff] [blame] | 1782 | def __round__(self, n=None): |
| 1783 | """Round self to the nearest integer, or to a given precision. |
| 1784 | |
| 1785 | If only one argument is supplied, round a finite Decimal |
| 1786 | instance self to the nearest integer. If self is infinite or |
| 1787 | a NaN then a Python exception is raised. If self is finite |
| 1788 | and lies exactly halfway between two integers then it is |
| 1789 | rounded to the integer with even last digit. |
| 1790 | |
| 1791 | >>> round(Decimal('123.456')) |
| 1792 | 123 |
| 1793 | >>> round(Decimal('-456.789')) |
| 1794 | -457 |
| 1795 | >>> round(Decimal('-3.0')) |
| 1796 | -3 |
| 1797 | >>> round(Decimal('2.5')) |
| 1798 | 2 |
| 1799 | >>> round(Decimal('3.5')) |
| 1800 | 4 |
| 1801 | >>> round(Decimal('Inf')) |
| 1802 | Traceback (most recent call last): |
| 1803 | ... |
Mark Dickinson | b27406c | 2008-05-09 13:42:33 +0000 | [diff] [blame] | 1804 | OverflowError: cannot round an infinity |
| 1805 | >>> round(Decimal('NaN')) |
| 1806 | Traceback (most recent call last): |
| 1807 | ... |
Mark Dickinson | b27406c | 2008-05-09 13:42:33 +0000 | [diff] [blame] | 1808 | ValueError: cannot round a NaN |
| 1809 | |
| 1810 | If a second argument n is supplied, self is rounded to n |
| 1811 | decimal places using the rounding mode for the current |
| 1812 | context. |
| 1813 | |
| 1814 | For an integer n, round(self, -n) is exactly equivalent to |
| 1815 | self.quantize(Decimal('1En')). |
| 1816 | |
| 1817 | >>> round(Decimal('123.456'), 0) |
| 1818 | Decimal('123') |
| 1819 | >>> round(Decimal('123.456'), 2) |
| 1820 | Decimal('123.46') |
| 1821 | >>> round(Decimal('123.456'), -2) |
| 1822 | Decimal('1E+2') |
| 1823 | >>> round(Decimal('-Infinity'), 37) |
| 1824 | Decimal('NaN') |
| 1825 | >>> round(Decimal('sNaN123'), 0) |
| 1826 | Decimal('NaN123') |
| 1827 | |
| 1828 | """ |
| 1829 | if n is not None: |
| 1830 | # two-argument form: use the equivalent quantize call |
| 1831 | if not isinstance(n, int): |
| 1832 | raise TypeError('Second argument to round should be integral') |
| 1833 | exp = _dec_from_triple(0, '1', -n) |
| 1834 | return self.quantize(exp) |
| 1835 | |
| 1836 | # one-argument form |
| 1837 | if self._is_special: |
| 1838 | if self.is_nan(): |
| 1839 | raise ValueError("cannot round a NaN") |
| 1840 | else: |
| 1841 | raise OverflowError("cannot round an infinity") |
| 1842 | return int(self._rescale(0, ROUND_HALF_EVEN)) |
| 1843 | |
| 1844 | def __floor__(self): |
| 1845 | """Return the floor of self, as an integer. |
| 1846 | |
| 1847 | For a finite Decimal instance self, return the greatest |
| 1848 | integer n such that n <= self. If self is infinite or a NaN |
| 1849 | then a Python exception is raised. |
| 1850 | |
| 1851 | """ |
| 1852 | if self._is_special: |
| 1853 | if self.is_nan(): |
| 1854 | raise ValueError("cannot round a NaN") |
| 1855 | else: |
| 1856 | raise OverflowError("cannot round an infinity") |
| 1857 | return int(self._rescale(0, ROUND_FLOOR)) |
| 1858 | |
| 1859 | def __ceil__(self): |
| 1860 | """Return the ceiling of self, as an integer. |
| 1861 | |
| 1862 | For a finite Decimal instance self, return the least integer n |
| 1863 | such that n >= self. If self is infinite or a NaN then a |
| 1864 | Python exception is raised. |
| 1865 | |
| 1866 | """ |
| 1867 | if self._is_special: |
| 1868 | if self.is_nan(): |
| 1869 | raise ValueError("cannot round a NaN") |
| 1870 | else: |
| 1871 | raise OverflowError("cannot round an infinity") |
| 1872 | return int(self._rescale(0, ROUND_CEILING)) |
| 1873 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1874 | def fma(self, other, third, context=None): |
| 1875 | """Fused multiply-add. |
| 1876 | |
| 1877 | Returns self*other+third with no rounding of the intermediate |
| 1878 | product self*other. |
| 1879 | |
| 1880 | self and other are multiplied together, with no rounding of |
| 1881 | the result. The third operand is then added to the result, |
| 1882 | and a single final rounding is performed. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1883 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1884 | |
| 1885 | other = _convert_other(other, raiseit=True) |
Christian Heimes | 8b0facf | 2007-12-04 19:30:01 +0000 | [diff] [blame] | 1886 | |
| 1887 | # compute product; raise InvalidOperation if either operand is |
| 1888 | # a signaling NaN or if the product is zero times infinity. |
| 1889 | if self._is_special or other._is_special: |
| 1890 | if context is None: |
| 1891 | context = getcontext() |
| 1892 | if self._exp == 'N': |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 1893 | return context._raise_error(InvalidOperation, 'sNaN', self) |
Christian Heimes | 8b0facf | 2007-12-04 19:30:01 +0000 | [diff] [blame] | 1894 | if other._exp == 'N': |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 1895 | return context._raise_error(InvalidOperation, 'sNaN', other) |
Christian Heimes | 8b0facf | 2007-12-04 19:30:01 +0000 | [diff] [blame] | 1896 | if self._exp == 'n': |
| 1897 | product = self |
| 1898 | elif other._exp == 'n': |
| 1899 | product = other |
| 1900 | elif self._exp == 'F': |
| 1901 | if not other: |
| 1902 | return context._raise_error(InvalidOperation, |
| 1903 | 'INF * 0 in fma') |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 1904 | product = _SignedInfinity[self._sign ^ other._sign] |
Christian Heimes | 8b0facf | 2007-12-04 19:30:01 +0000 | [diff] [blame] | 1905 | elif other._exp == 'F': |
| 1906 | if not self: |
| 1907 | return context._raise_error(InvalidOperation, |
| 1908 | '0 * INF in fma') |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 1909 | product = _SignedInfinity[self._sign ^ other._sign] |
Christian Heimes | 8b0facf | 2007-12-04 19:30:01 +0000 | [diff] [blame] | 1910 | else: |
| 1911 | product = _dec_from_triple(self._sign ^ other._sign, |
| 1912 | str(int(self._int) * int(other._int)), |
| 1913 | self._exp + other._exp) |
| 1914 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1915 | third = _convert_other(third, raiseit=True) |
Christian Heimes | 8b0facf | 2007-12-04 19:30:01 +0000 | [diff] [blame] | 1916 | return product.__add__(third, context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1917 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1918 | def _power_modulo(self, other, modulo, context=None): |
| 1919 | """Three argument version of __pow__""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1920 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1921 | # if can't convert other and modulo to Decimal, raise |
| 1922 | # TypeError; there's no point returning NotImplemented (no |
| 1923 | # equivalent of __rpow__ for three argument pow) |
| 1924 | other = _convert_other(other, raiseit=True) |
| 1925 | modulo = _convert_other(modulo, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1926 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1927 | if context is None: |
| 1928 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1929 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1930 | # deal with NaNs: if there are any sNaNs then first one wins, |
| 1931 | # (i.e. behaviour for NaNs is identical to that of fma) |
| 1932 | self_is_nan = self._isnan() |
| 1933 | other_is_nan = other._isnan() |
| 1934 | modulo_is_nan = modulo._isnan() |
| 1935 | if self_is_nan or other_is_nan or modulo_is_nan: |
| 1936 | if self_is_nan == 2: |
| 1937 | return context._raise_error(InvalidOperation, 'sNaN', |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 1938 | self) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1939 | if other_is_nan == 2: |
| 1940 | return context._raise_error(InvalidOperation, 'sNaN', |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 1941 | other) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1942 | if modulo_is_nan == 2: |
| 1943 | return context._raise_error(InvalidOperation, 'sNaN', |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 1944 | modulo) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1945 | if self_is_nan: |
| 1946 | return self._fix_nan(context) |
| 1947 | if other_is_nan: |
| 1948 | return other._fix_nan(context) |
| 1949 | return modulo._fix_nan(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 1950 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 1951 | # check inputs: we apply same restrictions as Python's pow() |
| 1952 | if not (self._isinteger() and |
| 1953 | other._isinteger() and |
| 1954 | modulo._isinteger()): |
| 1955 | return context._raise_error(InvalidOperation, |
| 1956 | 'pow() 3rd argument not allowed ' |
| 1957 | 'unless all arguments are integers') |
| 1958 | if other < 0: |
| 1959 | return context._raise_error(InvalidOperation, |
| 1960 | 'pow() 2nd argument cannot be ' |
| 1961 | 'negative when 3rd argument specified') |
| 1962 | if not modulo: |
| 1963 | return context._raise_error(InvalidOperation, |
| 1964 | 'pow() 3rd argument cannot be 0') |
| 1965 | |
| 1966 | # additional restriction for decimal: the modulus must be less |
| 1967 | # than 10**prec in absolute value |
| 1968 | if modulo.adjusted() >= context.prec: |
| 1969 | return context._raise_error(InvalidOperation, |
| 1970 | 'insufficient precision: pow() 3rd ' |
| 1971 | 'argument must not have more than ' |
| 1972 | 'precision digits') |
| 1973 | |
| 1974 | # define 0**0 == NaN, for consistency with two-argument pow |
| 1975 | # (even though it hurts!) |
| 1976 | if not other and not self: |
| 1977 | return context._raise_error(InvalidOperation, |
| 1978 | 'at least one of pow() 1st argument ' |
| 1979 | 'and 2nd argument must be nonzero ;' |
| 1980 | '0**0 is not defined') |
| 1981 | |
| 1982 | # compute sign of result |
| 1983 | if other._iseven(): |
| 1984 | sign = 0 |
| 1985 | else: |
| 1986 | sign = self._sign |
| 1987 | |
| 1988 | # convert modulo to a Python integer, and self and other to |
| 1989 | # Decimal integers (i.e. force their exponents to be >= 0) |
| 1990 | modulo = abs(int(modulo)) |
| 1991 | base = _WorkRep(self.to_integral_value()) |
| 1992 | exponent = _WorkRep(other.to_integral_value()) |
| 1993 | |
| 1994 | # compute result using integer pow() |
| 1995 | base = (base.int % modulo * pow(10, base.exp, modulo)) % modulo |
| 1996 | for i in range(exponent.exp): |
| 1997 | base = pow(base, 10, modulo) |
| 1998 | base = pow(base, exponent.int, modulo) |
| 1999 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2000 | return _dec_from_triple(sign, str(base), 0) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2001 | |
| 2002 | def _power_exact(self, other, p): |
| 2003 | """Attempt to compute self**other exactly. |
| 2004 | |
| 2005 | Given Decimals self and other and an integer p, attempt to |
| 2006 | compute an exact result for the power self**other, with p |
| 2007 | digits of precision. Return None if self**other is not |
| 2008 | exactly representable in p digits. |
| 2009 | |
| 2010 | Assumes that elimination of special cases has already been |
| 2011 | performed: self and other must both be nonspecial; self must |
| 2012 | be positive and not numerically equal to 1; other must be |
| 2013 | nonzero. For efficiency, other._exp should not be too large, |
| 2014 | so that 10**abs(other._exp) is a feasible calculation.""" |
| 2015 | |
| 2016 | # In the comments below, we write x for the value of self and |
| 2017 | # y for the value of other. Write x = xc*10**xe and y = |
| 2018 | # yc*10**ye. |
| 2019 | |
| 2020 | # The main purpose of this method is to identify the *failure* |
| 2021 | # of x**y to be exactly representable with as little effort as |
| 2022 | # possible. So we look for cheap and easy tests that |
| 2023 | # eliminate the possibility of x**y being exact. Only if all |
| 2024 | # these tests are passed do we go on to actually compute x**y. |
| 2025 | |
| 2026 | # Here's the main idea. First normalize both x and y. We |
| 2027 | # express y as a rational m/n, with m and n relatively prime |
| 2028 | # and n>0. Then for x**y to be exactly representable (at |
| 2029 | # *any* precision), xc must be the nth power of a positive |
| 2030 | # integer and xe must be divisible by n. If m is negative |
| 2031 | # then additionally xc must be a power of either 2 or 5, hence |
| 2032 | # a power of 2**n or 5**n. |
| 2033 | # |
| 2034 | # There's a limit to how small |y| can be: if y=m/n as above |
| 2035 | # then: |
| 2036 | # |
| 2037 | # (1) if xc != 1 then for the result to be representable we |
| 2038 | # need xc**(1/n) >= 2, and hence also xc**|y| >= 2. So |
| 2039 | # if |y| <= 1/nbits(xc) then xc < 2**nbits(xc) <= |
| 2040 | # 2**(1/|y|), hence xc**|y| < 2 and the result is not |
| 2041 | # representable. |
| 2042 | # |
| 2043 | # (2) if xe != 0, |xe|*(1/n) >= 1, so |xe|*|y| >= 1. Hence if |
| 2044 | # |y| < 1/|xe| then the result is not representable. |
| 2045 | # |
| 2046 | # Note that since x is not equal to 1, at least one of (1) and |
| 2047 | # (2) must apply. Now |y| < 1/nbits(xc) iff |yc|*nbits(xc) < |
| 2048 | # 10**-ye iff len(str(|yc|*nbits(xc)) <= -ye. |
| 2049 | # |
| 2050 | # There's also a limit to how large y can be, at least if it's |
| 2051 | # positive: the normalized result will have coefficient xc**y, |
| 2052 | # so if it's representable then xc**y < 10**p, and y < |
| 2053 | # p/log10(xc). Hence if y*log10(xc) >= p then the result is |
| 2054 | # not exactly representable. |
| 2055 | |
| 2056 | # if len(str(abs(yc*xe)) <= -ye then abs(yc*xe) < 10**-ye, |
| 2057 | # so |y| < 1/xe and the result is not representable. |
| 2058 | # Similarly, len(str(abs(yc)*xc_bits)) <= -ye implies |y| |
| 2059 | # < 1/nbits(xc). |
| 2060 | |
| 2061 | x = _WorkRep(self) |
| 2062 | xc, xe = x.int, x.exp |
| 2063 | while xc % 10 == 0: |
| 2064 | xc //= 10 |
| 2065 | xe += 1 |
| 2066 | |
| 2067 | y = _WorkRep(other) |
| 2068 | yc, ye = y.int, y.exp |
| 2069 | while yc % 10 == 0: |
| 2070 | yc //= 10 |
| 2071 | ye += 1 |
| 2072 | |
| 2073 | # case where xc == 1: result is 10**(xe*y), with xe*y |
| 2074 | # required to be an integer |
| 2075 | if xc == 1: |
| 2076 | if ye >= 0: |
| 2077 | exponent = xe*yc*10**ye |
| 2078 | else: |
| 2079 | exponent, remainder = divmod(xe*yc, 10**-ye) |
| 2080 | if remainder: |
| 2081 | return None |
| 2082 | if y.sign == 1: |
| 2083 | exponent = -exponent |
| 2084 | # if other is a nonnegative integer, use ideal exponent |
| 2085 | if other._isinteger() and other._sign == 0: |
| 2086 | ideal_exponent = self._exp*int(other) |
| 2087 | zeros = min(exponent-ideal_exponent, p-1) |
| 2088 | else: |
| 2089 | zeros = 0 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2090 | return _dec_from_triple(0, '1' + '0'*zeros, exponent-zeros) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2091 | |
| 2092 | # case where y is negative: xc must be either a power |
| 2093 | # of 2 or a power of 5. |
| 2094 | if y.sign == 1: |
| 2095 | last_digit = xc % 10 |
| 2096 | if last_digit in (2,4,6,8): |
| 2097 | # quick test for power of 2 |
| 2098 | if xc & -xc != xc: |
| 2099 | return None |
| 2100 | # now xc is a power of 2; e is its exponent |
| 2101 | e = _nbits(xc)-1 |
| 2102 | # find e*y and xe*y; both must be integers |
| 2103 | if ye >= 0: |
| 2104 | y_as_int = yc*10**ye |
| 2105 | e = e*y_as_int |
| 2106 | xe = xe*y_as_int |
| 2107 | else: |
| 2108 | ten_pow = 10**-ye |
| 2109 | e, remainder = divmod(e*yc, ten_pow) |
| 2110 | if remainder: |
| 2111 | return None |
| 2112 | xe, remainder = divmod(xe*yc, ten_pow) |
| 2113 | if remainder: |
| 2114 | return None |
| 2115 | |
| 2116 | if e*65 >= p*93: # 93/65 > log(10)/log(5) |
| 2117 | return None |
| 2118 | xc = 5**e |
| 2119 | |
| 2120 | elif last_digit == 5: |
| 2121 | # e >= log_5(xc) if xc is a power of 5; we have |
| 2122 | # equality all the way up to xc=5**2658 |
| 2123 | e = _nbits(xc)*28//65 |
| 2124 | xc, remainder = divmod(5**e, xc) |
| 2125 | if remainder: |
| 2126 | return None |
| 2127 | while xc % 5 == 0: |
| 2128 | xc //= 5 |
| 2129 | e -= 1 |
| 2130 | if ye >= 0: |
| 2131 | y_as_integer = yc*10**ye |
| 2132 | e = e*y_as_integer |
| 2133 | xe = xe*y_as_integer |
| 2134 | else: |
| 2135 | ten_pow = 10**-ye |
| 2136 | e, remainder = divmod(e*yc, ten_pow) |
| 2137 | if remainder: |
| 2138 | return None |
| 2139 | xe, remainder = divmod(xe*yc, ten_pow) |
| 2140 | if remainder: |
| 2141 | return None |
| 2142 | if e*3 >= p*10: # 10/3 > log(10)/log(2) |
| 2143 | return None |
| 2144 | xc = 2**e |
| 2145 | else: |
| 2146 | return None |
| 2147 | |
| 2148 | if xc >= 10**p: |
| 2149 | return None |
| 2150 | xe = -e-xe |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2151 | return _dec_from_triple(0, str(xc), xe) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2152 | |
| 2153 | # now y is positive; find m and n such that y = m/n |
| 2154 | if ye >= 0: |
| 2155 | m, n = yc*10**ye, 1 |
| 2156 | else: |
| 2157 | if xe != 0 and len(str(abs(yc*xe))) <= -ye: |
| 2158 | return None |
| 2159 | xc_bits = _nbits(xc) |
| 2160 | if xc != 1 and len(str(abs(yc)*xc_bits)) <= -ye: |
| 2161 | return None |
| 2162 | m, n = yc, 10**(-ye) |
| 2163 | while m % 2 == n % 2 == 0: |
| 2164 | m //= 2 |
| 2165 | n //= 2 |
| 2166 | while m % 5 == n % 5 == 0: |
| 2167 | m //= 5 |
| 2168 | n //= 5 |
| 2169 | |
| 2170 | # compute nth root of xc*10**xe |
| 2171 | if n > 1: |
| 2172 | # if 1 < xc < 2**n then xc isn't an nth power |
| 2173 | if xc != 1 and xc_bits <= n: |
| 2174 | return None |
| 2175 | |
| 2176 | xe, rem = divmod(xe, n) |
| 2177 | if rem != 0: |
| 2178 | return None |
| 2179 | |
| 2180 | # compute nth root of xc using Newton's method |
| 2181 | a = 1 << -(-_nbits(xc)//n) # initial estimate |
| 2182 | while True: |
| 2183 | q, r = divmod(xc, a**(n-1)) |
| 2184 | if a <= q: |
| 2185 | break |
| 2186 | else: |
| 2187 | a = (a*(n-1) + q)//n |
| 2188 | if not (a == q and r == 0): |
| 2189 | return None |
| 2190 | xc = a |
| 2191 | |
| 2192 | # now xc*10**xe is the nth root of the original xc*10**xe |
| 2193 | # compute mth power of xc*10**xe |
| 2194 | |
| 2195 | # if m > p*100//_log10_lb(xc) then m > p/log10(xc), hence xc**m > |
| 2196 | # 10**p and the result is not representable. |
| 2197 | if xc > 1 and m > p*100//_log10_lb(xc): |
| 2198 | return None |
| 2199 | xc = xc**m |
| 2200 | xe *= m |
| 2201 | if xc > 10**p: |
| 2202 | return None |
| 2203 | |
| 2204 | # by this point the result *is* exactly representable |
| 2205 | # adjust the exponent to get as close as possible to the ideal |
| 2206 | # exponent, if necessary |
| 2207 | str_xc = str(xc) |
| 2208 | if other._isinteger() and other._sign == 0: |
| 2209 | ideal_exponent = self._exp*int(other) |
| 2210 | zeros = min(xe-ideal_exponent, p-len(str_xc)) |
| 2211 | else: |
| 2212 | zeros = 0 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2213 | return _dec_from_triple(0, str_xc+'0'*zeros, xe-zeros) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2214 | |
| 2215 | def __pow__(self, other, modulo=None, context=None): |
| 2216 | """Return self ** other [ % modulo]. |
| 2217 | |
| 2218 | With two arguments, compute self**other. |
| 2219 | |
| 2220 | With three arguments, compute (self**other) % modulo. For the |
| 2221 | three argument form, the following restrictions on the |
| 2222 | arguments hold: |
| 2223 | |
| 2224 | - all three arguments must be integral |
| 2225 | - other must be nonnegative |
| 2226 | - either self or other (or both) must be nonzero |
| 2227 | - modulo must be nonzero and must have at most p digits, |
| 2228 | where p is the context precision. |
| 2229 | |
| 2230 | If any of these restrictions is violated the InvalidOperation |
| 2231 | flag is raised. |
| 2232 | |
| 2233 | The result of pow(self, other, modulo) is identical to the |
| 2234 | result that would be obtained by computing (self**other) % |
| 2235 | modulo with unbounded precision, but is computed more |
| 2236 | efficiently. It is always exact. |
| 2237 | """ |
| 2238 | |
| 2239 | if modulo is not None: |
| 2240 | return self._power_modulo(other, modulo, context) |
| 2241 | |
| 2242 | other = _convert_other(other) |
| 2243 | if other is NotImplemented: |
| 2244 | return other |
| 2245 | |
| 2246 | if context is None: |
| 2247 | context = getcontext() |
| 2248 | |
| 2249 | # either argument is a NaN => result is NaN |
| 2250 | ans = self._check_nans(other, context) |
| 2251 | if ans: |
| 2252 | return ans |
| 2253 | |
| 2254 | # 0**0 = NaN (!), x**0 = 1 for nonzero x (including +/-Infinity) |
| 2255 | if not other: |
| 2256 | if not self: |
| 2257 | return context._raise_error(InvalidOperation, '0 ** 0') |
| 2258 | else: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2259 | return _One |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2260 | |
| 2261 | # result has sign 1 iff self._sign is 1 and other is an odd integer |
| 2262 | result_sign = 0 |
| 2263 | if self._sign == 1: |
| 2264 | if other._isinteger(): |
| 2265 | if not other._iseven(): |
| 2266 | result_sign = 1 |
| 2267 | else: |
| 2268 | # -ve**noninteger = NaN |
| 2269 | # (-0)**noninteger = 0**noninteger |
| 2270 | if self: |
| 2271 | return context._raise_error(InvalidOperation, |
| 2272 | 'x ** y with x negative and y not an integer') |
| 2273 | # negate self, without doing any unwanted rounding |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2274 | self = self.copy_negate() |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2275 | |
| 2276 | # 0**(+ve or Inf)= 0; 0**(-ve or -Inf) = Infinity |
| 2277 | if not self: |
| 2278 | if other._sign == 0: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2279 | return _dec_from_triple(result_sign, '0', 0) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2280 | else: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2281 | return _SignedInfinity[result_sign] |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2282 | |
| 2283 | # Inf**(+ve or Inf) = Inf; Inf**(-ve or -Inf) = 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2284 | if self._isinfinity(): |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2285 | if other._sign == 0: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2286 | return _SignedInfinity[result_sign] |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2287 | else: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2288 | return _dec_from_triple(result_sign, '0', 0) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2289 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2290 | # 1**other = 1, but the choice of exponent and the flags |
| 2291 | # depend on the exponent of self, and on whether other is a |
| 2292 | # positive integer, a negative integer, or neither |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2293 | if self == _One: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2294 | if other._isinteger(): |
| 2295 | # exp = max(self._exp*max(int(other), 0), |
| 2296 | # 1-context.prec) but evaluating int(other) directly |
| 2297 | # is dangerous until we know other is small (other |
| 2298 | # could be 1e999999999) |
| 2299 | if other._sign == 1: |
| 2300 | multiplier = 0 |
| 2301 | elif other > context.prec: |
| 2302 | multiplier = context.prec |
| 2303 | else: |
| 2304 | multiplier = int(other) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2305 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2306 | exp = self._exp * multiplier |
| 2307 | if exp < 1-context.prec: |
| 2308 | exp = 1-context.prec |
| 2309 | context._raise_error(Rounded) |
| 2310 | else: |
| 2311 | context._raise_error(Inexact) |
| 2312 | context._raise_error(Rounded) |
| 2313 | exp = 1-context.prec |
| 2314 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2315 | return _dec_from_triple(result_sign, '1'+'0'*-exp, exp) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2316 | |
| 2317 | # compute adjusted exponent of self |
| 2318 | self_adj = self.adjusted() |
| 2319 | |
| 2320 | # self ** infinity is infinity if self > 1, 0 if self < 1 |
| 2321 | # self ** -infinity is infinity if self < 1, 0 if self > 1 |
| 2322 | if other._isinfinity(): |
| 2323 | if (other._sign == 0) == (self_adj < 0): |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2324 | return _dec_from_triple(result_sign, '0', 0) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2325 | else: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2326 | return _SignedInfinity[result_sign] |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2327 | |
| 2328 | # from here on, the result always goes through the call |
| 2329 | # to _fix at the end of this function. |
| 2330 | ans = None |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 2331 | exact = False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2332 | |
| 2333 | # crude test to catch cases of extreme overflow/underflow. If |
| 2334 | # log10(self)*other >= 10**bound and bound >= len(str(Emax)) |
| 2335 | # then 10**bound >= 10**len(str(Emax)) >= Emax+1 and hence |
| 2336 | # self**other >= 10**(Emax+1), so overflow occurs. The test |
| 2337 | # for underflow is similar. |
| 2338 | bound = self._log10_exp_bound() + other.adjusted() |
| 2339 | if (self_adj >= 0) == (other._sign == 0): |
| 2340 | # self > 1 and other +ve, or self < 1 and other -ve |
| 2341 | # possibility of overflow |
| 2342 | if bound >= len(str(context.Emax)): |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2343 | ans = _dec_from_triple(result_sign, '1', context.Emax+1) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2344 | else: |
| 2345 | # self > 1 and other -ve, or self < 1 and other +ve |
| 2346 | # possibility of underflow to 0 |
| 2347 | Etiny = context.Etiny() |
| 2348 | if bound >= len(str(-Etiny)): |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2349 | ans = _dec_from_triple(result_sign, '1', Etiny-1) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2350 | |
| 2351 | # try for an exact result with precision +1 |
| 2352 | if ans is None: |
| 2353 | ans = self._power_exact(other, context.prec + 1) |
| 2354 | if ans is not None and result_sign == 1: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2355 | ans = _dec_from_triple(1, ans._int, ans._exp) |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 2356 | exact = True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2357 | |
| 2358 | # usual case: inexact result, x**y computed directly as exp(y*log(x)) |
| 2359 | if ans is None: |
| 2360 | p = context.prec |
| 2361 | x = _WorkRep(self) |
| 2362 | xc, xe = x.int, x.exp |
| 2363 | y = _WorkRep(other) |
| 2364 | yc, ye = y.int, y.exp |
| 2365 | if y.sign == 1: |
| 2366 | yc = -yc |
| 2367 | |
| 2368 | # compute correctly rounded result: start with precision +3, |
| 2369 | # then increase precision until result is unambiguously roundable |
| 2370 | extra = 3 |
| 2371 | while True: |
| 2372 | coeff, exp = _dpower(xc, xe, yc, ye, p+extra) |
| 2373 | if coeff % (5*10**(len(str(coeff))-p-1)): |
| 2374 | break |
| 2375 | extra += 3 |
| 2376 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2377 | ans = _dec_from_triple(result_sign, str(coeff), exp) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2378 | |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 2379 | # unlike exp, ln and log10, the power function respects the |
| 2380 | # rounding mode; no need to switch to ROUND_HALF_EVEN here |
| 2381 | |
| 2382 | # There's a difficulty here when 'other' is not an integer and |
| 2383 | # the result is exact. In this case, the specification |
| 2384 | # requires that the Inexact flag be raised (in spite of |
| 2385 | # exactness), but since the result is exact _fix won't do this |
| 2386 | # for us. (Correspondingly, the Underflow signal should also |
| 2387 | # be raised for subnormal results.) We can't directly raise |
| 2388 | # these signals either before or after calling _fix, since |
| 2389 | # that would violate the precedence for signals. So we wrap |
| 2390 | # the ._fix call in a temporary context, and reraise |
| 2391 | # afterwards. |
| 2392 | if exact and not other._isinteger(): |
| 2393 | # pad with zeros up to length context.prec+1 if necessary; this |
| 2394 | # ensures that the Rounded signal will be raised. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2395 | if len(ans._int) <= context.prec: |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 2396 | expdiff = context.prec + 1 - len(ans._int) |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2397 | ans = _dec_from_triple(ans._sign, ans._int+'0'*expdiff, |
| 2398 | ans._exp-expdiff) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2399 | |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 2400 | # create a copy of the current context, with cleared flags/traps |
| 2401 | newcontext = context.copy() |
| 2402 | newcontext.clear_flags() |
| 2403 | for exception in _signals: |
| 2404 | newcontext.traps[exception] = 0 |
| 2405 | |
| 2406 | # round in the new context |
| 2407 | ans = ans._fix(newcontext) |
| 2408 | |
| 2409 | # raise Inexact, and if necessary, Underflow |
| 2410 | newcontext._raise_error(Inexact) |
| 2411 | if newcontext.flags[Subnormal]: |
| 2412 | newcontext._raise_error(Underflow) |
| 2413 | |
| 2414 | # propagate signals to the original context; _fix could |
| 2415 | # have raised any of Overflow, Underflow, Subnormal, |
| 2416 | # Inexact, Rounded, Clamped. Overflow needs the correct |
| 2417 | # arguments. Note that the order of the exceptions is |
| 2418 | # important here. |
| 2419 | if newcontext.flags[Overflow]: |
| 2420 | context._raise_error(Overflow, 'above Emax', ans._sign) |
| 2421 | for exception in Underflow, Subnormal, Inexact, Rounded, Clamped: |
| 2422 | if newcontext.flags[exception]: |
| 2423 | context._raise_error(exception) |
| 2424 | |
| 2425 | else: |
| 2426 | ans = ans._fix(context) |
| 2427 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2428 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2429 | |
| 2430 | def __rpow__(self, other, context=None): |
| 2431 | """Swaps self/other and returns __pow__.""" |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2432 | other = _convert_other(other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 2433 | if other is NotImplemented: |
| 2434 | return other |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2435 | return other.__pow__(self, context=context) |
| 2436 | |
| 2437 | def normalize(self, context=None): |
| 2438 | """Normalize- strip trailing 0s, change anything equal to 0 to 0e0""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2439 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2440 | if context is None: |
| 2441 | context = getcontext() |
| 2442 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2443 | if self._is_special: |
| 2444 | ans = self._check_nans(context=context) |
| 2445 | if ans: |
| 2446 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2447 | |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 2448 | dup = self._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2449 | if dup._isinfinity(): |
| 2450 | return dup |
| 2451 | |
| 2452 | if not dup: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2453 | return _dec_from_triple(dup._sign, '0', 0) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2454 | exp_max = [context.Emax, context.Etop()][context._clamp] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2455 | end = len(dup._int) |
| 2456 | exp = dup._exp |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2457 | while dup._int[end-1] == '0' and exp < exp_max: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2458 | exp += 1 |
| 2459 | end -= 1 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2460 | return _dec_from_triple(dup._sign, dup._int[:end], exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2461 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2462 | def quantize(self, exp, rounding=None, context=None, watchexp=True): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2463 | """Quantize self so its exponent is the same as that of exp. |
| 2464 | |
| 2465 | Similar to self._rescale(exp._exp) but with error checking. |
| 2466 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2467 | exp = _convert_other(exp, raiseit=True) |
| 2468 | |
| 2469 | if context is None: |
| 2470 | context = getcontext() |
| 2471 | if rounding is None: |
| 2472 | rounding = context.rounding |
| 2473 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2474 | if self._is_special or exp._is_special: |
| 2475 | ans = self._check_nans(exp, context) |
| 2476 | if ans: |
| 2477 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2478 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2479 | if exp._isinfinity() or self._isinfinity(): |
| 2480 | if exp._isinfinity() and self._isinfinity(): |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2481 | return Decimal(self) # if both are inf, it is OK |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2482 | return context._raise_error(InvalidOperation, |
| 2483 | 'quantize with one INF') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2484 | |
| 2485 | # if we're not watching exponents, do a simple rescale |
| 2486 | if not watchexp: |
| 2487 | ans = self._rescale(exp._exp, rounding) |
| 2488 | # raise Inexact and Rounded where appropriate |
| 2489 | if ans._exp > self._exp: |
| 2490 | context._raise_error(Rounded) |
| 2491 | if ans != self: |
| 2492 | context._raise_error(Inexact) |
| 2493 | return ans |
| 2494 | |
| 2495 | # exp._exp should be between Etiny and Emax |
| 2496 | if not (context.Etiny() <= exp._exp <= context.Emax): |
| 2497 | return context._raise_error(InvalidOperation, |
| 2498 | 'target exponent out of bounds in quantize') |
| 2499 | |
| 2500 | if not self: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2501 | ans = _dec_from_triple(self._sign, '0', exp._exp) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2502 | return ans._fix(context) |
| 2503 | |
| 2504 | self_adjusted = self.adjusted() |
| 2505 | if self_adjusted > context.Emax: |
| 2506 | return context._raise_error(InvalidOperation, |
| 2507 | 'exponent of quantize result too large for current context') |
| 2508 | if self_adjusted - exp._exp + 1 > context.prec: |
| 2509 | return context._raise_error(InvalidOperation, |
| 2510 | 'quantize result has too many digits for current context') |
| 2511 | |
| 2512 | ans = self._rescale(exp._exp, rounding) |
| 2513 | if ans.adjusted() > context.Emax: |
| 2514 | return context._raise_error(InvalidOperation, |
| 2515 | 'exponent of quantize result too large for current context') |
| 2516 | if len(ans._int) > context.prec: |
| 2517 | return context._raise_error(InvalidOperation, |
| 2518 | 'quantize result has too many digits for current context') |
| 2519 | |
| 2520 | # raise appropriate flags |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2521 | if ans and ans.adjusted() < context.Emin: |
| 2522 | context._raise_error(Subnormal) |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 2523 | if ans._exp > self._exp: |
| 2524 | if ans != self: |
| 2525 | context._raise_error(Inexact) |
| 2526 | context._raise_error(Rounded) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2527 | |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 2528 | # call to fix takes care of any necessary folddown, and |
| 2529 | # signals Clamped if necessary |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2530 | ans = ans._fix(context) |
| 2531 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2532 | |
| 2533 | def same_quantum(self, other): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 2534 | """Return True if self and other have the same exponent; otherwise |
| 2535 | return False. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2536 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 2537 | If either operand is a special value, the following rules are used: |
| 2538 | * return True if both operands are infinities |
| 2539 | * return True if both operands are NaNs |
| 2540 | * otherwise, return False. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2541 | """ |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 2542 | other = _convert_other(other, raiseit=True) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2543 | if self._is_special or other._is_special: |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 2544 | return (self.is_nan() and other.is_nan() or |
| 2545 | self.is_infinite() and other.is_infinite()) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2546 | return self._exp == other._exp |
| 2547 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2548 | def _rescale(self, exp, rounding): |
| 2549 | """Rescale self so that the exponent is exp, either by padding with zeros |
| 2550 | or by truncating digits, using the given rounding mode. |
| 2551 | |
| 2552 | Specials are returned without change. This operation is |
| 2553 | quiet: it raises no flags, and uses no information from the |
| 2554 | context. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2555 | |
| 2556 | exp = exp to scale to (an integer) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2557 | rounding = rounding mode |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2558 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2559 | if self._is_special: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2560 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2561 | if not self: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2562 | return _dec_from_triple(self._sign, '0', exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2563 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2564 | if self._exp >= exp: |
| 2565 | # pad answer with zeros if necessary |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2566 | return _dec_from_triple(self._sign, |
| 2567 | self._int + '0'*(self._exp - exp), exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2568 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2569 | # too many digits; round and lose data. If self.adjusted() < |
| 2570 | # exp-1, replace self by 10**(exp-1) before rounding |
| 2571 | digits = len(self._int) + self._exp - exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2572 | if digits < 0: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2573 | self = _dec_from_triple(self._sign, '1', exp-1) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2574 | digits = 0 |
| 2575 | this_function = getattr(self, self._pick_rounding_function[rounding]) |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 2576 | changed = this_function(digits) |
| 2577 | coeff = self._int[:digits] or '0' |
| 2578 | if changed == 1: |
| 2579 | coeff = str(int(coeff)+1) |
| 2580 | return _dec_from_triple(self._sign, coeff, exp) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2581 | |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 2582 | def _round(self, places, rounding): |
| 2583 | """Round a nonzero, nonspecial Decimal to a fixed number of |
| 2584 | significant figures, using the given rounding mode. |
| 2585 | |
| 2586 | Infinities, NaNs and zeros are returned unaltered. |
| 2587 | |
| 2588 | This operation is quiet: it raises no flags, and uses no |
| 2589 | information from the context. |
| 2590 | |
| 2591 | """ |
| 2592 | if places <= 0: |
| 2593 | raise ValueError("argument should be at least 1 in _round") |
| 2594 | if self._is_special or not self: |
| 2595 | return Decimal(self) |
| 2596 | ans = self._rescale(self.adjusted()+1-places, rounding) |
| 2597 | # it can happen that the rescale alters the adjusted exponent; |
| 2598 | # for example when rounding 99.97 to 3 significant figures. |
| 2599 | # When this happens we end up with an extra 0 at the end of |
| 2600 | # the number; a second rescale fixes this. |
| 2601 | if ans.adjusted() != self.adjusted(): |
| 2602 | ans = ans._rescale(ans.adjusted()+1-places, rounding) |
| 2603 | return ans |
| 2604 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2605 | def to_integral_exact(self, rounding=None, context=None): |
| 2606 | """Rounds to a nearby integer. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2607 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2608 | If no rounding mode is specified, take the rounding mode from |
| 2609 | the context. This method raises the Rounded and Inexact flags |
| 2610 | when appropriate. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2611 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2612 | See also: to_integral_value, which does exactly the same as |
| 2613 | this method except that it doesn't raise Inexact or Rounded. |
| 2614 | """ |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2615 | if self._is_special: |
| 2616 | ans = self._check_nans(context=context) |
| 2617 | if ans: |
| 2618 | return ans |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2619 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2620 | if self._exp >= 0: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2621 | return Decimal(self) |
| 2622 | if not self: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2623 | return _dec_from_triple(self._sign, '0', 0) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2624 | if context is None: |
| 2625 | context = getcontext() |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2626 | if rounding is None: |
| 2627 | rounding = context.rounding |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2628 | ans = self._rescale(0, rounding) |
| 2629 | if ans != self: |
| 2630 | context._raise_error(Inexact) |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 2631 | context._raise_error(Rounded) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2632 | return ans |
| 2633 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2634 | def to_integral_value(self, rounding=None, context=None): |
| 2635 | """Rounds to the nearest integer, without raising inexact, rounded.""" |
| 2636 | if context is None: |
| 2637 | context = getcontext() |
| 2638 | if rounding is None: |
| 2639 | rounding = context.rounding |
| 2640 | if self._is_special: |
| 2641 | ans = self._check_nans(context=context) |
| 2642 | if ans: |
| 2643 | return ans |
| 2644 | return Decimal(self) |
| 2645 | if self._exp >= 0: |
| 2646 | return Decimal(self) |
| 2647 | else: |
| 2648 | return self._rescale(0, rounding) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2649 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2650 | # the method name changed, but we provide also the old one, for compatibility |
| 2651 | to_integral = to_integral_value |
| 2652 | |
| 2653 | def sqrt(self, context=None): |
| 2654 | """Return the square root of self.""" |
Christian Heimes | 0348fb6 | 2008-03-26 12:55:56 +0000 | [diff] [blame] | 2655 | if context is None: |
| 2656 | context = getcontext() |
| 2657 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2658 | if self._is_special: |
| 2659 | ans = self._check_nans(context=context) |
| 2660 | if ans: |
| 2661 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2662 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2663 | if self._isinfinity() and self._sign == 0: |
| 2664 | return Decimal(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2665 | |
| 2666 | if not self: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2667 | # exponent = self._exp // 2. sqrt(-0) = -0 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2668 | ans = _dec_from_triple(self._sign, '0', self._exp // 2) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2669 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2670 | |
| 2671 | if self._sign == 1: |
| 2672 | return context._raise_error(InvalidOperation, 'sqrt(-x), x > 0') |
| 2673 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2674 | # At this point self represents a positive number. Let p be |
| 2675 | # the desired precision and express self in the form c*100**e |
| 2676 | # with c a positive real number and e an integer, c and e |
| 2677 | # being chosen so that 100**(p-1) <= c < 100**p. Then the |
| 2678 | # (exact) square root of self is sqrt(c)*10**e, and 10**(p-1) |
| 2679 | # <= sqrt(c) < 10**p, so the closest representable Decimal at |
| 2680 | # precision p is n*10**e where n = round_half_even(sqrt(c)), |
| 2681 | # the closest integer to sqrt(c) with the even integer chosen |
| 2682 | # in the case of a tie. |
| 2683 | # |
| 2684 | # To ensure correct rounding in all cases, we use the |
| 2685 | # following trick: we compute the square root to an extra |
| 2686 | # place (precision p+1 instead of precision p), rounding down. |
| 2687 | # Then, if the result is inexact and its last digit is 0 or 5, |
| 2688 | # we increase the last digit to 1 or 6 respectively; if it's |
| 2689 | # exact we leave the last digit alone. Now the final round to |
| 2690 | # p places (or fewer in the case of underflow) will round |
| 2691 | # correctly and raise the appropriate flags. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2692 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2693 | # use an extra digit of precision |
| 2694 | prec = context.prec+1 |
| 2695 | |
| 2696 | # write argument in the form c*100**e where e = self._exp//2 |
| 2697 | # is the 'ideal' exponent, to be used if the square root is |
| 2698 | # exactly representable. l is the number of 'digits' of c in |
| 2699 | # base 100, so that 100**(l-1) <= c < 100**l. |
| 2700 | op = _WorkRep(self) |
| 2701 | e = op.exp >> 1 |
| 2702 | if op.exp & 1: |
| 2703 | c = op.int * 10 |
| 2704 | l = (len(self._int) >> 1) + 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2705 | else: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2706 | c = op.int |
| 2707 | l = len(self._int)+1 >> 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2708 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2709 | # rescale so that c has exactly prec base 100 'digits' |
| 2710 | shift = prec-l |
| 2711 | if shift >= 0: |
| 2712 | c *= 100**shift |
| 2713 | exact = True |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2714 | else: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2715 | c, remainder = divmod(c, 100**-shift) |
| 2716 | exact = not remainder |
| 2717 | e -= shift |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2718 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2719 | # find n = floor(sqrt(c)) using Newton's method |
| 2720 | n = 10**prec |
| 2721 | while True: |
| 2722 | q = c//n |
| 2723 | if n <= q: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2724 | break |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2725 | else: |
| 2726 | n = n + q >> 1 |
| 2727 | exact = exact and n*n == c |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2728 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2729 | if exact: |
| 2730 | # result is exact; rescale to use ideal exponent e |
| 2731 | if shift >= 0: |
| 2732 | # assert n % 10**shift == 0 |
| 2733 | n //= 10**shift |
| 2734 | else: |
| 2735 | n *= 10**-shift |
| 2736 | e += shift |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2737 | else: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2738 | # result is not exact; fix last digit as described above |
| 2739 | if n % 5 == 0: |
| 2740 | n += 1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2741 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2742 | ans = _dec_from_triple(0, str(n), e) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2743 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2744 | # round, and fit to current context |
| 2745 | context = context._shallow_copy() |
| 2746 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 2747 | ans = ans._fix(context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2748 | context.rounding = rounding |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2749 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2750 | return ans |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2751 | |
| 2752 | def max(self, other, context=None): |
| 2753 | """Returns the larger value. |
| 2754 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2755 | Like max(self, other) except if one is not a number, returns |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2756 | NaN (and signals if one is sNaN). Also rounds. |
| 2757 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2758 | other = _convert_other(other, raiseit=True) |
| 2759 | |
| 2760 | if context is None: |
| 2761 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2762 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2763 | if self._is_special or other._is_special: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 2764 | # 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] | 2765 | # number is always returned |
| 2766 | sn = self._isnan() |
| 2767 | on = other._isnan() |
| 2768 | if sn or on: |
Facundo Batista | 708d581 | 2008-12-11 04:20:07 +0000 | [diff] [blame] | 2769 | if on == 1 and sn == 0: |
| 2770 | return self._fix(context) |
| 2771 | if sn == 1 and on == 0: |
| 2772 | return other._fix(context) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2773 | return self._check_nans(other, context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2774 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 2775 | c = self._cmp(other) |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2776 | if c == 0: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 2777 | # If both operands are finite and equal in numerical value |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2778 | # then an ordering is applied: |
| 2779 | # |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 2780 | # If the signs differ then max returns the operand with the |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2781 | # positive sign and min returns the operand with the negative sign |
| 2782 | # |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 2783 | # If the signs are the same then the exponent is used to select |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2784 | # the result. This is exactly the ordering used in compare_total. |
| 2785 | c = self.compare_total(other) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2786 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2787 | if c == -1: |
| 2788 | ans = other |
| 2789 | else: |
| 2790 | ans = self |
| 2791 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 2792 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2793 | |
| 2794 | def min(self, other, context=None): |
| 2795 | """Returns the smaller value. |
| 2796 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 2797 | Like min(self, other) except if one is not a number, returns |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2798 | NaN (and signals if one is sNaN). Also rounds. |
| 2799 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2800 | other = _convert_other(other, raiseit=True) |
| 2801 | |
| 2802 | if context is None: |
| 2803 | context = getcontext() |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2804 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2805 | if self._is_special or other._is_special: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 2806 | # 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] | 2807 | # number is always returned |
| 2808 | sn = self._isnan() |
| 2809 | on = other._isnan() |
| 2810 | if sn or on: |
Facundo Batista | 708d581 | 2008-12-11 04:20:07 +0000 | [diff] [blame] | 2811 | if on == 1 and sn == 0: |
| 2812 | return self._fix(context) |
| 2813 | if sn == 1 and on == 0: |
| 2814 | return other._fix(context) |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2815 | return self._check_nans(other, context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2816 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 2817 | c = self._cmp(other) |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 2818 | if c == 0: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2819 | c = self.compare_total(other) |
| 2820 | |
| 2821 | if c == -1: |
| 2822 | ans = self |
| 2823 | else: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2824 | ans = other |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 2825 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 2826 | return ans._fix(context) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2827 | |
| 2828 | def _isinteger(self): |
| 2829 | """Returns whether self is an integer""" |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2830 | if self._is_special: |
| 2831 | return False |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2832 | if self._exp >= 0: |
| 2833 | return True |
| 2834 | rest = self._int[self._exp:] |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2835 | return rest == '0'*len(rest) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2836 | |
| 2837 | def _iseven(self): |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2838 | """Returns True if self is even. Assumes self is an integer.""" |
| 2839 | if not self or self._exp > 0: |
| 2840 | return True |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2841 | return self._int[-1+self._exp] in '02468' |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2842 | |
| 2843 | def adjusted(self): |
| 2844 | """Return the adjusted exponent of self""" |
| 2845 | try: |
| 2846 | return self._exp + len(self._int) - 1 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 2847 | # If NaN or Infinity, self._exp is string |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 2848 | except TypeError: |
| 2849 | return 0 |
| 2850 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2851 | def canonical(self, context=None): |
| 2852 | """Returns the same Decimal object. |
| 2853 | |
| 2854 | As we do not have different encodings for the same number, the |
| 2855 | received object already is in its canonical form. |
| 2856 | """ |
| 2857 | return self |
| 2858 | |
| 2859 | def compare_signal(self, other, context=None): |
| 2860 | """Compares self to the other operand numerically. |
| 2861 | |
| 2862 | It's pretty much like compare(), but all NaNs signal, with signaling |
| 2863 | NaNs taking precedence over quiet NaNs. |
| 2864 | """ |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 2865 | other = _convert_other(other, raiseit = True) |
| 2866 | ans = self._compare_check_nans(other, context) |
| 2867 | if ans: |
| 2868 | return ans |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2869 | return self.compare(other, context=context) |
| 2870 | |
| 2871 | def compare_total(self, other): |
| 2872 | """Compares self to other using the abstract representations. |
| 2873 | |
| 2874 | This is not like the standard compare, which use their numerical |
| 2875 | value. Note that a total ordering is defined for all possible abstract |
| 2876 | representations. |
| 2877 | """ |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 2878 | other = _convert_other(other, raiseit=True) |
| 2879 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2880 | # if one is negative and the other is positive, it's easy |
| 2881 | if self._sign and not other._sign: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2882 | return _NegativeOne |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2883 | if not self._sign and other._sign: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2884 | return _One |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2885 | sign = self._sign |
| 2886 | |
| 2887 | # let's handle both NaN types |
| 2888 | self_nan = self._isnan() |
| 2889 | other_nan = other._isnan() |
| 2890 | if self_nan or other_nan: |
| 2891 | if self_nan == other_nan: |
Mark Dickinson | d314e1b | 2009-08-28 13:39:53 +0000 | [diff] [blame] | 2892 | # compare payloads as though they're integers |
| 2893 | self_key = len(self._int), self._int |
| 2894 | other_key = len(other._int), other._int |
| 2895 | if self_key < other_key: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2896 | if sign: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2897 | return _One |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2898 | else: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2899 | return _NegativeOne |
Mark Dickinson | d314e1b | 2009-08-28 13:39:53 +0000 | [diff] [blame] | 2900 | if self_key > other_key: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2901 | if sign: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2902 | return _NegativeOne |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2903 | else: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2904 | return _One |
| 2905 | return _Zero |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2906 | |
| 2907 | if sign: |
| 2908 | if self_nan == 1: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2909 | return _NegativeOne |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2910 | if other_nan == 1: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2911 | return _One |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2912 | if self_nan == 2: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2913 | return _NegativeOne |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2914 | if other_nan == 2: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2915 | return _One |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2916 | else: |
| 2917 | if self_nan == 1: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2918 | return _One |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2919 | if other_nan == 1: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2920 | return _NegativeOne |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2921 | if self_nan == 2: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2922 | return _One |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2923 | if other_nan == 2: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2924 | return _NegativeOne |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2925 | |
| 2926 | if self < other: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2927 | return _NegativeOne |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2928 | if self > other: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2929 | return _One |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2930 | |
| 2931 | if self._exp < other._exp: |
| 2932 | if sign: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2933 | return _One |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2934 | else: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2935 | return _NegativeOne |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2936 | if self._exp > other._exp: |
| 2937 | if sign: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2938 | return _NegativeOne |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2939 | else: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2940 | return _One |
| 2941 | return _Zero |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2942 | |
| 2943 | |
| 2944 | def compare_total_mag(self, other): |
| 2945 | """Compares self to other using abstract repr., ignoring sign. |
| 2946 | |
| 2947 | Like compare_total, but with operand's sign ignored and assumed to be 0. |
| 2948 | """ |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 2949 | other = _convert_other(other, raiseit=True) |
| 2950 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2951 | s = self.copy_abs() |
| 2952 | o = other.copy_abs() |
| 2953 | return s.compare_total(o) |
| 2954 | |
| 2955 | def copy_abs(self): |
| 2956 | """Returns a copy with the sign set to 0. """ |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2957 | return _dec_from_triple(0, self._int, self._exp, self._is_special) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2958 | |
| 2959 | def copy_negate(self): |
| 2960 | """Returns a copy with the sign inverted.""" |
| 2961 | if self._sign: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2962 | return _dec_from_triple(0, self._int, self._exp, self._is_special) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2963 | else: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2964 | return _dec_from_triple(1, self._int, self._exp, self._is_special) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2965 | |
| 2966 | def copy_sign(self, other): |
| 2967 | """Returns self with the sign of other.""" |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 2968 | other = _convert_other(other, raiseit=True) |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 2969 | return _dec_from_triple(other._sign, self._int, |
| 2970 | self._exp, self._is_special) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2971 | |
| 2972 | def exp(self, context=None): |
| 2973 | """Returns e ** self.""" |
| 2974 | |
| 2975 | if context is None: |
| 2976 | context = getcontext() |
| 2977 | |
| 2978 | # exp(NaN) = NaN |
| 2979 | ans = self._check_nans(context=context) |
| 2980 | if ans: |
| 2981 | return ans |
| 2982 | |
| 2983 | # exp(-Infinity) = 0 |
| 2984 | if self._isinfinity() == -1: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2985 | return _Zero |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2986 | |
| 2987 | # exp(0) = 1 |
| 2988 | if not self: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 2989 | return _One |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 2990 | |
| 2991 | # exp(Infinity) = Infinity |
| 2992 | if self._isinfinity() == 1: |
| 2993 | return Decimal(self) |
| 2994 | |
| 2995 | # the result is now guaranteed to be inexact (the true |
| 2996 | # mathematical result is transcendental). There's no need to |
| 2997 | # raise Rounded and Inexact here---they'll always be raised as |
| 2998 | # a result of the call to _fix. |
| 2999 | p = context.prec |
| 3000 | adj = self.adjusted() |
| 3001 | |
| 3002 | # we only need to do any computation for quite a small range |
| 3003 | # of adjusted exponents---for example, -29 <= adj <= 10 for |
| 3004 | # the default context. For smaller exponent the result is |
| 3005 | # indistinguishable from 1 at the given precision, while for |
| 3006 | # larger exponent the result either overflows or underflows. |
| 3007 | if self._sign == 0 and adj > len(str((context.Emax+1)*3)): |
| 3008 | # overflow |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3009 | ans = _dec_from_triple(0, '1', context.Emax+1) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3010 | elif self._sign == 1 and adj > len(str((-context.Etiny()+1)*3)): |
| 3011 | # underflow to 0 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3012 | ans = _dec_from_triple(0, '1', context.Etiny()-1) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3013 | elif self._sign == 0 and adj < -p: |
| 3014 | # p+1 digits; final round will raise correct flags |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3015 | ans = _dec_from_triple(0, '1' + '0'*(p-1) + '1', -p) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3016 | elif self._sign == 1 and adj < -p-1: |
| 3017 | # p+1 digits; final round will raise correct flags |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3018 | ans = _dec_from_triple(0, '9'*(p+1), -p-1) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3019 | # general case |
| 3020 | else: |
| 3021 | op = _WorkRep(self) |
| 3022 | c, e = op.int, op.exp |
| 3023 | if op.sign == 1: |
| 3024 | c = -c |
| 3025 | |
| 3026 | # compute correctly rounded result: increase precision by |
| 3027 | # 3 digits at a time until we get an unambiguously |
| 3028 | # roundable result |
| 3029 | extra = 3 |
| 3030 | while True: |
| 3031 | coeff, exp = _dexp(c, e, p+extra) |
| 3032 | if coeff % (5*10**(len(str(coeff))-p-1)): |
| 3033 | break |
| 3034 | extra += 3 |
| 3035 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3036 | ans = _dec_from_triple(0, str(coeff), exp) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3037 | |
| 3038 | # at this stage, ans should round correctly with *any* |
| 3039 | # rounding mode, not just with ROUND_HALF_EVEN |
| 3040 | context = context._shallow_copy() |
| 3041 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
| 3042 | ans = ans._fix(context) |
| 3043 | context.rounding = rounding |
| 3044 | |
| 3045 | return ans |
| 3046 | |
| 3047 | def is_canonical(self): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3048 | """Return True if self is canonical; otherwise return False. |
| 3049 | |
| 3050 | Currently, the encoding of a Decimal instance is always |
| 3051 | canonical, so this method returns True for any Decimal. |
| 3052 | """ |
| 3053 | return True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3054 | |
| 3055 | def is_finite(self): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3056 | """Return True if self is finite; otherwise return False. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3057 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3058 | A Decimal instance is considered finite if it is neither |
| 3059 | infinite nor a NaN. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3060 | """ |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3061 | return not self._is_special |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3062 | |
| 3063 | def is_infinite(self): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3064 | """Return True if self is infinite; otherwise return False.""" |
| 3065 | return self._exp == 'F' |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3066 | |
| 3067 | def is_nan(self): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3068 | """Return True if self is a qNaN or sNaN; otherwise return False.""" |
| 3069 | return self._exp in ('n', 'N') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3070 | |
| 3071 | def is_normal(self, context=None): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3072 | """Return True if self is a normal number; otherwise return False.""" |
| 3073 | if self._is_special or not self: |
| 3074 | return False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3075 | if context is None: |
| 3076 | context = getcontext() |
Mark Dickinson | 06bb674 | 2009-10-20 13:38:04 +0000 | [diff] [blame] | 3077 | return context.Emin <= self.adjusted() |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3078 | |
| 3079 | def is_qnan(self): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3080 | """Return True if self is a quiet NaN; otherwise return False.""" |
| 3081 | return self._exp == 'n' |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3082 | |
| 3083 | def is_signed(self): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3084 | """Return True if self is negative; otherwise return False.""" |
| 3085 | return self._sign == 1 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3086 | |
| 3087 | def is_snan(self): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3088 | """Return True if self is a signaling NaN; otherwise return False.""" |
| 3089 | return self._exp == 'N' |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3090 | |
| 3091 | def is_subnormal(self, context=None): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3092 | """Return True if self is subnormal; otherwise return False.""" |
| 3093 | if self._is_special or not self: |
| 3094 | return False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3095 | if context is None: |
| 3096 | context = getcontext() |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3097 | return self.adjusted() < context.Emin |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3098 | |
| 3099 | def is_zero(self): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 3100 | """Return True if self is a zero; otherwise return False.""" |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3101 | return not self._is_special and self._int == '0' |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3102 | |
| 3103 | def _ln_exp_bound(self): |
| 3104 | """Compute a lower bound for the adjusted exponent of self.ln(). |
| 3105 | In other words, compute r such that self.ln() >= 10**r. Assumes |
| 3106 | that self is finite and positive and that self != 1. |
| 3107 | """ |
| 3108 | |
| 3109 | # for 0.1 <= x <= 10 we use the inequalities 1-1/x <= ln(x) <= x-1 |
| 3110 | adj = self._exp + len(self._int) - 1 |
| 3111 | if adj >= 1: |
| 3112 | # argument >= 10; we use 23/10 = 2.3 as a lower bound for ln(10) |
| 3113 | return len(str(adj*23//10)) - 1 |
| 3114 | if adj <= -2: |
| 3115 | # argument <= 0.1 |
| 3116 | return len(str((-1-adj)*23//10)) - 1 |
| 3117 | op = _WorkRep(self) |
| 3118 | c, e = op.int, op.exp |
| 3119 | if adj == 0: |
| 3120 | # 1 < self < 10 |
| 3121 | num = str(c-10**-e) |
| 3122 | den = str(c) |
| 3123 | return len(num) - len(den) - (num < den) |
| 3124 | # adj == -1, 0.1 <= self < 1 |
| 3125 | return e + len(str(10**-e - c)) - 1 |
| 3126 | |
| 3127 | |
| 3128 | def ln(self, context=None): |
| 3129 | """Returns the natural (base e) logarithm of self.""" |
| 3130 | |
| 3131 | if context is None: |
| 3132 | context = getcontext() |
| 3133 | |
| 3134 | # ln(NaN) = NaN |
| 3135 | ans = self._check_nans(context=context) |
| 3136 | if ans: |
| 3137 | return ans |
| 3138 | |
| 3139 | # ln(0.0) == -Infinity |
| 3140 | if not self: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 3141 | return _NegativeInfinity |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3142 | |
| 3143 | # ln(Infinity) = Infinity |
| 3144 | if self._isinfinity() == 1: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 3145 | return _Infinity |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3146 | |
| 3147 | # ln(1.0) == 0.0 |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 3148 | if self == _One: |
| 3149 | return _Zero |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3150 | |
| 3151 | # ln(negative) raises InvalidOperation |
| 3152 | if self._sign == 1: |
| 3153 | return context._raise_error(InvalidOperation, |
| 3154 | 'ln of a negative value') |
| 3155 | |
| 3156 | # result is irrational, so necessarily inexact |
| 3157 | op = _WorkRep(self) |
| 3158 | c, e = op.int, op.exp |
| 3159 | p = context.prec |
| 3160 | |
| 3161 | # correctly rounded result: repeatedly increase precision by 3 |
| 3162 | # until we get an unambiguously roundable result |
| 3163 | places = p - self._ln_exp_bound() + 2 # at least p+3 places |
| 3164 | while True: |
| 3165 | coeff = _dlog(c, e, places) |
| 3166 | # assert len(str(abs(coeff)))-p >= 1 |
| 3167 | if coeff % (5*10**(len(str(abs(coeff)))-p-1)): |
| 3168 | break |
| 3169 | places += 3 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3170 | ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3171 | |
| 3172 | context = context._shallow_copy() |
| 3173 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
| 3174 | ans = ans._fix(context) |
| 3175 | context.rounding = rounding |
| 3176 | return ans |
| 3177 | |
| 3178 | def _log10_exp_bound(self): |
| 3179 | """Compute a lower bound for the adjusted exponent of self.log10(). |
| 3180 | In other words, find r such that self.log10() >= 10**r. |
| 3181 | Assumes that self is finite and positive and that self != 1. |
| 3182 | """ |
| 3183 | |
| 3184 | # For x >= 10 or x < 0.1 we only need a bound on the integer |
| 3185 | # part of log10(self), and this comes directly from the |
| 3186 | # exponent of x. For 0.1 <= x <= 10 we use the inequalities |
| 3187 | # 1-1/x <= log(x) <= x-1. If x > 1 we have |log10(x)| > |
| 3188 | # (1-1/x)/2.31 > 0. If x < 1 then |log10(x)| > (1-x)/2.31 > 0 |
| 3189 | |
| 3190 | adj = self._exp + len(self._int) - 1 |
| 3191 | if adj >= 1: |
| 3192 | # self >= 10 |
| 3193 | return len(str(adj))-1 |
| 3194 | if adj <= -2: |
| 3195 | # self < 0.1 |
| 3196 | return len(str(-1-adj))-1 |
| 3197 | op = _WorkRep(self) |
| 3198 | c, e = op.int, op.exp |
| 3199 | if adj == 0: |
| 3200 | # 1 < self < 10 |
| 3201 | num = str(c-10**-e) |
| 3202 | den = str(231*c) |
| 3203 | return len(num) - len(den) - (num < den) + 2 |
| 3204 | # adj == -1, 0.1 <= self < 1 |
| 3205 | num = str(10**-e-c) |
| 3206 | return len(num) + e - (num < "231") - 1 |
| 3207 | |
| 3208 | def log10(self, context=None): |
| 3209 | """Returns the base 10 logarithm of self.""" |
| 3210 | |
| 3211 | if context is None: |
| 3212 | context = getcontext() |
| 3213 | |
| 3214 | # log10(NaN) = NaN |
| 3215 | ans = self._check_nans(context=context) |
| 3216 | if ans: |
| 3217 | return ans |
| 3218 | |
| 3219 | # log10(0.0) == -Infinity |
| 3220 | if not self: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 3221 | return _NegativeInfinity |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3222 | |
| 3223 | # log10(Infinity) = Infinity |
| 3224 | if self._isinfinity() == 1: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 3225 | return _Infinity |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3226 | |
| 3227 | # log10(negative or -Infinity) raises InvalidOperation |
| 3228 | if self._sign == 1: |
| 3229 | return context._raise_error(InvalidOperation, |
| 3230 | 'log10 of a negative value') |
| 3231 | |
| 3232 | # log10(10**n) = n |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3233 | if self._int[0] == '1' and self._int[1:] == '0'*(len(self._int) - 1): |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3234 | # answer may need rounding |
| 3235 | ans = Decimal(self._exp + len(self._int) - 1) |
| 3236 | else: |
| 3237 | # result is irrational, so necessarily inexact |
| 3238 | op = _WorkRep(self) |
| 3239 | c, e = op.int, op.exp |
| 3240 | p = context.prec |
| 3241 | |
| 3242 | # correctly rounded result: repeatedly increase precision |
| 3243 | # until result is unambiguously roundable |
| 3244 | places = p-self._log10_exp_bound()+2 |
| 3245 | while True: |
| 3246 | coeff = _dlog10(c, e, places) |
| 3247 | # assert len(str(abs(coeff)))-p >= 1 |
| 3248 | if coeff % (5*10**(len(str(abs(coeff)))-p-1)): |
| 3249 | break |
| 3250 | places += 3 |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3251 | ans = _dec_from_triple(int(coeff<0), str(abs(coeff)), -places) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3252 | |
| 3253 | context = context._shallow_copy() |
| 3254 | rounding = context._set_rounding(ROUND_HALF_EVEN) |
| 3255 | ans = ans._fix(context) |
| 3256 | context.rounding = rounding |
| 3257 | return ans |
| 3258 | |
| 3259 | def logb(self, context=None): |
| 3260 | """ Returns the exponent of the magnitude of self's MSD. |
| 3261 | |
| 3262 | The result is the integer which is the exponent of the magnitude |
| 3263 | of the most significant digit of self (as though it were truncated |
| 3264 | to a single digit while maintaining the value of that digit and |
| 3265 | without limiting the resulting exponent). |
| 3266 | """ |
| 3267 | # logb(NaN) = NaN |
| 3268 | ans = self._check_nans(context=context) |
| 3269 | if ans: |
| 3270 | return ans |
| 3271 | |
| 3272 | if context is None: |
| 3273 | context = getcontext() |
| 3274 | |
| 3275 | # logb(+/-Inf) = +Inf |
| 3276 | if self._isinfinity(): |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 3277 | return _Infinity |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3278 | |
| 3279 | # logb(0) = -Inf, DivisionByZero |
| 3280 | if not self: |
| 3281 | return context._raise_error(DivisionByZero, 'logb(0)', 1) |
| 3282 | |
| 3283 | # otherwise, simply return the adjusted exponent of self, as a |
| 3284 | # Decimal. Note that no attempt is made to fit the result |
| 3285 | # into the current context. |
Mark Dickinson | 56df887 | 2009-10-07 19:23:50 +0000 | [diff] [blame] | 3286 | ans = Decimal(self.adjusted()) |
| 3287 | return ans._fix(context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3288 | |
| 3289 | def _islogical(self): |
| 3290 | """Return True if self is a logical operand. |
| 3291 | |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 3292 | For being logical, it must be a finite number with a sign of 0, |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3293 | an exponent of 0, and a coefficient whose digits must all be |
| 3294 | either 0 or 1. |
| 3295 | """ |
| 3296 | if self._sign != 0 or self._exp != 0: |
| 3297 | return False |
| 3298 | for dig in self._int: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3299 | if dig not in '01': |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3300 | return False |
| 3301 | return True |
| 3302 | |
| 3303 | def _fill_logical(self, context, opa, opb): |
| 3304 | dif = context.prec - len(opa) |
| 3305 | if dif > 0: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3306 | opa = '0'*dif + opa |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3307 | elif dif < 0: |
| 3308 | opa = opa[-context.prec:] |
| 3309 | dif = context.prec - len(opb) |
| 3310 | if dif > 0: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3311 | opb = '0'*dif + opb |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3312 | elif dif < 0: |
| 3313 | opb = opb[-context.prec:] |
| 3314 | return opa, opb |
| 3315 | |
| 3316 | def logical_and(self, other, context=None): |
| 3317 | """Applies an 'and' operation between self and other's digits.""" |
| 3318 | if context is None: |
| 3319 | context = getcontext() |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3320 | |
| 3321 | other = _convert_other(other, raiseit=True) |
| 3322 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3323 | if not self._islogical() or not other._islogical(): |
| 3324 | return context._raise_error(InvalidOperation) |
| 3325 | |
| 3326 | # fill to context.prec |
| 3327 | (opa, opb) = self._fill_logical(context, self._int, other._int) |
| 3328 | |
| 3329 | # make the operation, and clean starting zeroes |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3330 | result = "".join([str(int(a)&int(b)) for a,b in zip(opa,opb)]) |
| 3331 | return _dec_from_triple(0, result.lstrip('0') or '0', 0) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3332 | |
| 3333 | def logical_invert(self, context=None): |
| 3334 | """Invert all its digits.""" |
| 3335 | if context is None: |
| 3336 | context = getcontext() |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3337 | return self.logical_xor(_dec_from_triple(0,'1'*context.prec,0), |
| 3338 | context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3339 | |
| 3340 | def logical_or(self, other, context=None): |
| 3341 | """Applies an 'or' operation between self and other's digits.""" |
| 3342 | if context is None: |
| 3343 | context = getcontext() |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3344 | |
| 3345 | other = _convert_other(other, raiseit=True) |
| 3346 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3347 | if not self._islogical() or not other._islogical(): |
| 3348 | return context._raise_error(InvalidOperation) |
| 3349 | |
| 3350 | # fill to context.prec |
| 3351 | (opa, opb) = self._fill_logical(context, self._int, other._int) |
| 3352 | |
| 3353 | # make the operation, and clean starting zeroes |
Mark Dickinson | 315a20a | 2009-01-04 21:34:18 +0000 | [diff] [blame] | 3354 | result = "".join([str(int(a)|int(b)) for a,b in zip(opa,opb)]) |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3355 | return _dec_from_triple(0, result.lstrip('0') or '0', 0) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3356 | |
| 3357 | def logical_xor(self, other, context=None): |
| 3358 | """Applies an 'xor' operation between self and other's digits.""" |
| 3359 | if context is None: |
| 3360 | context = getcontext() |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3361 | |
| 3362 | other = _convert_other(other, raiseit=True) |
| 3363 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3364 | if not self._islogical() or not other._islogical(): |
| 3365 | return context._raise_error(InvalidOperation) |
| 3366 | |
| 3367 | # fill to context.prec |
| 3368 | (opa, opb) = self._fill_logical(context, self._int, other._int) |
| 3369 | |
| 3370 | # make the operation, and clean starting zeroes |
Mark Dickinson | 315a20a | 2009-01-04 21:34:18 +0000 | [diff] [blame] | 3371 | result = "".join([str(int(a)^int(b)) for a,b in zip(opa,opb)]) |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3372 | return _dec_from_triple(0, result.lstrip('0') or '0', 0) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3373 | |
| 3374 | def max_mag(self, other, context=None): |
| 3375 | """Compares the values numerically with their sign ignored.""" |
| 3376 | other = _convert_other(other, raiseit=True) |
| 3377 | |
| 3378 | if context is None: |
| 3379 | context = getcontext() |
| 3380 | |
| 3381 | if self._is_special or other._is_special: |
| 3382 | # If one operand is a quiet NaN and the other is number, then the |
| 3383 | # number is always returned |
| 3384 | sn = self._isnan() |
| 3385 | on = other._isnan() |
| 3386 | if sn or on: |
Facundo Batista | 708d581 | 2008-12-11 04:20:07 +0000 | [diff] [blame] | 3387 | if on == 1 and sn == 0: |
| 3388 | return self._fix(context) |
| 3389 | if sn == 1 and on == 0: |
| 3390 | return other._fix(context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3391 | return self._check_nans(other, context) |
| 3392 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 3393 | c = self.copy_abs()._cmp(other.copy_abs()) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3394 | if c == 0: |
| 3395 | c = self.compare_total(other) |
| 3396 | |
| 3397 | if c == -1: |
| 3398 | ans = other |
| 3399 | else: |
| 3400 | ans = self |
| 3401 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 3402 | return ans._fix(context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3403 | |
| 3404 | def min_mag(self, other, context=None): |
| 3405 | """Compares the values numerically with their sign ignored.""" |
| 3406 | other = _convert_other(other, raiseit=True) |
| 3407 | |
| 3408 | if context is None: |
| 3409 | context = getcontext() |
| 3410 | |
| 3411 | if self._is_special or other._is_special: |
| 3412 | # If one operand is a quiet NaN and the other is number, then the |
| 3413 | # number is always returned |
| 3414 | sn = self._isnan() |
| 3415 | on = other._isnan() |
| 3416 | if sn or on: |
Facundo Batista | 708d581 | 2008-12-11 04:20:07 +0000 | [diff] [blame] | 3417 | if on == 1 and sn == 0: |
| 3418 | return self._fix(context) |
| 3419 | if sn == 1 and on == 0: |
| 3420 | return other._fix(context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3421 | return self._check_nans(other, context) |
| 3422 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 3423 | c = self.copy_abs()._cmp(other.copy_abs()) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3424 | if c == 0: |
| 3425 | c = self.compare_total(other) |
| 3426 | |
| 3427 | if c == -1: |
| 3428 | ans = self |
| 3429 | else: |
| 3430 | ans = other |
| 3431 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 3432 | return ans._fix(context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3433 | |
| 3434 | def next_minus(self, context=None): |
| 3435 | """Returns the largest representable number smaller than itself.""" |
| 3436 | if context is None: |
| 3437 | context = getcontext() |
| 3438 | |
| 3439 | ans = self._check_nans(context=context) |
| 3440 | if ans: |
| 3441 | return ans |
| 3442 | |
| 3443 | if self._isinfinity() == -1: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 3444 | return _NegativeInfinity |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3445 | if self._isinfinity() == 1: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3446 | return _dec_from_triple(0, '9'*context.prec, context.Etop()) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3447 | |
| 3448 | context = context.copy() |
| 3449 | context._set_rounding(ROUND_FLOOR) |
| 3450 | context._ignore_all_flags() |
| 3451 | new_self = self._fix(context) |
| 3452 | if new_self != self: |
| 3453 | return new_self |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3454 | return self.__sub__(_dec_from_triple(0, '1', context.Etiny()-1), |
| 3455 | context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3456 | |
| 3457 | def next_plus(self, context=None): |
| 3458 | """Returns the smallest representable number larger than itself.""" |
| 3459 | if context is None: |
| 3460 | context = getcontext() |
| 3461 | |
| 3462 | ans = self._check_nans(context=context) |
| 3463 | if ans: |
| 3464 | return ans |
| 3465 | |
| 3466 | if self._isinfinity() == 1: |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 3467 | return _Infinity |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3468 | if self._isinfinity() == -1: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3469 | return _dec_from_triple(1, '9'*context.prec, context.Etop()) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3470 | |
| 3471 | context = context.copy() |
| 3472 | context._set_rounding(ROUND_CEILING) |
| 3473 | context._ignore_all_flags() |
| 3474 | new_self = self._fix(context) |
| 3475 | if new_self != self: |
| 3476 | return new_self |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3477 | return self.__add__(_dec_from_triple(0, '1', context.Etiny()-1), |
| 3478 | context) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3479 | |
| 3480 | def next_toward(self, other, context=None): |
| 3481 | """Returns the number closest to self, in the direction towards other. |
| 3482 | |
| 3483 | The result is the closest representable number to self |
| 3484 | (excluding self) that is in the direction towards other, |
| 3485 | unless both have the same value. If the two operands are |
| 3486 | numerically equal, then the result is a copy of self with the |
| 3487 | sign set to be the same as the sign of other. |
| 3488 | """ |
| 3489 | other = _convert_other(other, raiseit=True) |
| 3490 | |
| 3491 | if context is None: |
| 3492 | context = getcontext() |
| 3493 | |
| 3494 | ans = self._check_nans(other, context) |
| 3495 | if ans: |
| 3496 | return ans |
| 3497 | |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 3498 | comparison = self._cmp(other) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3499 | if comparison == 0: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3500 | return self.copy_sign(other) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3501 | |
| 3502 | if comparison == -1: |
| 3503 | ans = self.next_plus(context) |
| 3504 | else: # comparison == 1 |
| 3505 | ans = self.next_minus(context) |
| 3506 | |
| 3507 | # decide which flags to raise using value of ans |
| 3508 | if ans._isinfinity(): |
| 3509 | context._raise_error(Overflow, |
| 3510 | 'Infinite result from next_toward', |
| 3511 | ans._sign) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3512 | context._raise_error(Inexact) |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 3513 | context._raise_error(Rounded) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3514 | elif ans.adjusted() < context.Emin: |
| 3515 | context._raise_error(Underflow) |
| 3516 | context._raise_error(Subnormal) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3517 | context._raise_error(Inexact) |
Mark Dickinson | c69160e | 2010-05-04 14:35:33 +0000 | [diff] [blame] | 3518 | context._raise_error(Rounded) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3519 | # if precision == 1 then we don't raise Clamped for a |
| 3520 | # result 0E-Etiny. |
| 3521 | if not ans: |
| 3522 | context._raise_error(Clamped) |
| 3523 | |
| 3524 | return ans |
| 3525 | |
| 3526 | def number_class(self, context=None): |
| 3527 | """Returns an indication of the class of self. |
| 3528 | |
| 3529 | The class is one of the following strings: |
Christian Heimes | 5fb7c2a | 2007-12-24 08:52:31 +0000 | [diff] [blame] | 3530 | sNaN |
| 3531 | NaN |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3532 | -Infinity |
| 3533 | -Normal |
| 3534 | -Subnormal |
| 3535 | -Zero |
| 3536 | +Zero |
| 3537 | +Subnormal |
| 3538 | +Normal |
| 3539 | +Infinity |
| 3540 | """ |
| 3541 | if self.is_snan(): |
| 3542 | return "sNaN" |
| 3543 | if self.is_qnan(): |
| 3544 | return "NaN" |
| 3545 | inf = self._isinfinity() |
| 3546 | if inf == 1: |
| 3547 | return "+Infinity" |
| 3548 | if inf == -1: |
| 3549 | return "-Infinity" |
| 3550 | if self.is_zero(): |
| 3551 | if self._sign: |
| 3552 | return "-Zero" |
| 3553 | else: |
| 3554 | return "+Zero" |
| 3555 | if context is None: |
| 3556 | context = getcontext() |
| 3557 | if self.is_subnormal(context=context): |
| 3558 | if self._sign: |
| 3559 | return "-Subnormal" |
| 3560 | else: |
| 3561 | return "+Subnormal" |
| 3562 | # just a normal, regular, boring number, :) |
| 3563 | if self._sign: |
| 3564 | return "-Normal" |
| 3565 | else: |
| 3566 | return "+Normal" |
| 3567 | |
| 3568 | def radix(self): |
| 3569 | """Just returns 10, as this is Decimal, :)""" |
| 3570 | return Decimal(10) |
| 3571 | |
| 3572 | def rotate(self, other, context=None): |
| 3573 | """Returns a rotated copy of self, value-of-other times.""" |
| 3574 | if context is None: |
| 3575 | context = getcontext() |
| 3576 | |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3577 | other = _convert_other(other, raiseit=True) |
| 3578 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3579 | ans = self._check_nans(other, context) |
| 3580 | if ans: |
| 3581 | return ans |
| 3582 | |
| 3583 | if other._exp != 0: |
| 3584 | return context._raise_error(InvalidOperation) |
| 3585 | if not (-context.prec <= int(other) <= context.prec): |
| 3586 | return context._raise_error(InvalidOperation) |
| 3587 | |
| 3588 | if self._isinfinity(): |
| 3589 | return Decimal(self) |
| 3590 | |
| 3591 | # get values, pad if necessary |
| 3592 | torot = int(other) |
| 3593 | rotdig = self._int |
| 3594 | topad = context.prec - len(rotdig) |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3595 | if topad > 0: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3596 | rotdig = '0'*topad + rotdig |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3597 | elif topad < 0: |
| 3598 | rotdig = rotdig[-topad:] |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3599 | |
| 3600 | # let's rotate! |
| 3601 | rotated = rotdig[torot:] + rotdig[:torot] |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3602 | return _dec_from_triple(self._sign, |
| 3603 | rotated.lstrip('0') or '0', self._exp) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3604 | |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3605 | def scaleb(self, other, context=None): |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3606 | """Returns self operand after adding the second value to its exp.""" |
| 3607 | if context is None: |
| 3608 | context = getcontext() |
| 3609 | |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3610 | other = _convert_other(other, raiseit=True) |
| 3611 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3612 | ans = self._check_nans(other, context) |
| 3613 | if ans: |
| 3614 | return ans |
| 3615 | |
| 3616 | if other._exp != 0: |
| 3617 | return context._raise_error(InvalidOperation) |
| 3618 | liminf = -2 * (context.Emax + context.prec) |
| 3619 | limsup = 2 * (context.Emax + context.prec) |
| 3620 | if not (liminf <= int(other) <= limsup): |
| 3621 | return context._raise_error(InvalidOperation) |
| 3622 | |
| 3623 | if self._isinfinity(): |
| 3624 | return Decimal(self) |
| 3625 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3626 | d = _dec_from_triple(self._sign, self._int, self._exp + int(other)) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3627 | d = d._fix(context) |
| 3628 | return d |
| 3629 | |
| 3630 | def shift(self, other, context=None): |
| 3631 | """Returns a shifted copy of self, value-of-other times.""" |
| 3632 | if context is None: |
| 3633 | context = getcontext() |
| 3634 | |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3635 | other = _convert_other(other, raiseit=True) |
| 3636 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3637 | ans = self._check_nans(other, context) |
| 3638 | if ans: |
| 3639 | return ans |
| 3640 | |
| 3641 | if other._exp != 0: |
| 3642 | return context._raise_error(InvalidOperation) |
| 3643 | if not (-context.prec <= int(other) <= context.prec): |
| 3644 | return context._raise_error(InvalidOperation) |
| 3645 | |
| 3646 | if self._isinfinity(): |
| 3647 | return Decimal(self) |
| 3648 | |
| 3649 | # get values, pad if necessary |
| 3650 | torot = int(other) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3651 | rotdig = self._int |
| 3652 | topad = context.prec - len(rotdig) |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3653 | if topad > 0: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3654 | rotdig = '0'*topad + rotdig |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3655 | elif topad < 0: |
| 3656 | rotdig = rotdig[-topad:] |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3657 | |
| 3658 | # let's shift! |
| 3659 | if torot < 0: |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3660 | shifted = rotdig[:torot] |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3661 | else: |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3662 | shifted = rotdig + '0'*torot |
| 3663 | shifted = shifted[-context.prec:] |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3664 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3665 | return _dec_from_triple(self._sign, |
Mark Dickinson | a2d1fe0 | 2009-10-29 12:23:02 +0000 | [diff] [blame] | 3666 | shifted.lstrip('0') or '0', self._exp) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3667 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3668 | # Support for pickling, copy, and deepcopy |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3669 | def __reduce__(self): |
| 3670 | return (self.__class__, (str(self),)) |
| 3671 | |
| 3672 | def __copy__(self): |
Benjamin Peterson | d69fe2a | 2010-02-03 02:59:43 +0000 | [diff] [blame] | 3673 | if type(self) is Decimal: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3674 | return self # I'm immutable; therefore I am my own clone |
| 3675 | return self.__class__(str(self)) |
| 3676 | |
| 3677 | def __deepcopy__(self, memo): |
Benjamin Peterson | d69fe2a | 2010-02-03 02:59:43 +0000 | [diff] [blame] | 3678 | if type(self) is Decimal: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3679 | return self # My components are also immutable |
| 3680 | return self.__class__(str(self)) |
| 3681 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3682 | # PEP 3101 support. the _localeconv keyword argument should be |
| 3683 | # considered private: it's provided for ease of testing only. |
| 3684 | def __format__(self, specifier, context=None, _localeconv=None): |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3685 | """Format a Decimal instance according to the given specifier. |
| 3686 | |
| 3687 | The specifier should be a standard format specifier, with the |
| 3688 | form described in PEP 3101. Formatting types 'e', 'E', 'f', |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3689 | 'F', 'g', 'G', 'n' and '%' are supported. If the formatting |
| 3690 | type is omitted it defaults to 'g' or 'G', depending on the |
| 3691 | value of context.capitals. |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3692 | """ |
| 3693 | |
| 3694 | # Note: PEP 3101 says that if the type is not present then |
| 3695 | # there should be at least one digit after the decimal point. |
| 3696 | # We take the liberty of ignoring this requirement for |
| 3697 | # Decimal---it's presumably there to make sure that |
| 3698 | # format(float, '') behaves similarly to str(float). |
| 3699 | if context is None: |
| 3700 | context = getcontext() |
| 3701 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3702 | spec = _parse_format_specifier(specifier, _localeconv=_localeconv) |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3703 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3704 | # special values don't care about the type or precision |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3705 | if self._is_special: |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3706 | sign = _format_sign(self._sign, spec) |
| 3707 | body = str(self.copy_abs()) |
| 3708 | return _format_align(sign, body, spec) |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3709 | |
| 3710 | # a type of None defaults to 'g' or 'G', depending on context |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3711 | if spec['type'] is None: |
| 3712 | spec['type'] = ['g', 'G'][context.capitals] |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3713 | |
| 3714 | # if type is '%', adjust exponent of self accordingly |
| 3715 | if spec['type'] == '%': |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3716 | self = _dec_from_triple(self._sign, self._int, self._exp+2) |
| 3717 | |
| 3718 | # round if necessary, taking rounding mode from the context |
| 3719 | rounding = context.rounding |
| 3720 | precision = spec['precision'] |
| 3721 | if precision is not None: |
| 3722 | if spec['type'] in 'eE': |
| 3723 | self = self._round(precision+1, rounding) |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3724 | elif spec['type'] in 'fF%': |
| 3725 | self = self._rescale(-precision, rounding) |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3726 | elif spec['type'] in 'gG' and len(self._int) > precision: |
| 3727 | self = self._round(precision, rounding) |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3728 | # special case: zeros with a positive exponent can't be |
| 3729 | # represented in fixed point; rescale them to 0e0. |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3730 | if not self and self._exp > 0 and spec['type'] in 'fF%': |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3731 | self = self._rescale(0, rounding) |
| 3732 | |
| 3733 | # figure out placement of the decimal point |
| 3734 | leftdigits = self._exp + len(self._int) |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3735 | if spec['type'] in 'eE': |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3736 | if not self and precision is not None: |
| 3737 | dotplace = 1 - precision |
| 3738 | else: |
| 3739 | dotplace = 1 |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3740 | elif spec['type'] in 'fF%': |
| 3741 | dotplace = leftdigits |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3742 | elif spec['type'] in 'gG': |
| 3743 | if self._exp <= 0 and leftdigits > -6: |
| 3744 | dotplace = leftdigits |
| 3745 | else: |
| 3746 | dotplace = 1 |
| 3747 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3748 | # find digits before and after decimal point, and get exponent |
| 3749 | if dotplace < 0: |
| 3750 | intpart = '0' |
| 3751 | fracpart = '0'*(-dotplace) + self._int |
| 3752 | elif dotplace > len(self._int): |
| 3753 | intpart = self._int + '0'*(dotplace-len(self._int)) |
| 3754 | fracpart = '' |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3755 | else: |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3756 | intpart = self._int[:dotplace] or '0' |
| 3757 | fracpart = self._int[dotplace:] |
| 3758 | exp = leftdigits-dotplace |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3759 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 3760 | # done with the decimal-specific stuff; hand over the rest |
| 3761 | # of the formatting to the _format_number function |
| 3762 | return _format_number(self._sign, intpart, fracpart, exp, spec) |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 3763 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 3764 | def _dec_from_triple(sign, coefficient, exponent, special=False): |
| 3765 | """Create a decimal instance directly, without any validation, |
| 3766 | normalization (e.g. removal of leading zeros) or argument |
| 3767 | conversion. |
| 3768 | |
| 3769 | This function is for *internal use only*. |
| 3770 | """ |
| 3771 | |
| 3772 | self = object.__new__(Decimal) |
| 3773 | self._sign = sign |
| 3774 | self._int = coefficient |
| 3775 | self._exp = exponent |
| 3776 | self._is_special = special |
| 3777 | |
| 3778 | return self |
| 3779 | |
Raymond Hettinger | 82417ca | 2009-02-03 03:54:28 +0000 | [diff] [blame] | 3780 | # Register Decimal as a kind of Number (an abstract base class). |
| 3781 | # However, do not register it as Real (because Decimals are not |
| 3782 | # interoperable with floats). |
| 3783 | _numbers.Number.register(Decimal) |
| 3784 | |
| 3785 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3786 | ##### Context class ####################################################### |
Raymond Hettinger | d9c0a7a | 2004-07-03 10:02:28 +0000 | [diff] [blame] | 3787 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3788 | |
| 3789 | # get rounding method function: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3790 | rounding_functions = [name for name in Decimal.__dict__.keys() |
| 3791 | if name.startswith('_round_')] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3792 | for name in rounding_functions: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3793 | # 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] | 3794 | globalname = name[1:].upper() |
| 3795 | val = globals()[globalname] |
| 3796 | Decimal._pick_rounding_function[val] = name |
| 3797 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3798 | del name, val, globalname, rounding_functions |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3799 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 3800 | class _ContextManager(object): |
| 3801 | """Context manager class to support localcontext(). |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3802 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 3803 | Sets a copy of the supplied context in __enter__() and restores |
| 3804 | the previous decimal context in __exit__() |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3805 | """ |
| 3806 | def __init__(self, new_context): |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 3807 | self.new_context = new_context.copy() |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3808 | def __enter__(self): |
| 3809 | self.saved_context = getcontext() |
| 3810 | setcontext(self.new_context) |
| 3811 | return self.new_context |
| 3812 | def __exit__(self, t, v, tb): |
| 3813 | setcontext(self.saved_context) |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3814 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3815 | class Context(object): |
| 3816 | """Contains the context for a Decimal instance. |
| 3817 | |
| 3818 | Contains: |
| 3819 | prec - precision (for use in rounding, division, square roots..) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3820 | rounding - rounding type (how you round) |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3821 | traps - If traps[exception] = 1, then the exception is |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3822 | raised when it is caused. Otherwise, a value is |
| 3823 | substituted in. |
Raymond Hettinger | 86173da | 2008-02-01 20:38:12 +0000 | [diff] [blame] | 3824 | flags - When an exception is caused, flags[exception] is set. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3825 | (Whether or not the trap_enabler is set) |
| 3826 | Should be reset by user of Decimal instance. |
Raymond Hettinger | 0ea241e | 2004-07-04 13:53:24 +0000 | [diff] [blame] | 3827 | Emin - Minimum exponent |
| 3828 | Emax - Maximum exponent |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3829 | capitals - If 1, 1*10^1 is printed as 1E+1. |
| 3830 | If 0, printed as 1e1 |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 3831 | _clamp - If 1, change exponents if too high (Default 0) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3832 | """ |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3833 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3834 | def __init__(self, prec=None, rounding=None, |
Raymond Hettinger | abf8a56 | 2004-10-12 09:12:16 +0000 | [diff] [blame] | 3835 | traps=None, flags=None, |
Raymond Hettinger | 0ea241e | 2004-07-04 13:53:24 +0000 | [diff] [blame] | 3836 | Emin=None, Emax=None, |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 3837 | capitals=None, _clamp=0, |
Raymond Hettinger | abf8a56 | 2004-10-12 09:12:16 +0000 | [diff] [blame] | 3838 | _ignored_flags=None): |
| 3839 | if flags is None: |
| 3840 | flags = [] |
| 3841 | if _ignored_flags is None: |
| 3842 | _ignored_flags = [] |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3843 | if not isinstance(flags, dict): |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 3844 | flags = dict([(s, int(s in flags)) for s in _signals]) |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3845 | if traps is not None and not isinstance(traps, dict): |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 3846 | traps = dict([(s, int(s in traps)) for s in _signals]) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3847 | for name, val in locals().items(): |
| 3848 | if val is None: |
Raymond Hettinger | eb26084 | 2005-06-07 18:52:34 +0000 | [diff] [blame] | 3849 | setattr(self, name, _copy.copy(getattr(DefaultContext, name))) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3850 | else: |
| 3851 | setattr(self, name, val) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3852 | del self.self |
| 3853 | |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3854 | def __repr__(self): |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3855 | """Show the current context.""" |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3856 | s = [] |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3857 | s.append('Context(prec=%(prec)d, rounding=%(rounding)s, ' |
| 3858 | 'Emin=%(Emin)d, Emax=%(Emax)d, capitals=%(capitals)d' |
| 3859 | % vars(self)) |
| 3860 | names = [f.__name__ for f, v in self.flags.items() if v] |
| 3861 | s.append('flags=[' + ', '.join(names) + ']') |
| 3862 | names = [t.__name__ for t, v in self.traps.items() if v] |
| 3863 | s.append('traps=[' + ', '.join(names) + ']') |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3864 | return ', '.join(s) + ')' |
| 3865 | |
Raymond Hettinger | d9c0a7a | 2004-07-03 10:02:28 +0000 | [diff] [blame] | 3866 | def clear_flags(self): |
| 3867 | """Reset all flags to zero""" |
| 3868 | for flag in self.flags: |
Raymond Hettinger | b1b605e | 2004-07-04 01:55:39 +0000 | [diff] [blame] | 3869 | self.flags[flag] = 0 |
Raymond Hettinger | d9c0a7a | 2004-07-03 10:02:28 +0000 | [diff] [blame] | 3870 | |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 3871 | def _shallow_copy(self): |
| 3872 | """Returns a shallow copy from self.""" |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 3873 | nc = Context(self.prec, self.rounding, self.traps, |
| 3874 | self.flags, self.Emin, self.Emax, |
| 3875 | self.capitals, self._clamp, self._ignored_flags) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3876 | return nc |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 3877 | |
| 3878 | def copy(self): |
| 3879 | """Returns a deep copy from self.""" |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3880 | nc = Context(self.prec, self.rounding, self.traps.copy(), |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 3881 | self.flags.copy(), self.Emin, self.Emax, |
| 3882 | self.capitals, self._clamp, self._ignored_flags) |
Raymond Hettinger | 9fce44b | 2004-08-08 04:03:24 +0000 | [diff] [blame] | 3883 | return nc |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3884 | __copy__ = copy |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3885 | |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3886 | def _raise_error(self, condition, explanation = None, *args): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3887 | """Handles an error |
| 3888 | |
| 3889 | If the flag is in _ignored_flags, returns the default response. |
Raymond Hettinger | 86173da | 2008-02-01 20:38:12 +0000 | [diff] [blame] | 3890 | Otherwise, it sets the flag, then, if the corresponding |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3891 | trap_enabler is set, it reaises the exception. Otherwise, it returns |
Raymond Hettinger | 86173da | 2008-02-01 20:38:12 +0000 | [diff] [blame] | 3892 | the default value after setting the flag. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3893 | """ |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3894 | error = _condition_map.get(condition, condition) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3895 | if error in self._ignored_flags: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3896 | # Don't touch the flag |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3897 | return error().handle(self, *args) |
| 3898 | |
Raymond Hettinger | 86173da | 2008-02-01 20:38:12 +0000 | [diff] [blame] | 3899 | self.flags[error] = 1 |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 3900 | if not self.traps[error]: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3901 | # The errors define how to handle themselves. |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3902 | return condition().handle(self, *args) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3903 | |
| 3904 | # Errors should only be risked on copies of the context |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3905 | # self._ignored_flags = [] |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 3906 | raise error(explanation) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3907 | |
| 3908 | def _ignore_all_flags(self): |
| 3909 | """Ignore all flags, if they are raised""" |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 3910 | return self._ignore_flags(*_signals) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3911 | |
| 3912 | def _ignore_flags(self, *flags): |
| 3913 | """Ignore the flags, if they are raised""" |
| 3914 | # Do not mutate-- This way, copies of a context leave the original |
| 3915 | # alone. |
| 3916 | self._ignored_flags = (self._ignored_flags + list(flags)) |
| 3917 | return list(flags) |
| 3918 | |
| 3919 | def _regard_flags(self, *flags): |
| 3920 | """Stop ignoring the flags, if they are raised""" |
| 3921 | if flags and isinstance(flags[0], (tuple,list)): |
| 3922 | flags = flags[0] |
| 3923 | for flag in flags: |
| 3924 | self._ignored_flags.remove(flag) |
| 3925 | |
Nick Coghlan | d1abd25 | 2008-07-15 15:46:38 +0000 | [diff] [blame] | 3926 | # We inherit object.__hash__, so we must deny this explicitly |
| 3927 | __hash__ = None |
Raymond Hettinger | 5aa478b | 2004-07-09 10:02:53 +0000 | [diff] [blame] | 3928 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3929 | def Etiny(self): |
| 3930 | """Returns Etiny (= Emin - prec + 1)""" |
| 3931 | return int(self.Emin - self.prec + 1) |
| 3932 | |
| 3933 | def Etop(self): |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 3934 | """Returns maximum exponent (= Emax - prec + 1)""" |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3935 | return int(self.Emax - self.prec + 1) |
| 3936 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3937 | def _set_rounding(self, type): |
| 3938 | """Sets the rounding type. |
| 3939 | |
| 3940 | Sets the rounding type, and returns the current (previous) |
| 3941 | rounding type. Often used like: |
| 3942 | |
| 3943 | context = context.copy() |
| 3944 | # so you don't change the calling context |
| 3945 | # if an error occurs in the middle. |
| 3946 | rounding = context._set_rounding(ROUND_UP) |
| 3947 | val = self.__sub__(other, context=context) |
| 3948 | context._set_rounding(rounding) |
| 3949 | |
| 3950 | This will make it round up for that operation. |
| 3951 | """ |
| 3952 | rounding = self.rounding |
| 3953 | self.rounding= type |
| 3954 | return rounding |
| 3955 | |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 3956 | def create_decimal(self, num='0'): |
Christian Heimes | a62da1d | 2008-01-12 19:39:10 +0000 | [diff] [blame] | 3957 | """Creates a new Decimal instance but using self as context. |
| 3958 | |
| 3959 | This method implements the to-number operation of the |
| 3960 | IBM Decimal specification.""" |
| 3961 | |
| 3962 | if isinstance(num, str) and num != num.strip(): |
| 3963 | return self._raise_error(ConversionSyntax, |
| 3964 | "no trailing or leading whitespace is " |
| 3965 | "permitted.") |
| 3966 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3967 | d = Decimal(num, context=self) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 3968 | if d._isnan() and len(d._int) > self.prec - self._clamp: |
| 3969 | return self._raise_error(ConversionSyntax, |
| 3970 | "diagnostic info too long in NaN") |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 3971 | return d._fix(self) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3972 | |
Raymond Hettinger | 771ed76 | 2009-01-03 19:20:32 +0000 | [diff] [blame] | 3973 | def create_decimal_from_float(self, f): |
| 3974 | """Creates a new Decimal instance from a float but rounding using self |
| 3975 | as the context. |
| 3976 | |
| 3977 | >>> context = Context(prec=5, rounding=ROUND_DOWN) |
| 3978 | >>> context.create_decimal_from_float(3.1415926535897932) |
| 3979 | Decimal('3.1415') |
| 3980 | >>> context = Context(prec=5, traps=[Inexact]) |
| 3981 | >>> context.create_decimal_from_float(3.1415926535897932) |
| 3982 | Traceback (most recent call last): |
| 3983 | ... |
| 3984 | decimal.Inexact: None |
| 3985 | |
| 3986 | """ |
| 3987 | d = Decimal.from_float(f) # An exact conversion |
| 3988 | return d._fix(self) # Apply the context rounding |
| 3989 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3990 | # Methods |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3991 | def abs(self, a): |
| 3992 | """Returns the absolute value of the operand. |
| 3993 | |
| 3994 | If the operand is negative, the result is the same as using the minus |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3995 | operation on the operand. Otherwise, the result is the same as using |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 3996 | the plus operation on the operand. |
| 3997 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 3998 | >>> ExtendedContext.abs(Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 3999 | Decimal('2.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4000 | >>> ExtendedContext.abs(Decimal('-100')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4001 | Decimal('100') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4002 | >>> ExtendedContext.abs(Decimal('101.5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4003 | Decimal('101.5') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4004 | >>> ExtendedContext.abs(Decimal('-101.5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4005 | Decimal('101.5') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4006 | >>> ExtendedContext.abs(-1) |
| 4007 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4008 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4009 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4010 | return a.__abs__(context=self) |
| 4011 | |
| 4012 | def add(self, a, b): |
| 4013 | """Return the sum of the two operands. |
| 4014 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4015 | >>> ExtendedContext.add(Decimal('12'), Decimal('7.00')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4016 | Decimal('19.00') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4017 | >>> ExtendedContext.add(Decimal('1E+2'), Decimal('1.01E+4')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4018 | Decimal('1.02E+4') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4019 | >>> ExtendedContext.add(1, Decimal(2)) |
| 4020 | Decimal('3') |
| 4021 | >>> ExtendedContext.add(Decimal(8), 5) |
| 4022 | Decimal('13') |
| 4023 | >>> ExtendedContext.add(5, 5) |
| 4024 | Decimal('10') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4025 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4026 | a = _convert_other(a, raiseit=True) |
| 4027 | r = a.__add__(b, context=self) |
| 4028 | if r is NotImplemented: |
| 4029 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4030 | else: |
| 4031 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4032 | |
| 4033 | def _apply(self, a): |
Raymond Hettinger | dab988d | 2004-10-09 07:10:44 +0000 | [diff] [blame] | 4034 | return str(a._fix(self)) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4035 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4036 | def canonical(self, a): |
| 4037 | """Returns the same Decimal object. |
| 4038 | |
| 4039 | As we do not have different encodings for the same number, the |
| 4040 | received object already is in its canonical form. |
| 4041 | |
| 4042 | >>> ExtendedContext.canonical(Decimal('2.50')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4043 | Decimal('2.50') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4044 | """ |
| 4045 | return a.canonical(context=self) |
| 4046 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4047 | def compare(self, a, b): |
| 4048 | """Compares values numerically. |
| 4049 | |
| 4050 | If the signs of the operands differ, a value representing each operand |
| 4051 | ('-1' if the operand is less than zero, '0' if the operand is zero or |
| 4052 | negative zero, or '1' if the operand is greater than zero) is used in |
| 4053 | place of that operand for the comparison instead of the actual |
| 4054 | operand. |
| 4055 | |
| 4056 | The comparison is then effected by subtracting the second operand from |
| 4057 | the first and then returning a value according to the result of the |
| 4058 | subtraction: '-1' if the result is less than zero, '0' if the result is |
| 4059 | zero or negative zero, or '1' if the result is greater than zero. |
| 4060 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4061 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4062 | Decimal('-1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4063 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4064 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4065 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('2.10')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4066 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4067 | >>> ExtendedContext.compare(Decimal('3'), Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4068 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4069 | >>> ExtendedContext.compare(Decimal('2.1'), Decimal('-3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4070 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4071 | >>> ExtendedContext.compare(Decimal('-3'), Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4072 | Decimal('-1') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4073 | >>> ExtendedContext.compare(1, 2) |
| 4074 | Decimal('-1') |
| 4075 | >>> ExtendedContext.compare(Decimal(1), 2) |
| 4076 | Decimal('-1') |
| 4077 | >>> ExtendedContext.compare(1, Decimal(2)) |
| 4078 | Decimal('-1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4079 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4080 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4081 | return a.compare(b, context=self) |
| 4082 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4083 | def compare_signal(self, a, b): |
| 4084 | """Compares the values of the two operands numerically. |
| 4085 | |
| 4086 | It's pretty much like compare(), but all NaNs signal, with signaling |
| 4087 | NaNs taking precedence over quiet NaNs. |
| 4088 | |
| 4089 | >>> c = ExtendedContext |
| 4090 | >>> c.compare_signal(Decimal('2.1'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4091 | Decimal('-1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4092 | >>> c.compare_signal(Decimal('2.1'), Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4093 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4094 | >>> c.flags[InvalidOperation] = 0 |
| 4095 | >>> print(c.flags[InvalidOperation]) |
| 4096 | 0 |
| 4097 | >>> c.compare_signal(Decimal('NaN'), Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4098 | Decimal('NaN') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4099 | >>> print(c.flags[InvalidOperation]) |
| 4100 | 1 |
| 4101 | >>> c.flags[InvalidOperation] = 0 |
| 4102 | >>> print(c.flags[InvalidOperation]) |
| 4103 | 0 |
| 4104 | >>> c.compare_signal(Decimal('sNaN'), Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4105 | Decimal('NaN') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4106 | >>> print(c.flags[InvalidOperation]) |
| 4107 | 1 |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4108 | >>> c.compare_signal(-1, 2) |
| 4109 | Decimal('-1') |
| 4110 | >>> c.compare_signal(Decimal(-1), 2) |
| 4111 | Decimal('-1') |
| 4112 | >>> c.compare_signal(-1, Decimal(2)) |
| 4113 | Decimal('-1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4114 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4115 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4116 | return a.compare_signal(b, context=self) |
| 4117 | |
| 4118 | def compare_total(self, a, b): |
| 4119 | """Compares two operands using their abstract representation. |
| 4120 | |
| 4121 | This is not like the standard compare, which use their numerical |
| 4122 | value. Note that a total ordering is defined for all possible abstract |
| 4123 | representations. |
| 4124 | |
| 4125 | >>> ExtendedContext.compare_total(Decimal('12.73'), Decimal('127.9')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4126 | Decimal('-1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4127 | >>> ExtendedContext.compare_total(Decimal('-127'), Decimal('12')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4128 | Decimal('-1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4129 | >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4130 | Decimal('-1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4131 | >>> ExtendedContext.compare_total(Decimal('12.30'), Decimal('12.30')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4132 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4133 | >>> ExtendedContext.compare_total(Decimal('12.3'), Decimal('12.300')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4134 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4135 | >>> ExtendedContext.compare_total(Decimal('12.3'), Decimal('NaN')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4136 | Decimal('-1') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4137 | >>> ExtendedContext.compare_total(1, 2) |
| 4138 | Decimal('-1') |
| 4139 | >>> ExtendedContext.compare_total(Decimal(1), 2) |
| 4140 | Decimal('-1') |
| 4141 | >>> ExtendedContext.compare_total(1, Decimal(2)) |
| 4142 | Decimal('-1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4143 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4144 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4145 | return a.compare_total(b) |
| 4146 | |
| 4147 | def compare_total_mag(self, a, b): |
| 4148 | """Compares two operands using their abstract representation ignoring sign. |
| 4149 | |
| 4150 | Like compare_total, but with operand's sign ignored and assumed to be 0. |
| 4151 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4152 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4153 | return a.compare_total_mag(b) |
| 4154 | |
| 4155 | def copy_abs(self, a): |
| 4156 | """Returns a copy of the operand with the sign set to 0. |
| 4157 | |
| 4158 | >>> ExtendedContext.copy_abs(Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4159 | Decimal('2.1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4160 | >>> ExtendedContext.copy_abs(Decimal('-100')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4161 | Decimal('100') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4162 | >>> ExtendedContext.copy_abs(-1) |
| 4163 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4164 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4165 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4166 | return a.copy_abs() |
| 4167 | |
| 4168 | def copy_decimal(self, a): |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4169 | """Returns a copy of the decimal object. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4170 | |
| 4171 | >>> ExtendedContext.copy_decimal(Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4172 | Decimal('2.1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4173 | >>> ExtendedContext.copy_decimal(Decimal('-1.00')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4174 | Decimal('-1.00') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4175 | >>> ExtendedContext.copy_decimal(1) |
| 4176 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4177 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4178 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4179 | return Decimal(a) |
| 4180 | |
| 4181 | def copy_negate(self, a): |
| 4182 | """Returns a copy of the operand with the sign inverted. |
| 4183 | |
| 4184 | >>> ExtendedContext.copy_negate(Decimal('101.5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4185 | Decimal('-101.5') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4186 | >>> ExtendedContext.copy_negate(Decimal('-101.5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4187 | Decimal('101.5') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4188 | >>> ExtendedContext.copy_negate(1) |
| 4189 | Decimal('-1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4190 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4191 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4192 | return a.copy_negate() |
| 4193 | |
| 4194 | def copy_sign(self, a, b): |
| 4195 | """Copies the second operand's sign to the first one. |
| 4196 | |
| 4197 | In detail, it returns a copy of the first operand with the sign |
| 4198 | equal to the sign of the second operand. |
| 4199 | |
| 4200 | >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('7.33')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4201 | Decimal('1.50') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4202 | >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('7.33')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4203 | Decimal('1.50') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4204 | >>> ExtendedContext.copy_sign(Decimal( '1.50'), Decimal('-7.33')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4205 | Decimal('-1.50') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4206 | >>> ExtendedContext.copy_sign(Decimal('-1.50'), Decimal('-7.33')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4207 | Decimal('-1.50') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4208 | >>> ExtendedContext.copy_sign(1, -2) |
| 4209 | Decimal('-1') |
| 4210 | >>> ExtendedContext.copy_sign(Decimal(1), -2) |
| 4211 | Decimal('-1') |
| 4212 | >>> ExtendedContext.copy_sign(1, Decimal(-2)) |
| 4213 | Decimal('-1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4214 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4215 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4216 | return a.copy_sign(b) |
| 4217 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4218 | def divide(self, a, b): |
| 4219 | """Decimal division in a specified context. |
| 4220 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4221 | >>> ExtendedContext.divide(Decimal('1'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4222 | Decimal('0.333333333') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4223 | >>> ExtendedContext.divide(Decimal('2'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4224 | Decimal('0.666666667') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4225 | >>> ExtendedContext.divide(Decimal('5'), Decimal('2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4226 | Decimal('2.5') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4227 | >>> ExtendedContext.divide(Decimal('1'), Decimal('10')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4228 | Decimal('0.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4229 | >>> ExtendedContext.divide(Decimal('12'), Decimal('12')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4230 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4231 | >>> ExtendedContext.divide(Decimal('8.00'), Decimal('2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4232 | Decimal('4.00') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4233 | >>> ExtendedContext.divide(Decimal('2.400'), Decimal('2.0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4234 | Decimal('1.20') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4235 | >>> ExtendedContext.divide(Decimal('1000'), Decimal('100')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4236 | Decimal('10') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4237 | >>> ExtendedContext.divide(Decimal('1000'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4238 | Decimal('1000') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4239 | >>> ExtendedContext.divide(Decimal('2.40E+6'), Decimal('2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4240 | Decimal('1.20E+6') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4241 | >>> ExtendedContext.divide(5, 5) |
| 4242 | Decimal('1') |
| 4243 | >>> ExtendedContext.divide(Decimal(5), 5) |
| 4244 | Decimal('1') |
| 4245 | >>> ExtendedContext.divide(5, Decimal(5)) |
| 4246 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4247 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4248 | a = _convert_other(a, raiseit=True) |
| 4249 | r = a.__truediv__(b, context=self) |
| 4250 | if r is NotImplemented: |
| 4251 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4252 | else: |
| 4253 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4254 | |
| 4255 | def divide_int(self, a, b): |
| 4256 | """Divides two numbers and returns the integer part of the result. |
| 4257 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4258 | >>> ExtendedContext.divide_int(Decimal('2'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4259 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4260 | >>> ExtendedContext.divide_int(Decimal('10'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4261 | Decimal('3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4262 | >>> ExtendedContext.divide_int(Decimal('1'), Decimal('0.3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4263 | Decimal('3') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4264 | >>> ExtendedContext.divide_int(10, 3) |
| 4265 | Decimal('3') |
| 4266 | >>> ExtendedContext.divide_int(Decimal(10), 3) |
| 4267 | Decimal('3') |
| 4268 | >>> ExtendedContext.divide_int(10, Decimal(3)) |
| 4269 | Decimal('3') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4270 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4271 | a = _convert_other(a, raiseit=True) |
| 4272 | r = a.__floordiv__(b, context=self) |
| 4273 | if r is NotImplemented: |
| 4274 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4275 | else: |
| 4276 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4277 | |
| 4278 | def divmod(self, a, b): |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4279 | """Return (a // b, a % b). |
Mark Dickinson | c53796e | 2010-01-06 16:22:15 +0000 | [diff] [blame] | 4280 | |
| 4281 | >>> ExtendedContext.divmod(Decimal(8), Decimal(3)) |
| 4282 | (Decimal('2'), Decimal('2')) |
| 4283 | >>> ExtendedContext.divmod(Decimal(8), Decimal(4)) |
| 4284 | (Decimal('2'), Decimal('0')) |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4285 | >>> ExtendedContext.divmod(8, 4) |
| 4286 | (Decimal('2'), Decimal('0')) |
| 4287 | >>> ExtendedContext.divmod(Decimal(8), 4) |
| 4288 | (Decimal('2'), Decimal('0')) |
| 4289 | >>> ExtendedContext.divmod(8, Decimal(4)) |
| 4290 | (Decimal('2'), Decimal('0')) |
Mark Dickinson | c53796e | 2010-01-06 16:22:15 +0000 | [diff] [blame] | 4291 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4292 | a = _convert_other(a, raiseit=True) |
| 4293 | r = a.__divmod__(b, context=self) |
| 4294 | if r is NotImplemented: |
| 4295 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4296 | else: |
| 4297 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4298 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4299 | def exp(self, a): |
| 4300 | """Returns e ** a. |
| 4301 | |
| 4302 | >>> c = ExtendedContext.copy() |
| 4303 | >>> c.Emin = -999 |
| 4304 | >>> c.Emax = 999 |
| 4305 | >>> c.exp(Decimal('-Infinity')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4306 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4307 | >>> c.exp(Decimal('-1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4308 | Decimal('0.367879441') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4309 | >>> c.exp(Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4310 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4311 | >>> c.exp(Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4312 | Decimal('2.71828183') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4313 | >>> c.exp(Decimal('0.693147181')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4314 | Decimal('2.00000000') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4315 | >>> c.exp(Decimal('+Infinity')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4316 | Decimal('Infinity') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4317 | >>> c.exp(10) |
| 4318 | Decimal('22026.4658') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4319 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4320 | a =_convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4321 | return a.exp(context=self) |
| 4322 | |
| 4323 | def fma(self, a, b, c): |
| 4324 | """Returns a multiplied by b, plus c. |
| 4325 | |
| 4326 | The first two operands are multiplied together, using multiply, |
| 4327 | the third operand is then added to the result of that |
| 4328 | multiplication, using add, all with only one final rounding. |
| 4329 | |
| 4330 | >>> ExtendedContext.fma(Decimal('3'), Decimal('5'), Decimal('7')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4331 | Decimal('22') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4332 | >>> ExtendedContext.fma(Decimal('3'), Decimal('-5'), Decimal('7')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4333 | Decimal('-8') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4334 | >>> ExtendedContext.fma(Decimal('888565290'), Decimal('1557.96930'), Decimal('-86087.7578')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4335 | Decimal('1.38435736E+12') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4336 | >>> ExtendedContext.fma(1, 3, 4) |
| 4337 | Decimal('7') |
| 4338 | >>> ExtendedContext.fma(1, Decimal(3), 4) |
| 4339 | Decimal('7') |
| 4340 | >>> ExtendedContext.fma(1, 3, Decimal(4)) |
| 4341 | Decimal('7') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4342 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4343 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4344 | return a.fma(b, c, context=self) |
| 4345 | |
| 4346 | def is_canonical(self, a): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4347 | """Return True if the operand is canonical; otherwise return False. |
| 4348 | |
| 4349 | Currently, the encoding of a Decimal instance is always |
| 4350 | canonical, so this method returns True for any Decimal. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4351 | |
| 4352 | >>> ExtendedContext.is_canonical(Decimal('2.50')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4353 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4354 | """ |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4355 | return a.is_canonical() |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4356 | |
| 4357 | def is_finite(self, a): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4358 | """Return True if the operand is finite; otherwise return False. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4359 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4360 | A Decimal instance is considered finite if it is neither |
| 4361 | infinite nor a NaN. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4362 | |
| 4363 | >>> ExtendedContext.is_finite(Decimal('2.50')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4364 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4365 | >>> ExtendedContext.is_finite(Decimal('-0.3')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4366 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4367 | >>> ExtendedContext.is_finite(Decimal('0')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4368 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4369 | >>> ExtendedContext.is_finite(Decimal('Inf')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4370 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4371 | >>> ExtendedContext.is_finite(Decimal('NaN')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4372 | False |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4373 | >>> ExtendedContext.is_finite(1) |
| 4374 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4375 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4376 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4377 | return a.is_finite() |
| 4378 | |
| 4379 | def is_infinite(self, a): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4380 | """Return True if the operand is infinite; otherwise return False. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4381 | |
| 4382 | >>> ExtendedContext.is_infinite(Decimal('2.50')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4383 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4384 | >>> ExtendedContext.is_infinite(Decimal('-Inf')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4385 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4386 | >>> ExtendedContext.is_infinite(Decimal('NaN')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4387 | False |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4388 | >>> ExtendedContext.is_infinite(1) |
| 4389 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4390 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4391 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4392 | return a.is_infinite() |
| 4393 | |
| 4394 | def is_nan(self, a): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4395 | """Return True if the operand is a qNaN or sNaN; |
| 4396 | otherwise return False. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4397 | |
| 4398 | >>> ExtendedContext.is_nan(Decimal('2.50')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4399 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4400 | >>> ExtendedContext.is_nan(Decimal('NaN')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4401 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4402 | >>> ExtendedContext.is_nan(Decimal('-sNaN')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4403 | True |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4404 | >>> ExtendedContext.is_nan(1) |
| 4405 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4406 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4407 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4408 | return a.is_nan() |
| 4409 | |
| 4410 | def is_normal(self, a): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4411 | """Return True if the operand is a normal number; |
| 4412 | otherwise return False. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4413 | |
| 4414 | >>> c = ExtendedContext.copy() |
| 4415 | >>> c.Emin = -999 |
| 4416 | >>> c.Emax = 999 |
| 4417 | >>> c.is_normal(Decimal('2.50')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4418 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4419 | >>> c.is_normal(Decimal('0.1E-999')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4420 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4421 | >>> c.is_normal(Decimal('0.00')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4422 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4423 | >>> c.is_normal(Decimal('-Inf')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4424 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4425 | >>> c.is_normal(Decimal('NaN')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4426 | False |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4427 | >>> c.is_normal(1) |
| 4428 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4429 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4430 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4431 | return a.is_normal(context=self) |
| 4432 | |
| 4433 | def is_qnan(self, a): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4434 | """Return True if the operand is a quiet NaN; otherwise return False. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4435 | |
| 4436 | >>> ExtendedContext.is_qnan(Decimal('2.50')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4437 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4438 | >>> ExtendedContext.is_qnan(Decimal('NaN')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4439 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4440 | >>> ExtendedContext.is_qnan(Decimal('sNaN')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4441 | False |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4442 | >>> ExtendedContext.is_qnan(1) |
| 4443 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4444 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4445 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4446 | return a.is_qnan() |
| 4447 | |
| 4448 | def is_signed(self, a): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4449 | """Return True if the operand is negative; otherwise return False. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4450 | |
| 4451 | >>> ExtendedContext.is_signed(Decimal('2.50')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4452 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4453 | >>> ExtendedContext.is_signed(Decimal('-12')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4454 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4455 | >>> ExtendedContext.is_signed(Decimal('-0')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4456 | True |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4457 | >>> ExtendedContext.is_signed(8) |
| 4458 | False |
| 4459 | >>> ExtendedContext.is_signed(-8) |
| 4460 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4461 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4462 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4463 | return a.is_signed() |
| 4464 | |
| 4465 | def is_snan(self, a): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4466 | """Return True if the operand is a signaling NaN; |
| 4467 | otherwise return False. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4468 | |
| 4469 | >>> ExtendedContext.is_snan(Decimal('2.50')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4470 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4471 | >>> ExtendedContext.is_snan(Decimal('NaN')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4472 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4473 | >>> ExtendedContext.is_snan(Decimal('sNaN')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4474 | True |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4475 | >>> ExtendedContext.is_snan(1) |
| 4476 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4477 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4478 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4479 | return a.is_snan() |
| 4480 | |
| 4481 | def is_subnormal(self, a): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4482 | """Return True if the operand is subnormal; otherwise return False. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4483 | |
| 4484 | >>> c = ExtendedContext.copy() |
| 4485 | >>> c.Emin = -999 |
| 4486 | >>> c.Emax = 999 |
| 4487 | >>> c.is_subnormal(Decimal('2.50')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4488 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4489 | >>> c.is_subnormal(Decimal('0.1E-999')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4490 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4491 | >>> c.is_subnormal(Decimal('0.00')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4492 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4493 | >>> c.is_subnormal(Decimal('-Inf')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4494 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4495 | >>> c.is_subnormal(Decimal('NaN')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4496 | False |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4497 | >>> c.is_subnormal(1) |
| 4498 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4499 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4500 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4501 | return a.is_subnormal(context=self) |
| 4502 | |
| 4503 | def is_zero(self, a): |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4504 | """Return True if the operand is a zero; otherwise return False. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4505 | |
| 4506 | >>> ExtendedContext.is_zero(Decimal('0')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4507 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4508 | >>> ExtendedContext.is_zero(Decimal('2.50')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4509 | False |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4510 | >>> ExtendedContext.is_zero(Decimal('-0E+2')) |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 4511 | True |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4512 | >>> ExtendedContext.is_zero(1) |
| 4513 | False |
| 4514 | >>> ExtendedContext.is_zero(0) |
| 4515 | True |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4516 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4517 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4518 | return a.is_zero() |
| 4519 | |
| 4520 | def ln(self, a): |
| 4521 | """Returns the natural (base e) logarithm of the operand. |
| 4522 | |
| 4523 | >>> c = ExtendedContext.copy() |
| 4524 | >>> c.Emin = -999 |
| 4525 | >>> c.Emax = 999 |
| 4526 | >>> c.ln(Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4527 | Decimal('-Infinity') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4528 | >>> c.ln(Decimal('1.000')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4529 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4530 | >>> c.ln(Decimal('2.71828183')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4531 | Decimal('1.00000000') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4532 | >>> c.ln(Decimal('10')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4533 | Decimal('2.30258509') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4534 | >>> c.ln(Decimal('+Infinity')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4535 | Decimal('Infinity') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4536 | >>> c.ln(1) |
| 4537 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4538 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4539 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4540 | return a.ln(context=self) |
| 4541 | |
| 4542 | def log10(self, a): |
| 4543 | """Returns the base 10 logarithm of the operand. |
| 4544 | |
| 4545 | >>> c = ExtendedContext.copy() |
| 4546 | >>> c.Emin = -999 |
| 4547 | >>> c.Emax = 999 |
| 4548 | >>> c.log10(Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4549 | Decimal('-Infinity') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4550 | >>> c.log10(Decimal('0.001')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4551 | Decimal('-3') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4552 | >>> c.log10(Decimal('1.000')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4553 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4554 | >>> c.log10(Decimal('2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4555 | Decimal('0.301029996') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4556 | >>> c.log10(Decimal('10')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4557 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4558 | >>> c.log10(Decimal('70')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4559 | Decimal('1.84509804') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4560 | >>> c.log10(Decimal('+Infinity')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4561 | Decimal('Infinity') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4562 | >>> c.log10(0) |
| 4563 | Decimal('-Infinity') |
| 4564 | >>> c.log10(1) |
| 4565 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4566 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4567 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4568 | return a.log10(context=self) |
| 4569 | |
| 4570 | def logb(self, a): |
| 4571 | """ Returns the exponent of the magnitude of the operand's MSD. |
| 4572 | |
| 4573 | The result is the integer which is the exponent of the magnitude |
| 4574 | of the most significant digit of the operand (as though the |
| 4575 | operand were truncated to a single digit while maintaining the |
| 4576 | value of that digit and without limiting the resulting exponent). |
| 4577 | |
| 4578 | >>> ExtendedContext.logb(Decimal('250')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4579 | Decimal('2') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4580 | >>> ExtendedContext.logb(Decimal('2.50')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4581 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4582 | >>> ExtendedContext.logb(Decimal('0.03')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4583 | Decimal('-2') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4584 | >>> ExtendedContext.logb(Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4585 | Decimal('-Infinity') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4586 | >>> ExtendedContext.logb(1) |
| 4587 | Decimal('0') |
| 4588 | >>> ExtendedContext.logb(10) |
| 4589 | Decimal('1') |
| 4590 | >>> ExtendedContext.logb(100) |
| 4591 | Decimal('2') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4592 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4593 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4594 | return a.logb(context=self) |
| 4595 | |
| 4596 | def logical_and(self, a, b): |
| 4597 | """Applies the logical operation 'and' between each operand's digits. |
| 4598 | |
| 4599 | The operands must be both logical numbers. |
| 4600 | |
| 4601 | >>> ExtendedContext.logical_and(Decimal('0'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4602 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4603 | >>> ExtendedContext.logical_and(Decimal('0'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4604 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4605 | >>> ExtendedContext.logical_and(Decimal('1'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4606 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4607 | >>> ExtendedContext.logical_and(Decimal('1'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4608 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4609 | >>> ExtendedContext.logical_and(Decimal('1100'), Decimal('1010')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4610 | Decimal('1000') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4611 | >>> ExtendedContext.logical_and(Decimal('1111'), Decimal('10')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4612 | Decimal('10') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4613 | >>> ExtendedContext.logical_and(110, 1101) |
| 4614 | Decimal('100') |
| 4615 | >>> ExtendedContext.logical_and(Decimal(110), 1101) |
| 4616 | Decimal('100') |
| 4617 | >>> ExtendedContext.logical_and(110, Decimal(1101)) |
| 4618 | Decimal('100') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4619 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4620 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4621 | return a.logical_and(b, context=self) |
| 4622 | |
| 4623 | def logical_invert(self, a): |
| 4624 | """Invert all the digits in the operand. |
| 4625 | |
| 4626 | The operand must be a logical number. |
| 4627 | |
| 4628 | >>> ExtendedContext.logical_invert(Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4629 | Decimal('111111111') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4630 | >>> ExtendedContext.logical_invert(Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4631 | Decimal('111111110') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4632 | >>> ExtendedContext.logical_invert(Decimal('111111111')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4633 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4634 | >>> ExtendedContext.logical_invert(Decimal('101010101')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4635 | Decimal('10101010') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4636 | >>> ExtendedContext.logical_invert(1101) |
| 4637 | Decimal('111110010') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4638 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4639 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4640 | return a.logical_invert(context=self) |
| 4641 | |
| 4642 | def logical_or(self, a, b): |
| 4643 | """Applies the logical operation 'or' between each operand's digits. |
| 4644 | |
| 4645 | The operands must be both logical numbers. |
| 4646 | |
| 4647 | >>> ExtendedContext.logical_or(Decimal('0'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4648 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4649 | >>> ExtendedContext.logical_or(Decimal('0'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4650 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4651 | >>> ExtendedContext.logical_or(Decimal('1'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4652 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4653 | >>> ExtendedContext.logical_or(Decimal('1'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4654 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4655 | >>> ExtendedContext.logical_or(Decimal('1100'), Decimal('1010')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4656 | Decimal('1110') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4657 | >>> ExtendedContext.logical_or(Decimal('1110'), Decimal('10')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4658 | Decimal('1110') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4659 | >>> ExtendedContext.logical_or(110, 1101) |
| 4660 | Decimal('1111') |
| 4661 | >>> ExtendedContext.logical_or(Decimal(110), 1101) |
| 4662 | Decimal('1111') |
| 4663 | >>> ExtendedContext.logical_or(110, Decimal(1101)) |
| 4664 | Decimal('1111') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4665 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4666 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4667 | return a.logical_or(b, context=self) |
| 4668 | |
| 4669 | def logical_xor(self, a, b): |
| 4670 | """Applies the logical operation 'xor' between each operand's digits. |
| 4671 | |
| 4672 | The operands must be both logical numbers. |
| 4673 | |
| 4674 | >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4675 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4676 | >>> ExtendedContext.logical_xor(Decimal('0'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4677 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4678 | >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4679 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4680 | >>> ExtendedContext.logical_xor(Decimal('1'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4681 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4682 | >>> ExtendedContext.logical_xor(Decimal('1100'), Decimal('1010')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4683 | Decimal('110') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4684 | >>> ExtendedContext.logical_xor(Decimal('1111'), Decimal('10')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4685 | Decimal('1101') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4686 | >>> ExtendedContext.logical_xor(110, 1101) |
| 4687 | Decimal('1011') |
| 4688 | >>> ExtendedContext.logical_xor(Decimal(110), 1101) |
| 4689 | Decimal('1011') |
| 4690 | >>> ExtendedContext.logical_xor(110, Decimal(1101)) |
| 4691 | Decimal('1011') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4692 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4693 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4694 | return a.logical_xor(b, context=self) |
| 4695 | |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4696 | def max(self, a, b): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4697 | """max compares two values numerically and returns the maximum. |
| 4698 | |
| 4699 | If either operand is a NaN then the general rules apply. |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 4700 | Otherwise, the operands are compared as though by the compare |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 4701 | operation. If they are numerically equal then the left-hand operand |
| 4702 | is chosen as the result. Otherwise the maximum (closer to positive |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4703 | infinity) of the two operands is chosen as the result. |
| 4704 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4705 | >>> ExtendedContext.max(Decimal('3'), Decimal('2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4706 | Decimal('3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4707 | >>> ExtendedContext.max(Decimal('-10'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4708 | Decimal('3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4709 | >>> ExtendedContext.max(Decimal('1.0'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4710 | Decimal('1') |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 4711 | >>> ExtendedContext.max(Decimal('7'), Decimal('NaN')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4712 | Decimal('7') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4713 | >>> ExtendedContext.max(1, 2) |
| 4714 | Decimal('2') |
| 4715 | >>> ExtendedContext.max(Decimal(1), 2) |
| 4716 | Decimal('2') |
| 4717 | >>> ExtendedContext.max(1, Decimal(2)) |
| 4718 | Decimal('2') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4719 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4720 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4721 | return a.max(b, context=self) |
| 4722 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4723 | def max_mag(self, a, b): |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4724 | """Compares the values numerically with their sign ignored. |
| 4725 | |
| 4726 | >>> ExtendedContext.max_mag(Decimal('7'), Decimal('NaN')) |
| 4727 | Decimal('7') |
| 4728 | >>> ExtendedContext.max_mag(Decimal('7'), Decimal('-10')) |
| 4729 | Decimal('-10') |
| 4730 | >>> ExtendedContext.max_mag(1, -2) |
| 4731 | Decimal('-2') |
| 4732 | >>> ExtendedContext.max_mag(Decimal(1), -2) |
| 4733 | Decimal('-2') |
| 4734 | >>> ExtendedContext.max_mag(1, Decimal(-2)) |
| 4735 | Decimal('-2') |
| 4736 | """ |
| 4737 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4738 | return a.max_mag(b, context=self) |
| 4739 | |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4740 | def min(self, a, b): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4741 | """min compares two values numerically and returns the minimum. |
| 4742 | |
| 4743 | If either operand is a NaN then the general rules apply. |
Christian Heimes | 679db4a | 2008-01-18 09:56:22 +0000 | [diff] [blame] | 4744 | Otherwise, the operands are compared as though by the compare |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 4745 | operation. If they are numerically equal then the left-hand operand |
| 4746 | is chosen as the result. Otherwise the minimum (closer to negative |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4747 | infinity) of the two operands is chosen as the result. |
| 4748 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4749 | >>> ExtendedContext.min(Decimal('3'), Decimal('2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4750 | Decimal('2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4751 | >>> ExtendedContext.min(Decimal('-10'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4752 | Decimal('-10') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4753 | >>> ExtendedContext.min(Decimal('1.0'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4754 | Decimal('1.0') |
Raymond Hettinger | d6c700a | 2004-08-17 06:39:37 +0000 | [diff] [blame] | 4755 | >>> ExtendedContext.min(Decimal('7'), Decimal('NaN')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4756 | Decimal('7') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4757 | >>> ExtendedContext.min(1, 2) |
| 4758 | Decimal('1') |
| 4759 | >>> ExtendedContext.min(Decimal(1), 2) |
| 4760 | Decimal('1') |
| 4761 | >>> ExtendedContext.min(1, Decimal(29)) |
| 4762 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4763 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4764 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4765 | return a.min(b, context=self) |
| 4766 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4767 | def min_mag(self, a, b): |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4768 | """Compares the values numerically with their sign ignored. |
| 4769 | |
| 4770 | >>> ExtendedContext.min_mag(Decimal('3'), Decimal('-2')) |
| 4771 | Decimal('-2') |
| 4772 | >>> ExtendedContext.min_mag(Decimal('-3'), Decimal('NaN')) |
| 4773 | Decimal('-3') |
| 4774 | >>> ExtendedContext.min_mag(1, -2) |
| 4775 | Decimal('1') |
| 4776 | >>> ExtendedContext.min_mag(Decimal(1), -2) |
| 4777 | Decimal('1') |
| 4778 | >>> ExtendedContext.min_mag(1, Decimal(-2)) |
| 4779 | Decimal('1') |
| 4780 | """ |
| 4781 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4782 | return a.min_mag(b, context=self) |
| 4783 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4784 | def minus(self, a): |
| 4785 | """Minus corresponds to unary prefix minus in Python. |
| 4786 | |
| 4787 | The operation is evaluated using the same rules as subtract; the |
| 4788 | operation minus(a) is calculated as subtract('0', a) where the '0' |
| 4789 | has the same exponent as the operand. |
| 4790 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4791 | >>> ExtendedContext.minus(Decimal('1.3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4792 | Decimal('-1.3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4793 | >>> ExtendedContext.minus(Decimal('-1.3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4794 | Decimal('1.3') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4795 | >>> ExtendedContext.minus(1) |
| 4796 | Decimal('-1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4797 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4798 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4799 | return a.__neg__(context=self) |
| 4800 | |
| 4801 | def multiply(self, a, b): |
| 4802 | """multiply multiplies two operands. |
| 4803 | |
| 4804 | If either operand is a special value then the general rules apply. |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4805 | Otherwise, the operands are multiplied together |
| 4806 | ('long multiplication'), resulting in a number which may be as long as |
| 4807 | the sum of the lengths of the two operands. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4808 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4809 | >>> ExtendedContext.multiply(Decimal('1.20'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4810 | Decimal('3.60') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4811 | >>> ExtendedContext.multiply(Decimal('7'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4812 | Decimal('21') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4813 | >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('0.8')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4814 | Decimal('0.72') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4815 | >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('-0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4816 | Decimal('-0.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4817 | >>> ExtendedContext.multiply(Decimal('654321'), Decimal('654321')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4818 | Decimal('4.28135971E+11') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4819 | >>> ExtendedContext.multiply(7, 7) |
| 4820 | Decimal('49') |
| 4821 | >>> ExtendedContext.multiply(Decimal(7), 7) |
| 4822 | Decimal('49') |
| 4823 | >>> ExtendedContext.multiply(7, Decimal(7)) |
| 4824 | Decimal('49') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4825 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4826 | a = _convert_other(a, raiseit=True) |
| 4827 | r = a.__mul__(b, context=self) |
| 4828 | if r is NotImplemented: |
| 4829 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 4830 | else: |
| 4831 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4832 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4833 | def next_minus(self, a): |
| 4834 | """Returns the largest representable number smaller than a. |
| 4835 | |
| 4836 | >>> c = ExtendedContext.copy() |
| 4837 | >>> c.Emin = -999 |
| 4838 | >>> c.Emax = 999 |
| 4839 | >>> ExtendedContext.next_minus(Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4840 | Decimal('0.999999999') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4841 | >>> c.next_minus(Decimal('1E-1007')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4842 | Decimal('0E-1007') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4843 | >>> ExtendedContext.next_minus(Decimal('-1.00000003')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4844 | Decimal('-1.00000004') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4845 | >>> c.next_minus(Decimal('Infinity')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4846 | Decimal('9.99999999E+999') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4847 | >>> c.next_minus(1) |
| 4848 | Decimal('0.999999999') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4849 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4850 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4851 | return a.next_minus(context=self) |
| 4852 | |
| 4853 | def next_plus(self, a): |
| 4854 | """Returns the smallest representable number larger than a. |
| 4855 | |
| 4856 | >>> c = ExtendedContext.copy() |
| 4857 | >>> c.Emin = -999 |
| 4858 | >>> c.Emax = 999 |
| 4859 | >>> ExtendedContext.next_plus(Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4860 | Decimal('1.00000001') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4861 | >>> c.next_plus(Decimal('-1E-1007')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4862 | Decimal('-0E-1007') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4863 | >>> ExtendedContext.next_plus(Decimal('-1.00000003')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4864 | Decimal('-1.00000002') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4865 | >>> c.next_plus(Decimal('-Infinity')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4866 | Decimal('-9.99999999E+999') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4867 | >>> c.next_plus(1) |
| 4868 | Decimal('1.00000001') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4869 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4870 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4871 | return a.next_plus(context=self) |
| 4872 | |
| 4873 | def next_toward(self, a, b): |
| 4874 | """Returns the number closest to a, in direction towards b. |
| 4875 | |
| 4876 | The result is the closest representable number from the first |
| 4877 | operand (but not the first operand) that is in the direction |
| 4878 | towards the second operand, unless the operands have the same |
| 4879 | value. |
| 4880 | |
| 4881 | >>> c = ExtendedContext.copy() |
| 4882 | >>> c.Emin = -999 |
| 4883 | >>> c.Emax = 999 |
| 4884 | >>> c.next_toward(Decimal('1'), Decimal('2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4885 | Decimal('1.00000001') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4886 | >>> c.next_toward(Decimal('-1E-1007'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4887 | Decimal('-0E-1007') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4888 | >>> c.next_toward(Decimal('-1.00000003'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4889 | Decimal('-1.00000002') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4890 | >>> c.next_toward(Decimal('1'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4891 | Decimal('0.999999999') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4892 | >>> c.next_toward(Decimal('1E-1007'), Decimal('-100')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4893 | Decimal('0E-1007') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4894 | >>> c.next_toward(Decimal('-1.00000003'), Decimal('-10')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4895 | Decimal('-1.00000004') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4896 | >>> c.next_toward(Decimal('0.00'), Decimal('-0.0000')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4897 | Decimal('-0.00') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4898 | >>> c.next_toward(0, 1) |
| 4899 | Decimal('1E-1007') |
| 4900 | >>> c.next_toward(Decimal(0), 1) |
| 4901 | Decimal('1E-1007') |
| 4902 | >>> c.next_toward(0, Decimal(1)) |
| 4903 | Decimal('1E-1007') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4904 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4905 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4906 | return a.next_toward(b, context=self) |
| 4907 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4908 | def normalize(self, a): |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 4909 | """normalize reduces an operand to its simplest form. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4910 | |
| 4911 | Essentially a plus operation with all trailing zeros removed from the |
| 4912 | result. |
| 4913 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4914 | >>> ExtendedContext.normalize(Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4915 | Decimal('2.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4916 | >>> ExtendedContext.normalize(Decimal('-2.0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4917 | Decimal('-2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4918 | >>> ExtendedContext.normalize(Decimal('1.200')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4919 | Decimal('1.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4920 | >>> ExtendedContext.normalize(Decimal('-120')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4921 | Decimal('-1.2E+2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4922 | >>> ExtendedContext.normalize(Decimal('120.00')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4923 | Decimal('1.2E+2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4924 | >>> ExtendedContext.normalize(Decimal('0.00')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4925 | Decimal('0') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4926 | >>> ExtendedContext.normalize(6) |
| 4927 | Decimal('6') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4928 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4929 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4930 | return a.normalize(context=self) |
| 4931 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4932 | def number_class(self, a): |
| 4933 | """Returns an indication of the class of the operand. |
| 4934 | |
| 4935 | The class is one of the following strings: |
| 4936 | -sNaN |
| 4937 | -NaN |
| 4938 | -Infinity |
| 4939 | -Normal |
| 4940 | -Subnormal |
| 4941 | -Zero |
| 4942 | +Zero |
| 4943 | +Subnormal |
| 4944 | +Normal |
| 4945 | +Infinity |
| 4946 | |
| 4947 | >>> c = Context(ExtendedContext) |
| 4948 | >>> c.Emin = -999 |
| 4949 | >>> c.Emax = 999 |
| 4950 | >>> c.number_class(Decimal('Infinity')) |
| 4951 | '+Infinity' |
| 4952 | >>> c.number_class(Decimal('1E-10')) |
| 4953 | '+Normal' |
| 4954 | >>> c.number_class(Decimal('2.50')) |
| 4955 | '+Normal' |
| 4956 | >>> c.number_class(Decimal('0.1E-999')) |
| 4957 | '+Subnormal' |
| 4958 | >>> c.number_class(Decimal('0')) |
| 4959 | '+Zero' |
| 4960 | >>> c.number_class(Decimal('-0')) |
| 4961 | '-Zero' |
| 4962 | >>> c.number_class(Decimal('-0.1E-999')) |
| 4963 | '-Subnormal' |
| 4964 | >>> c.number_class(Decimal('-1E-10')) |
| 4965 | '-Normal' |
| 4966 | >>> c.number_class(Decimal('-2.50')) |
| 4967 | '-Normal' |
| 4968 | >>> c.number_class(Decimal('-Infinity')) |
| 4969 | '-Infinity' |
| 4970 | >>> c.number_class(Decimal('NaN')) |
| 4971 | 'NaN' |
| 4972 | >>> c.number_class(Decimal('-NaN')) |
| 4973 | 'NaN' |
| 4974 | >>> c.number_class(Decimal('sNaN')) |
| 4975 | 'sNaN' |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4976 | >>> c.number_class(123) |
| 4977 | '+Normal' |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4978 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4979 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 4980 | return a.number_class(context=self) |
| 4981 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4982 | def plus(self, a): |
| 4983 | """Plus corresponds to unary prefix plus in Python. |
| 4984 | |
| 4985 | The operation is evaluated using the same rules as add; the |
| 4986 | operation plus(a) is calculated as add('0', a) where the '0' |
| 4987 | has the same exponent as the operand. |
| 4988 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4989 | >>> ExtendedContext.plus(Decimal('1.3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4990 | Decimal('1.3') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 4991 | >>> ExtendedContext.plus(Decimal('-1.3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 4992 | Decimal('-1.3') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4993 | >>> ExtendedContext.plus(-1) |
| 4994 | Decimal('-1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4995 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 4996 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 4997 | return a.__pos__(context=self) |
| 4998 | |
| 4999 | def power(self, a, b, modulo=None): |
| 5000 | """Raises a to the power of b, to modulo if given. |
| 5001 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5002 | With two arguments, compute a**b. If a is negative then b |
| 5003 | must be integral. The result will be inexact unless b is |
| 5004 | integral and the result is finite and can be expressed exactly |
| 5005 | in 'precision' digits. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5006 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5007 | With three arguments, compute (a**b) % modulo. For the |
| 5008 | three argument form, the following restrictions on the |
| 5009 | arguments hold: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5010 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5011 | - all three arguments must be integral |
| 5012 | - b must be nonnegative |
| 5013 | - at least one of a or b must be nonzero |
| 5014 | - modulo must be nonzero and have at most 'precision' digits |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5015 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5016 | The result of pow(a, b, modulo) is identical to the result |
| 5017 | that would be obtained by computing (a**b) % modulo with |
| 5018 | unbounded precision, but is computed more efficiently. It is |
| 5019 | always exact. |
| 5020 | |
| 5021 | >>> c = ExtendedContext.copy() |
| 5022 | >>> c.Emin = -999 |
| 5023 | >>> c.Emax = 999 |
| 5024 | >>> c.power(Decimal('2'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5025 | Decimal('8') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5026 | >>> c.power(Decimal('-2'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5027 | Decimal('-8') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5028 | >>> c.power(Decimal('2'), Decimal('-3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5029 | Decimal('0.125') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5030 | >>> c.power(Decimal('1.7'), Decimal('8')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5031 | Decimal('69.7575744') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5032 | >>> c.power(Decimal('10'), Decimal('0.301029996')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5033 | Decimal('2.00000000') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5034 | >>> c.power(Decimal('Infinity'), Decimal('-1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5035 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5036 | >>> c.power(Decimal('Infinity'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5037 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5038 | >>> c.power(Decimal('Infinity'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5039 | Decimal('Infinity') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5040 | >>> c.power(Decimal('-Infinity'), Decimal('-1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5041 | Decimal('-0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5042 | >>> c.power(Decimal('-Infinity'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5043 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5044 | >>> c.power(Decimal('-Infinity'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5045 | Decimal('-Infinity') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5046 | >>> c.power(Decimal('-Infinity'), Decimal('2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5047 | Decimal('Infinity') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5048 | >>> c.power(Decimal('0'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5049 | Decimal('NaN') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5050 | |
| 5051 | >>> c.power(Decimal('3'), Decimal('7'), Decimal('16')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5052 | Decimal('11') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5053 | >>> c.power(Decimal('-3'), Decimal('7'), Decimal('16')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5054 | Decimal('-11') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5055 | >>> c.power(Decimal('-3'), Decimal('8'), Decimal('16')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5056 | Decimal('1') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5057 | >>> c.power(Decimal('3'), Decimal('7'), Decimal('-16')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5058 | Decimal('11') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5059 | >>> c.power(Decimal('23E12345'), Decimal('67E189'), Decimal('123456789')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5060 | Decimal('11729830') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5061 | >>> c.power(Decimal('-0'), Decimal('17'), Decimal('1729')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5062 | Decimal('-0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5063 | >>> c.power(Decimal('-23'), Decimal('0'), Decimal('65537')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5064 | Decimal('1') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5065 | >>> ExtendedContext.power(7, 7) |
| 5066 | Decimal('823543') |
| 5067 | >>> ExtendedContext.power(Decimal(7), 7) |
| 5068 | Decimal('823543') |
| 5069 | >>> ExtendedContext.power(7, Decimal(7), 2) |
| 5070 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5071 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5072 | a = _convert_other(a, raiseit=True) |
| 5073 | r = a.__pow__(b, modulo, context=self) |
| 5074 | if r is NotImplemented: |
| 5075 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 5076 | else: |
| 5077 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5078 | |
| 5079 | def quantize(self, a, b): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 5080 | """Returns a value equal to 'a' (rounded), having the exponent of 'b'. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5081 | |
| 5082 | The coefficient of the result is derived from that of the left-hand |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 5083 | operand. It may be rounded using the current rounding setting (if the |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5084 | exponent is being increased), multiplied by a positive power of ten (if |
| 5085 | the exponent is being decreased), or is unchanged (if the exponent is |
| 5086 | already equal to that of the right-hand operand). |
| 5087 | |
| 5088 | Unlike other operations, if the length of the coefficient after the |
| 5089 | quantize operation would be greater than precision then an Invalid |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 5090 | operation condition is raised. This guarantees that, unless there is |
| 5091 | 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] | 5092 | equal to that of the right-hand operand. |
| 5093 | |
| 5094 | Also unlike other operations, quantize will never raise Underflow, even |
| 5095 | if the result is subnormal and inexact. |
| 5096 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5097 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.001')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5098 | Decimal('2.170') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5099 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.01')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5100 | Decimal('2.17') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5101 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('0.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5102 | Decimal('2.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5103 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5104 | Decimal('2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5105 | >>> ExtendedContext.quantize(Decimal('2.17'), Decimal('1e+1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5106 | Decimal('0E+1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5107 | >>> ExtendedContext.quantize(Decimal('-Inf'), Decimal('Infinity')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5108 | Decimal('-Infinity') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5109 | >>> ExtendedContext.quantize(Decimal('2'), Decimal('Infinity')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5110 | Decimal('NaN') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5111 | >>> ExtendedContext.quantize(Decimal('-0.1'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5112 | Decimal('-0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5113 | >>> ExtendedContext.quantize(Decimal('-0'), Decimal('1e+5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5114 | Decimal('-0E+5') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5115 | >>> ExtendedContext.quantize(Decimal('+35236450.6'), Decimal('1e-2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5116 | Decimal('NaN') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5117 | >>> ExtendedContext.quantize(Decimal('-35236450.6'), Decimal('1e-2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5118 | Decimal('NaN') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5119 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5120 | Decimal('217.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5121 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e-0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5122 | Decimal('217') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5123 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5124 | Decimal('2.2E+2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5125 | >>> ExtendedContext.quantize(Decimal('217'), Decimal('1e+2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5126 | Decimal('2E+2') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5127 | >>> ExtendedContext.quantize(1, 2) |
| 5128 | Decimal('1') |
| 5129 | >>> ExtendedContext.quantize(Decimal(1), 2) |
| 5130 | Decimal('1') |
| 5131 | >>> ExtendedContext.quantize(1, Decimal(2)) |
| 5132 | Decimal('1') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5133 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5134 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5135 | return a.quantize(b, context=self) |
| 5136 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5137 | def radix(self): |
| 5138 | """Just returns 10, as this is Decimal, :) |
| 5139 | |
| 5140 | >>> ExtendedContext.radix() |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5141 | Decimal('10') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5142 | """ |
| 5143 | return Decimal(10) |
| 5144 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5145 | def remainder(self, a, b): |
| 5146 | """Returns the remainder from integer division. |
| 5147 | |
| 5148 | The result is the residue of the dividend after the operation of |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 5149 | calculating integer division as described for divide-integer, rounded |
| 5150 | to precision digits if necessary. The sign of the result, if |
| 5151 | non-zero, is the same as that of the original dividend. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5152 | |
| 5153 | This operation will fail under the same conditions as integer division |
| 5154 | (that is, if integer division on the same two operands would fail, the |
| 5155 | remainder cannot be calculated). |
| 5156 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5157 | >>> ExtendedContext.remainder(Decimal('2.1'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5158 | Decimal('2.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5159 | >>> ExtendedContext.remainder(Decimal('10'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5160 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5161 | >>> ExtendedContext.remainder(Decimal('-10'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5162 | Decimal('-1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5163 | >>> ExtendedContext.remainder(Decimal('10.2'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5164 | Decimal('0.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5165 | >>> ExtendedContext.remainder(Decimal('10'), Decimal('0.3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5166 | Decimal('0.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5167 | >>> ExtendedContext.remainder(Decimal('3.6'), Decimal('1.3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5168 | Decimal('1.0') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5169 | >>> ExtendedContext.remainder(22, 6) |
| 5170 | Decimal('4') |
| 5171 | >>> ExtendedContext.remainder(Decimal(22), 6) |
| 5172 | Decimal('4') |
| 5173 | >>> ExtendedContext.remainder(22, Decimal(6)) |
| 5174 | Decimal('4') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5175 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5176 | a = _convert_other(a, raiseit=True) |
| 5177 | r = a.__mod__(b, context=self) |
| 5178 | if r is NotImplemented: |
| 5179 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 5180 | else: |
| 5181 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5182 | |
| 5183 | def remainder_near(self, a, b): |
| 5184 | """Returns to be "a - b * n", where n is the integer nearest the exact |
| 5185 | value of "x / b" (if two integers are equally near then the even one |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 5186 | 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] | 5187 | sign of a. |
| 5188 | |
| 5189 | This operation will fail under the same conditions as integer division |
| 5190 | (that is, if integer division on the same two operands would fail, the |
| 5191 | remainder cannot be calculated). |
| 5192 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5193 | >>> ExtendedContext.remainder_near(Decimal('2.1'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5194 | Decimal('-0.9') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5195 | >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('6')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5196 | Decimal('-2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5197 | >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5198 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5199 | >>> ExtendedContext.remainder_near(Decimal('-10'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5200 | Decimal('-1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5201 | >>> ExtendedContext.remainder_near(Decimal('10.2'), Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5202 | Decimal('0.2') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5203 | >>> ExtendedContext.remainder_near(Decimal('10'), Decimal('0.3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5204 | Decimal('0.1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5205 | >>> ExtendedContext.remainder_near(Decimal('3.6'), Decimal('1.3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5206 | Decimal('-0.3') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5207 | >>> ExtendedContext.remainder_near(3, 11) |
| 5208 | Decimal('3') |
| 5209 | >>> ExtendedContext.remainder_near(Decimal(3), 11) |
| 5210 | Decimal('3') |
| 5211 | >>> ExtendedContext.remainder_near(3, Decimal(11)) |
| 5212 | Decimal('3') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5213 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5214 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5215 | return a.remainder_near(b, context=self) |
| 5216 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5217 | def rotate(self, a, b): |
| 5218 | """Returns a rotated copy of a, b times. |
| 5219 | |
| 5220 | The coefficient of the result is a rotated copy of the digits in |
| 5221 | the coefficient of the first operand. The number of places of |
| 5222 | rotation is taken from the absolute value of the second operand, |
| 5223 | with the rotation being to the left if the second operand is |
| 5224 | positive or to the right otherwise. |
| 5225 | |
| 5226 | >>> ExtendedContext.rotate(Decimal('34'), Decimal('8')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5227 | Decimal('400000003') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5228 | >>> ExtendedContext.rotate(Decimal('12'), Decimal('9')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5229 | Decimal('12') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5230 | >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('-2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5231 | Decimal('891234567') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5232 | >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5233 | Decimal('123456789') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5234 | >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('+2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5235 | Decimal('345678912') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5236 | >>> ExtendedContext.rotate(1333333, 1) |
| 5237 | Decimal('13333330') |
| 5238 | >>> ExtendedContext.rotate(Decimal(1333333), 1) |
| 5239 | Decimal('13333330') |
| 5240 | >>> ExtendedContext.rotate(1333333, Decimal(1)) |
| 5241 | Decimal('13333330') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5242 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5243 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5244 | return a.rotate(b, context=self) |
| 5245 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5246 | def same_quantum(self, a, b): |
| 5247 | """Returns True if the two operands have the same exponent. |
| 5248 | |
| 5249 | The result is never affected by either the sign or the coefficient of |
| 5250 | either operand. |
| 5251 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5252 | >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.001')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5253 | False |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5254 | >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('0.01')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5255 | True |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5256 | >>> ExtendedContext.same_quantum(Decimal('2.17'), Decimal('1')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5257 | False |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5258 | >>> ExtendedContext.same_quantum(Decimal('Inf'), Decimal('-Inf')) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5259 | True |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5260 | >>> ExtendedContext.same_quantum(10000, -1) |
| 5261 | True |
| 5262 | >>> ExtendedContext.same_quantum(Decimal(10000), -1) |
| 5263 | True |
| 5264 | >>> ExtendedContext.same_quantum(10000, Decimal(-1)) |
| 5265 | True |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5266 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5267 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5268 | return a.same_quantum(b) |
| 5269 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5270 | def scaleb (self, a, b): |
| 5271 | """Returns the first operand after adding the second value its exp. |
| 5272 | |
| 5273 | >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('-2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5274 | Decimal('0.0750') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5275 | >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5276 | Decimal('7.50') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5277 | >>> ExtendedContext.scaleb(Decimal('7.50'), Decimal('3')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5278 | Decimal('7.50E+3') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5279 | >>> ExtendedContext.scaleb(1, 4) |
| 5280 | Decimal('1E+4') |
| 5281 | >>> ExtendedContext.scaleb(Decimal(1), 4) |
| 5282 | Decimal('1E+4') |
| 5283 | >>> ExtendedContext.scaleb(1, Decimal(4)) |
| 5284 | Decimal('1E+4') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5285 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5286 | a = _convert_other(a, raiseit=True) |
| 5287 | return a.scaleb(b, context=self) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5288 | |
| 5289 | def shift(self, a, b): |
| 5290 | """Returns a shifted copy of a, b times. |
| 5291 | |
| 5292 | The coefficient of the result is a shifted copy of the digits |
| 5293 | in the coefficient of the first operand. The number of places |
| 5294 | to shift is taken from the absolute value of the second operand, |
| 5295 | with the shift being to the left if the second operand is |
| 5296 | positive or to the right otherwise. Digits shifted into the |
| 5297 | coefficient are zeros. |
| 5298 | |
| 5299 | >>> ExtendedContext.shift(Decimal('34'), Decimal('8')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5300 | Decimal('400000000') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5301 | >>> ExtendedContext.shift(Decimal('12'), Decimal('9')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5302 | Decimal('0') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5303 | >>> ExtendedContext.shift(Decimal('123456789'), Decimal('-2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5304 | Decimal('1234567') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5305 | >>> ExtendedContext.shift(Decimal('123456789'), Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5306 | Decimal('123456789') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5307 | >>> ExtendedContext.shift(Decimal('123456789'), Decimal('+2')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5308 | Decimal('345678900') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5309 | >>> ExtendedContext.shift(88888888, 2) |
| 5310 | Decimal('888888800') |
| 5311 | >>> ExtendedContext.shift(Decimal(88888888), 2) |
| 5312 | Decimal('888888800') |
| 5313 | >>> ExtendedContext.shift(88888888, Decimal(2)) |
| 5314 | Decimal('888888800') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5315 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5316 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5317 | return a.shift(b, context=self) |
| 5318 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5319 | def sqrt(self, a): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 5320 | """Square root of a non-negative number to context precision. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5321 | |
| 5322 | If the result must be inexact, it is rounded using the round-half-even |
| 5323 | algorithm. |
| 5324 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5325 | >>> ExtendedContext.sqrt(Decimal('0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5326 | Decimal('0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5327 | >>> ExtendedContext.sqrt(Decimal('-0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5328 | Decimal('-0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5329 | >>> ExtendedContext.sqrt(Decimal('0.39')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5330 | Decimal('0.624499800') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5331 | >>> ExtendedContext.sqrt(Decimal('100')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5332 | Decimal('10') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5333 | >>> ExtendedContext.sqrt(Decimal('1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5334 | Decimal('1') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5335 | >>> ExtendedContext.sqrt(Decimal('1.0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5336 | Decimal('1.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5337 | >>> ExtendedContext.sqrt(Decimal('1.00')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5338 | Decimal('1.0') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5339 | >>> ExtendedContext.sqrt(Decimal('7')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5340 | Decimal('2.64575131') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5341 | >>> ExtendedContext.sqrt(Decimal('10')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5342 | Decimal('3.16227766') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5343 | >>> ExtendedContext.sqrt(2) |
| 5344 | Decimal('1.41421356') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5345 | >>> ExtendedContext.prec |
Raymond Hettinger | 6ea4845 | 2004-07-03 12:26:21 +0000 | [diff] [blame] | 5346 | 9 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5347 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5348 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5349 | return a.sqrt(context=self) |
| 5350 | |
| 5351 | def subtract(self, a, b): |
Georg Brandl | f33d01d | 2005-08-22 19:35:18 +0000 | [diff] [blame] | 5352 | """Return the difference between the two operands. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5353 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5354 | >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.07')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5355 | Decimal('0.23') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5356 | >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('1.30')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5357 | Decimal('0.00') |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5358 | >>> ExtendedContext.subtract(Decimal('1.3'), Decimal('2.07')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5359 | Decimal('-0.77') |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5360 | >>> ExtendedContext.subtract(8, 5) |
| 5361 | Decimal('3') |
| 5362 | >>> ExtendedContext.subtract(Decimal(8), 5) |
| 5363 | Decimal('3') |
| 5364 | >>> ExtendedContext.subtract(8, Decimal(5)) |
| 5365 | Decimal('3') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5366 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5367 | a = _convert_other(a, raiseit=True) |
| 5368 | r = a.__sub__(b, context=self) |
| 5369 | if r is NotImplemented: |
| 5370 | raise TypeError("Unable to convert %s to Decimal" % b) |
| 5371 | else: |
| 5372 | return r |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5373 | |
| 5374 | def to_eng_string(self, a): |
| 5375 | """Converts a number to a string, using scientific notation. |
| 5376 | |
| 5377 | The operation is not affected by the context. |
| 5378 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5379 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5380 | return a.to_eng_string(context=self) |
| 5381 | |
| 5382 | def to_sci_string(self, a): |
| 5383 | """Converts a number to a string, using scientific notation. |
| 5384 | |
| 5385 | The operation is not affected by the context. |
| 5386 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5387 | a = _convert_other(a, raiseit=True) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5388 | return a.__str__(context=self) |
| 5389 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5390 | def to_integral_exact(self, a): |
| 5391 | """Rounds to an integer. |
| 5392 | |
| 5393 | When the operand has a negative exponent, the result is the same |
| 5394 | as using the quantize() operation using the given operand as the |
| 5395 | left-hand-operand, 1E+0 as the right-hand-operand, and the precision |
| 5396 | of the operand as the precision setting; Inexact and Rounded flags |
| 5397 | are allowed in this operation. The rounding mode is taken from the |
| 5398 | context. |
| 5399 | |
| 5400 | >>> ExtendedContext.to_integral_exact(Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5401 | Decimal('2') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5402 | >>> ExtendedContext.to_integral_exact(Decimal('100')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5403 | Decimal('100') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5404 | >>> ExtendedContext.to_integral_exact(Decimal('100.0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5405 | Decimal('100') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5406 | >>> ExtendedContext.to_integral_exact(Decimal('101.5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5407 | Decimal('102') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5408 | >>> ExtendedContext.to_integral_exact(Decimal('-101.5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5409 | Decimal('-102') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5410 | >>> ExtendedContext.to_integral_exact(Decimal('10E+5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5411 | Decimal('1.0E+6') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5412 | >>> ExtendedContext.to_integral_exact(Decimal('7.89E+77')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5413 | Decimal('7.89E+77') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5414 | >>> ExtendedContext.to_integral_exact(Decimal('-Inf')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5415 | Decimal('-Infinity') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5416 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5417 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5418 | return a.to_integral_exact(context=self) |
| 5419 | |
| 5420 | def to_integral_value(self, a): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5421 | """Rounds to an integer. |
| 5422 | |
| 5423 | When the operand has a negative exponent, the result is the same |
| 5424 | as using the quantize() operation using the given operand as the |
| 5425 | left-hand-operand, 1E+0 as the right-hand-operand, and the precision |
| 5426 | of the operand as the precision setting, except that no flags will |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 5427 | be set. The rounding mode is taken from the context. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5428 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5429 | >>> ExtendedContext.to_integral_value(Decimal('2.1')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5430 | Decimal('2') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5431 | >>> ExtendedContext.to_integral_value(Decimal('100')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5432 | Decimal('100') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5433 | >>> ExtendedContext.to_integral_value(Decimal('100.0')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5434 | Decimal('100') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5435 | >>> ExtendedContext.to_integral_value(Decimal('101.5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5436 | Decimal('102') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5437 | >>> ExtendedContext.to_integral_value(Decimal('-101.5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5438 | Decimal('-102') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5439 | >>> ExtendedContext.to_integral_value(Decimal('10E+5')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5440 | Decimal('1.0E+6') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5441 | >>> ExtendedContext.to_integral_value(Decimal('7.89E+77')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5442 | Decimal('7.89E+77') |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5443 | >>> ExtendedContext.to_integral_value(Decimal('-Inf')) |
Christian Heimes | 68f5fbe | 2008-02-14 08:27:37 +0000 | [diff] [blame] | 5444 | Decimal('-Infinity') |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5445 | """ |
Mark Dickinson | 84230a1 | 2010-02-18 14:49:50 +0000 | [diff] [blame] | 5446 | a = _convert_other(a, raiseit=True) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5447 | return a.to_integral_value(context=self) |
| 5448 | |
| 5449 | # the method name changed, but we provide also the old one, for compatibility |
| 5450 | to_integral = to_integral_value |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5451 | |
| 5452 | class _WorkRep(object): |
| 5453 | __slots__ = ('sign','int','exp') |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 5454 | # sign: 0 or 1 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5455 | # int: int |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5456 | # exp: None, int, or string |
| 5457 | |
| 5458 | def __init__(self, value=None): |
| 5459 | if value is None: |
| 5460 | self.sign = None |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5461 | self.int = 0 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5462 | self.exp = None |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 5463 | elif isinstance(value, Decimal): |
| 5464 | self.sign = value._sign |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5465 | self.int = int(value._int) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5466 | self.exp = value._exp |
Raymond Hettinger | 17931de | 2004-10-27 06:21:46 +0000 | [diff] [blame] | 5467 | else: |
| 5468 | # assert isinstance(value, tuple) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5469 | self.sign = value[0] |
| 5470 | self.int = value[1] |
| 5471 | self.exp = value[2] |
| 5472 | |
| 5473 | def __repr__(self): |
| 5474 | return "(%r, %r, %r)" % (self.sign, self.int, self.exp) |
| 5475 | |
| 5476 | __str__ = __repr__ |
| 5477 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5478 | |
| 5479 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 5480 | def _normalize(op1, op2, prec = 0): |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5481 | """Normalizes op1, op2 to have the same exp and length of coefficient. |
| 5482 | |
| 5483 | Done during addition. |
| 5484 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5485 | if op1.exp < op2.exp: |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5486 | tmp = op2 |
| 5487 | other = op1 |
| 5488 | else: |
| 5489 | tmp = op1 |
| 5490 | other = op2 |
| 5491 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5492 | # Let exp = min(tmp.exp - 1, tmp.adjusted() - precision - 1). |
| 5493 | # Then adding 10**exp to tmp has the same effect (after rounding) |
| 5494 | # as adding any positive quantity smaller than 10**exp; similarly |
| 5495 | # for subtraction. So if other is smaller than 10**exp we replace |
| 5496 | # it with 10**exp. This avoids tmp.exp - other.exp getting too large. |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 5497 | tmp_len = len(str(tmp.int)) |
| 5498 | other_len = len(str(other.int)) |
| 5499 | exp = tmp.exp + min(-1, tmp_len - prec - 2) |
| 5500 | if other_len + other.exp - 1 < exp: |
| 5501 | other.int = 1 |
| 5502 | other.exp = exp |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5503 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5504 | tmp.int *= 10 ** (tmp.exp - other.exp) |
| 5505 | tmp.exp = other.exp |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5506 | return op1, op2 |
| 5507 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5508 | ##### Integer arithmetic functions used by ln, log10, exp and __pow__ ##### |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5509 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5510 | # This function from Tim Peters was taken from here: |
| 5511 | # http://mail.python.org/pipermail/python-list/1999-July/007758.html |
| 5512 | # The correction being in the function definition is for speed, and |
| 5513 | # the whole function is not resolved with math.log because of avoiding |
| 5514 | # the use of floats. |
| 5515 | def _nbits(n, correction = { |
| 5516 | '0': 4, '1': 3, '2': 2, '3': 2, |
| 5517 | '4': 1, '5': 1, '6': 1, '7': 1, |
| 5518 | '8': 0, '9': 0, 'a': 0, 'b': 0, |
| 5519 | 'c': 0, 'd': 0, 'e': 0, 'f': 0}): |
| 5520 | """Number of bits in binary representation of the positive integer n, |
| 5521 | or 0 if n == 0. |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5522 | """ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5523 | if n < 0: |
| 5524 | raise ValueError("The argument to _nbits should be nonnegative.") |
| 5525 | hex_n = "%x" % n |
| 5526 | return 4*len(hex_n) - correction[hex_n[0]] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5527 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5528 | def _sqrt_nearest(n, a): |
| 5529 | """Closest integer to the square root of the positive integer n. a is |
| 5530 | an initial approximation to the square root. Any positive integer |
| 5531 | will do for a, but the closer a is to the square root of n the |
| 5532 | faster convergence will be. |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5533 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5534 | """ |
| 5535 | if n <= 0 or a <= 0: |
| 5536 | raise ValueError("Both arguments to _sqrt_nearest should be positive.") |
| 5537 | |
| 5538 | b=0 |
| 5539 | while a != b: |
| 5540 | b, a = a, a--n//a>>1 |
| 5541 | return a |
| 5542 | |
| 5543 | def _rshift_nearest(x, shift): |
| 5544 | """Given an integer x and a nonnegative integer shift, return closest |
| 5545 | integer to x / 2**shift; use round-to-even in case of a tie. |
| 5546 | |
| 5547 | """ |
| 5548 | b, q = 1 << shift, x >> shift |
| 5549 | return q + (2*(x & (b-1)) + (q&1) > b) |
| 5550 | |
| 5551 | def _div_nearest(a, b): |
| 5552 | """Closest integer to a/b, a and b positive integers; rounds to even |
| 5553 | in the case of a tie. |
| 5554 | |
| 5555 | """ |
| 5556 | q, r = divmod(a, b) |
| 5557 | return q + (2*r + (q&1) > b) |
| 5558 | |
| 5559 | def _ilog(x, M, L = 8): |
| 5560 | """Integer approximation to M*log(x/M), with absolute error boundable |
| 5561 | in terms only of x/M. |
| 5562 | |
| 5563 | Given positive integers x and M, return an integer approximation to |
| 5564 | M * log(x/M). For L = 8 and 0.1 <= x/M <= 10 the difference |
| 5565 | between the approximation and the exact result is at most 22. For |
| 5566 | L = 8 and 1.0 <= x/M <= 10.0 the difference is at most 15. In |
| 5567 | both cases these are upper bounds on the error; it will usually be |
| 5568 | much smaller.""" |
| 5569 | |
| 5570 | # The basic algorithm is the following: let log1p be the function |
| 5571 | # log1p(x) = log(1+x). Then log(x/M) = log1p((x-M)/M). We use |
| 5572 | # the reduction |
| 5573 | # |
| 5574 | # log1p(y) = 2*log1p(y/(1+sqrt(1+y))) |
| 5575 | # |
| 5576 | # repeatedly until the argument to log1p is small (< 2**-L in |
| 5577 | # absolute value). For small y we can use the Taylor series |
| 5578 | # expansion |
| 5579 | # |
| 5580 | # log1p(y) ~ y - y**2/2 + y**3/3 - ... - (-y)**T/T |
| 5581 | # |
| 5582 | # truncating at T such that y**T is small enough. The whole |
| 5583 | # computation is carried out in a form of fixed-point arithmetic, |
| 5584 | # with a real number z being represented by an integer |
| 5585 | # approximation to z*M. To avoid loss of precision, the y below |
| 5586 | # is actually an integer approximation to 2**R*y*M, where R is the |
| 5587 | # number of reductions performed so far. |
| 5588 | |
| 5589 | y = x-M |
| 5590 | # argument reduction; R = number of reductions performed |
| 5591 | R = 0 |
| 5592 | while (R <= L and abs(y) << L-R >= M or |
| 5593 | R > L and abs(y) >> R-L >= M): |
| 5594 | y = _div_nearest((M*y) << 1, |
| 5595 | M + _sqrt_nearest(M*(M+_rshift_nearest(y, R)), M)) |
| 5596 | R += 1 |
| 5597 | |
| 5598 | # Taylor series with T terms |
| 5599 | T = -int(-10*len(str(M))//(3*L)) |
| 5600 | yshift = _rshift_nearest(y, R) |
| 5601 | w = _div_nearest(M, T) |
| 5602 | for k in range(T-1, 0, -1): |
| 5603 | w = _div_nearest(M, k) - _div_nearest(yshift*w, M) |
| 5604 | |
| 5605 | return _div_nearest(w*y, M) |
| 5606 | |
| 5607 | def _dlog10(c, e, p): |
| 5608 | """Given integers c, e and p with c > 0, p >= 0, compute an integer |
| 5609 | approximation to 10**p * log10(c*10**e), with an absolute error of |
| 5610 | at most 1. Assumes that c*10**e is not exactly 1.""" |
| 5611 | |
| 5612 | # increase precision by 2; compensate for this by dividing |
| 5613 | # final result by 100 |
| 5614 | p += 2 |
| 5615 | |
| 5616 | # write c*10**e as d*10**f with either: |
| 5617 | # f >= 0 and 1 <= d <= 10, or |
| 5618 | # f <= 0 and 0.1 <= d <= 1. |
| 5619 | # Thus for c*10**e close to 1, f = 0 |
| 5620 | l = len(str(c)) |
| 5621 | f = e+l - (e+l >= 1) |
| 5622 | |
| 5623 | if p > 0: |
| 5624 | M = 10**p |
| 5625 | k = e+p-f |
| 5626 | if k >= 0: |
| 5627 | c *= 10**k |
| 5628 | else: |
| 5629 | c = _div_nearest(c, 10**-k) |
| 5630 | |
| 5631 | log_d = _ilog(c, M) # error < 5 + 22 = 27 |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5632 | log_10 = _log10_digits(p) # error < 1 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5633 | log_d = _div_nearest(log_d*M, log_10) |
| 5634 | log_tenpower = f*M # exact |
| 5635 | else: |
| 5636 | log_d = 0 # error < 2.31 |
Neal Norwitz | 2f99b24 | 2008-08-24 05:48:10 +0000 | [diff] [blame] | 5637 | log_tenpower = _div_nearest(f, 10**-p) # error < 0.5 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5638 | |
| 5639 | return _div_nearest(log_tenpower+log_d, 100) |
| 5640 | |
| 5641 | def _dlog(c, e, p): |
| 5642 | """Given integers c, e and p with c > 0, compute an integer |
| 5643 | approximation to 10**p * log(c*10**e), with an absolute error of |
| 5644 | at most 1. Assumes that c*10**e is not exactly 1.""" |
| 5645 | |
| 5646 | # Increase precision by 2. The precision increase is compensated |
| 5647 | # for at the end with a division by 100. |
| 5648 | p += 2 |
| 5649 | |
| 5650 | # rewrite c*10**e as d*10**f with either f >= 0 and 1 <= d <= 10, |
| 5651 | # or f <= 0 and 0.1 <= d <= 1. Then we can compute 10**p * log(c*10**e) |
| 5652 | # as 10**p * log(d) + 10**p*f * log(10). |
| 5653 | l = len(str(c)) |
| 5654 | f = e+l - (e+l >= 1) |
| 5655 | |
| 5656 | # compute approximation to 10**p*log(d), with error < 27 |
| 5657 | if p > 0: |
| 5658 | k = e+p-f |
| 5659 | if k >= 0: |
| 5660 | c *= 10**k |
| 5661 | else: |
| 5662 | c = _div_nearest(c, 10**-k) # error of <= 0.5 in c |
| 5663 | |
| 5664 | # _ilog magnifies existing error in c by a factor of at most 10 |
| 5665 | log_d = _ilog(c, 10**p) # error < 5 + 22 = 27 |
| 5666 | else: |
| 5667 | # p <= 0: just approximate the whole thing by 0; error < 2.31 |
| 5668 | log_d = 0 |
| 5669 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5670 | # compute approximation to f*10**p*log(10), with error < 11. |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5671 | if f: |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5672 | extra = len(str(abs(f)))-1 |
| 5673 | if p + extra >= 0: |
| 5674 | # error in f * _log10_digits(p+extra) < |f| * 1 = |f| |
| 5675 | # after division, error < |f|/10**extra + 0.5 < 10 + 0.5 < 11 |
| 5676 | f_log_ten = _div_nearest(f*_log10_digits(p+extra), 10**extra) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5677 | else: |
| 5678 | f_log_ten = 0 |
| 5679 | else: |
| 5680 | f_log_ten = 0 |
| 5681 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5682 | # error in sum < 11+27 = 38; error after division < 0.38 + 0.5 < 1 |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5683 | return _div_nearest(f_log_ten + log_d, 100) |
| 5684 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5685 | class _Log10Memoize(object): |
| 5686 | """Class to compute, store, and allow retrieval of, digits of the |
| 5687 | constant log(10) = 2.302585.... This constant is needed by |
| 5688 | Decimal.ln, Decimal.log10, Decimal.exp and Decimal.__pow__.""" |
| 5689 | def __init__(self): |
| 5690 | self.digits = "23025850929940456840179914546843642076011014886" |
| 5691 | |
| 5692 | def getdigits(self, p): |
| 5693 | """Given an integer p >= 0, return floor(10**p)*log(10). |
| 5694 | |
| 5695 | For example, self.getdigits(3) returns 2302. |
| 5696 | """ |
| 5697 | # digits are stored as a string, for quick conversion to |
| 5698 | # integer in the case that we've already computed enough |
| 5699 | # digits; the stored digits should always be correct |
| 5700 | # (truncated, not rounded to nearest). |
| 5701 | if p < 0: |
| 5702 | raise ValueError("p should be nonnegative") |
| 5703 | |
| 5704 | if p >= len(self.digits): |
| 5705 | # compute p+3, p+6, p+9, ... digits; continue until at |
| 5706 | # least one of the extra digits is nonzero |
| 5707 | extra = 3 |
| 5708 | while True: |
| 5709 | # compute p+extra digits, correct to within 1ulp |
| 5710 | M = 10**(p+extra+2) |
| 5711 | digits = str(_div_nearest(_ilog(10*M, M), 100)) |
| 5712 | if digits[-extra:] != '0'*extra: |
| 5713 | break |
| 5714 | extra += 3 |
| 5715 | # keep all reliable digits so far; remove trailing zeros |
| 5716 | # and next nonzero digit |
| 5717 | self.digits = digits.rstrip('0')[:-1] |
| 5718 | return int(self.digits[:p+1]) |
| 5719 | |
| 5720 | _log10_digits = _Log10Memoize().getdigits |
| 5721 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5722 | def _iexp(x, M, L=8): |
| 5723 | """Given integers x and M, M > 0, such that x/M is small in absolute |
| 5724 | value, compute an integer approximation to M*exp(x/M). For 0 <= |
| 5725 | x/M <= 2.4, the absolute error in the result is bounded by 60 (and |
| 5726 | is usually much smaller).""" |
| 5727 | |
| 5728 | # Algorithm: to compute exp(z) for a real number z, first divide z |
| 5729 | # by a suitable power R of 2 so that |z/2**R| < 2**-L. Then |
| 5730 | # compute expm1(z/2**R) = exp(z/2**R) - 1 using the usual Taylor |
| 5731 | # series |
| 5732 | # |
| 5733 | # expm1(x) = x + x**2/2! + x**3/3! + ... |
| 5734 | # |
| 5735 | # Now use the identity |
| 5736 | # |
| 5737 | # expm1(2x) = expm1(x)*(expm1(x)+2) |
| 5738 | # |
| 5739 | # R times to compute the sequence expm1(z/2**R), |
| 5740 | # expm1(z/2**(R-1)), ... , exp(z/2), exp(z). |
| 5741 | |
| 5742 | # Find R such that x/2**R/M <= 2**-L |
| 5743 | R = _nbits((x<<L)//M) |
| 5744 | |
| 5745 | # Taylor series. (2**L)**T > M |
| 5746 | T = -int(-10*len(str(M))//(3*L)) |
| 5747 | y = _div_nearest(x, T) |
| 5748 | Mshift = M<<R |
| 5749 | for i in range(T-1, 0, -1): |
| 5750 | y = _div_nearest(x*(Mshift + y), Mshift * i) |
| 5751 | |
| 5752 | # Expansion |
| 5753 | for k in range(R-1, -1, -1): |
| 5754 | Mshift = M<<(k+2) |
| 5755 | y = _div_nearest(y*(y+Mshift), Mshift) |
| 5756 | |
| 5757 | return M+y |
| 5758 | |
| 5759 | def _dexp(c, e, p): |
| 5760 | """Compute an approximation to exp(c*10**e), with p decimal places of |
| 5761 | precision. |
| 5762 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5763 | Returns integers d, f such that: |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5764 | |
| 5765 | 10**(p-1) <= d <= 10**p, and |
| 5766 | (d-1)*10**f < exp(c*10**e) < (d+1)*10**f |
| 5767 | |
| 5768 | In other words, d*10**f is an approximation to exp(c*10**e) with p |
| 5769 | digits of precision, and with an error in d of at most 1. This is |
| 5770 | almost, but not quite, the same as the error being < 1ulp: when d |
| 5771 | = 10**(p-1) the error could be up to 10 ulp.""" |
| 5772 | |
| 5773 | # we'll call iexp with M = 10**(p+2), giving p+3 digits of precision |
| 5774 | p += 2 |
| 5775 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5776 | # compute log(10) with extra precision = adjusted exponent of c*10**e |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5777 | extra = max(0, e + len(str(c)) - 1) |
| 5778 | q = p + extra |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5779 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5780 | # compute quotient c*10**e/(log(10)) = c*10**(e+q)/(log(10)*10**q), |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5781 | # rounding down |
| 5782 | shift = e+q |
| 5783 | if shift >= 0: |
| 5784 | cshift = c*10**shift |
| 5785 | else: |
| 5786 | cshift = c//10**-shift |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5787 | quot, rem = divmod(cshift, _log10_digits(q)) |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5788 | |
| 5789 | # reduce remainder back to original precision |
| 5790 | rem = _div_nearest(rem, 10**extra) |
| 5791 | |
| 5792 | # error in result of _iexp < 120; error after division < 0.62 |
| 5793 | return _div_nearest(_iexp(rem, 10**p), 1000), quot - p + 3 |
| 5794 | |
| 5795 | def _dpower(xc, xe, yc, ye, p): |
| 5796 | """Given integers xc, xe, yc and ye representing Decimals x = xc*10**xe and |
| 5797 | y = yc*10**ye, compute x**y. Returns a pair of integers (c, e) such that: |
| 5798 | |
| 5799 | 10**(p-1) <= c <= 10**p, and |
| 5800 | (c-1)*10**e < x**y < (c+1)*10**e |
| 5801 | |
| 5802 | in other words, c*10**e is an approximation to x**y with p digits |
| 5803 | of precision, and with an error in c of at most 1. (This is |
| 5804 | almost, but not quite, the same as the error being < 1ulp: when c |
| 5805 | == 10**(p-1) we can only guarantee error < 10ulp.) |
| 5806 | |
| 5807 | We assume that: x is positive and not equal to 1, and y is nonzero. |
| 5808 | """ |
| 5809 | |
| 5810 | # Find b such that 10**(b-1) <= |y| <= 10**b |
| 5811 | b = len(str(abs(yc))) + ye |
| 5812 | |
| 5813 | # log(x) = lxc*10**(-p-b-1), to p+b+1 places after the decimal point |
| 5814 | lxc = _dlog(xc, xe, p+b+1) |
| 5815 | |
| 5816 | # compute product y*log(x) = yc*lxc*10**(-p-b-1+ye) = pc*10**(-p-1) |
| 5817 | shift = ye-b |
| 5818 | if shift >= 0: |
| 5819 | pc = lxc*yc*10**shift |
| 5820 | else: |
| 5821 | pc = _div_nearest(lxc*yc, 10**-shift) |
| 5822 | |
| 5823 | if pc == 0: |
| 5824 | # we prefer a result that isn't exactly 1; this makes it |
| 5825 | # easier to compute a correctly rounded result in __pow__ |
| 5826 | if ((len(str(xc)) + xe >= 1) == (yc > 0)): # if x**y > 1: |
| 5827 | coeff, exp = 10**(p-1)+1, 1-p |
| 5828 | else: |
| 5829 | coeff, exp = 10**p-1, -p |
| 5830 | else: |
| 5831 | coeff, exp = _dexp(pc, -(p+1), p+1) |
| 5832 | coeff = _div_nearest(coeff, 10) |
| 5833 | exp += 1 |
| 5834 | |
| 5835 | return coeff, exp |
| 5836 | |
| 5837 | def _log10_lb(c, correction = { |
| 5838 | '1': 100, '2': 70, '3': 53, '4': 40, '5': 31, |
| 5839 | '6': 23, '7': 16, '8': 10, '9': 5}): |
| 5840 | """Compute a lower bound for 100*log10(c) for a positive integer c.""" |
| 5841 | if c <= 0: |
| 5842 | raise ValueError("The argument to _log10_lb should be nonnegative.") |
| 5843 | str_c = str(c) |
| 5844 | return 100*len(str_c) - correction[str_c[0]] |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5845 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 5846 | ##### Helper Functions #################################################### |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5847 | |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 5848 | def _convert_other(other, raiseit=False, allow_float=False): |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5849 | """Convert other to Decimal. |
| 5850 | |
| 5851 | Verifies that it's ok to use in an implicit construction. |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 5852 | If allow_float is true, allow conversion from float; this |
| 5853 | is used in the comparison methods (__eq__ and friends). |
| 5854 | |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5855 | """ |
| 5856 | if isinstance(other, Decimal): |
| 5857 | return other |
Walter Dörwald | aa97f04 | 2007-05-03 21:05:51 +0000 | [diff] [blame] | 5858 | if isinstance(other, int): |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5859 | return Decimal(other) |
Mark Dickinson | ac256ab | 2010-04-03 11:08:14 +0000 | [diff] [blame] | 5860 | if allow_float and isinstance(other, float): |
| 5861 | return Decimal.from_float(other) |
| 5862 | |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 5863 | if raiseit: |
| 5864 | raise TypeError("Unable to convert %s to Decimal" % other) |
Raymond Hettinger | 267b868 | 2005-03-27 10:47:39 +0000 | [diff] [blame] | 5865 | return NotImplemented |
Raymond Hettinger | 636a6b1 | 2004-09-19 01:54:09 +0000 | [diff] [blame] | 5866 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 5867 | ##### Setup Specific Contexts ############################################ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5868 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5869 | # The default context prototype used by Context() |
Raymond Hettinger | fed5296 | 2004-07-14 15:41:57 +0000 | [diff] [blame] | 5870 | # Is mutable, so that new contexts can have different default values |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5871 | |
| 5872 | DefaultContext = Context( |
Raymond Hettinger | 6ea4845 | 2004-07-03 12:26:21 +0000 | [diff] [blame] | 5873 | prec=28, rounding=ROUND_HALF_EVEN, |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 5874 | traps=[DivisionByZero, Overflow, InvalidOperation], |
| 5875 | flags=[], |
Raymond Hettinger | 99148e7 | 2004-07-14 19:56:56 +0000 | [diff] [blame] | 5876 | Emax=999999999, |
| 5877 | Emin=-999999999, |
Raymond Hettinger | e0f1581 | 2004-07-05 05:36:39 +0000 | [diff] [blame] | 5878 | capitals=1 |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5879 | ) |
| 5880 | |
| 5881 | # Pre-made alternate contexts offered by the specification |
| 5882 | # Don't change these; the user should be able to select these |
| 5883 | # contexts and be able to reproduce results from other implementations |
| 5884 | # of the spec. |
| 5885 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5886 | BasicContext = Context( |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5887 | prec=9, rounding=ROUND_HALF_UP, |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 5888 | traps=[DivisionByZero, Overflow, InvalidOperation, Clamped, Underflow], |
| 5889 | flags=[], |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5890 | ) |
| 5891 | |
Raymond Hettinger | 9ec3e3b | 2004-07-03 13:48:56 +0000 | [diff] [blame] | 5892 | ExtendedContext = Context( |
Raymond Hettinger | 6ea4845 | 2004-07-03 12:26:21 +0000 | [diff] [blame] | 5893 | prec=9, rounding=ROUND_HALF_EVEN, |
Raymond Hettinger | bf44069 | 2004-07-10 14:14:37 +0000 | [diff] [blame] | 5894 | traps=[], |
| 5895 | flags=[], |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 5896 | ) |
| 5897 | |
| 5898 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5899 | ##### crud for parsing strings ############################################# |
Christian Heimes | 23daade0 | 2008-02-25 12:39:23 +0000 | [diff] [blame] | 5900 | # |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5901 | # Regular expression used for parsing numeric strings. Additional |
| 5902 | # comments: |
| 5903 | # |
| 5904 | # 1. Uncomment the two '\s*' lines to allow leading and/or trailing |
| 5905 | # whitespace. But note that the specification disallows whitespace in |
| 5906 | # a numeric string. |
| 5907 | # |
| 5908 | # 2. For finite numbers (not infinities and NaNs) the body of the |
| 5909 | # number between the optional sign and the optional exponent must have |
| 5910 | # at least one decimal digit, possibly after the decimal point. The |
Mark Dickinson | 345adc4 | 2009-08-02 10:14:23 +0000 | [diff] [blame] | 5911 | # lookahead expression '(?=\d|\.\d)' checks this. |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5912 | |
| 5913 | import re |
Benjamin Peterson | 4118174 | 2008-07-02 20:22:54 +0000 | [diff] [blame] | 5914 | _parser = re.compile(r""" # A numeric string consists of: |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5915 | # \s* |
Benjamin Peterson | 4118174 | 2008-07-02 20:22:54 +0000 | [diff] [blame] | 5916 | (?P<sign>[-+])? # an optional sign, followed by either... |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5917 | ( |
Mark Dickinson | 345adc4 | 2009-08-02 10:14:23 +0000 | [diff] [blame] | 5918 | (?=\d|\.\d) # ...a number (with at least one digit) |
| 5919 | (?P<int>\d*) # having a (possibly empty) integer part |
| 5920 | (\.(?P<frac>\d*))? # followed by an optional fractional part |
| 5921 | (E(?P<exp>[-+]?\d+))? # followed by an optional exponent, or... |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5922 | | |
Benjamin Peterson | 4118174 | 2008-07-02 20:22:54 +0000 | [diff] [blame] | 5923 | Inf(inity)? # ...an infinity, or... |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5924 | | |
Benjamin Peterson | 4118174 | 2008-07-02 20:22:54 +0000 | [diff] [blame] | 5925 | (?P<signal>s)? # ...an (optionally signaling) |
| 5926 | NaN # NaN |
Mark Dickinson | 345adc4 | 2009-08-02 10:14:23 +0000 | [diff] [blame] | 5927 | (?P<diag>\d*) # with (possibly empty) diagnostic info. |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5928 | ) |
| 5929 | # \s* |
Christian Heimes | a62da1d | 2008-01-12 19:39:10 +0000 | [diff] [blame] | 5930 | \Z |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5931 | """, re.VERBOSE | re.IGNORECASE).match |
| 5932 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 5933 | _all_zeros = re.compile('0*$').match |
| 5934 | _exact_half = re.compile('50*$').match |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 5935 | |
| 5936 | ##### PEP3101 support functions ############################################## |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 5937 | # The functions in this section have little to do with the Decimal |
| 5938 | # class, and could potentially be reused or adapted for other pure |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 5939 | # Python numeric classes that want to implement __format__ |
| 5940 | # |
| 5941 | # A format specifier for Decimal looks like: |
| 5942 | # |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 5943 | # [[fill]align][sign][0][minimumwidth][,][.precision][type] |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 5944 | |
| 5945 | _parse_format_specifier_regex = re.compile(r"""\A |
| 5946 | (?: |
| 5947 | (?P<fill>.)? |
| 5948 | (?P<align>[<>=^]) |
| 5949 | )? |
| 5950 | (?P<sign>[-+ ])? |
| 5951 | (?P<zeropad>0)? |
| 5952 | (?P<minimumwidth>(?!0)\d+)? |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 5953 | (?P<thousands_sep>,)? |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 5954 | (?:\.(?P<precision>0|(?!0)\d+))? |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 5955 | (?P<type>[eEfFgGn%])? |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 5956 | \Z |
| 5957 | """, re.VERBOSE) |
| 5958 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 5959 | del re |
| 5960 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 5961 | # The locale module is only needed for the 'n' format specifier. The |
| 5962 | # rest of the PEP 3101 code functions quite happily without it, so we |
| 5963 | # don't care too much if locale isn't present. |
| 5964 | try: |
| 5965 | import locale as _locale |
| 5966 | except ImportError: |
| 5967 | pass |
| 5968 | |
| 5969 | def _parse_format_specifier(format_spec, _localeconv=None): |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 5970 | """Parse and validate a format specifier. |
| 5971 | |
| 5972 | Turns a standard numeric format specifier into a dict, with the |
| 5973 | following entries: |
| 5974 | |
| 5975 | fill: fill character to pad field to minimum width |
| 5976 | align: alignment type, either '<', '>', '=' or '^' |
| 5977 | sign: either '+', '-' or ' ' |
| 5978 | minimumwidth: nonnegative integer giving minimum width |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 5979 | zeropad: boolean, indicating whether to pad with zeros |
| 5980 | thousands_sep: string to use as thousands separator, or '' |
| 5981 | grouping: grouping for thousands separators, in format |
| 5982 | used by localeconv |
| 5983 | decimal_point: string to use for decimal point |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 5984 | precision: nonnegative integer giving precision, or None |
| 5985 | type: one of the characters 'eEfFgG%', or None |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 5986 | |
| 5987 | """ |
| 5988 | m = _parse_format_specifier_regex.match(format_spec) |
| 5989 | if m is None: |
| 5990 | raise ValueError("Invalid format specifier: " + format_spec) |
| 5991 | |
| 5992 | # get the dictionary |
| 5993 | format_dict = m.groupdict() |
| 5994 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 5995 | # zeropad; defaults for fill and alignment. If zero padding |
| 5996 | # is requested, the fill and align fields should be absent. |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 5997 | fill = format_dict['fill'] |
| 5998 | align = format_dict['align'] |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 5999 | format_dict['zeropad'] = (format_dict['zeropad'] is not None) |
| 6000 | if format_dict['zeropad']: |
| 6001 | if fill is not None: |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6002 | raise ValueError("Fill character conflicts with '0'" |
| 6003 | " in format specifier: " + format_spec) |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6004 | if align is not None: |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6005 | raise ValueError("Alignment conflicts with '0' in " |
| 6006 | "format specifier: " + format_spec) |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6007 | format_dict['fill'] = fill or ' ' |
Mark Dickinson | 46ab5d0 | 2009-09-08 20:22:46 +0000 | [diff] [blame] | 6008 | # PEP 3101 originally specified that the default alignment should |
| 6009 | # be left; it was later agreed that right-aligned makes more sense |
| 6010 | # for numeric types. See http://bugs.python.org/issue6857. |
| 6011 | format_dict['align'] = align or '>' |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6012 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6013 | # default sign handling: '-' for negative, '' for positive |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6014 | if format_dict['sign'] is None: |
| 6015 | format_dict['sign'] = '-' |
| 6016 | |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6017 | # minimumwidth defaults to 0; precision remains None if not given |
| 6018 | format_dict['minimumwidth'] = int(format_dict['minimumwidth'] or '0') |
| 6019 | if format_dict['precision'] is not None: |
| 6020 | format_dict['precision'] = int(format_dict['precision']) |
| 6021 | |
| 6022 | # if format type is 'g' or 'G' then a precision of 0 makes little |
| 6023 | # sense; convert it to 1. Same if format type is unspecified. |
| 6024 | if format_dict['precision'] == 0: |
Mark Dickinson | 7718d2b | 2009-09-07 16:21:56 +0000 | [diff] [blame] | 6025 | if format_dict['type'] is None or format_dict['type'] in 'gG': |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6026 | format_dict['precision'] = 1 |
| 6027 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6028 | # determine thousands separator, grouping, and decimal separator, and |
| 6029 | # add appropriate entries to format_dict |
| 6030 | if format_dict['type'] == 'n': |
| 6031 | # apart from separators, 'n' behaves just like 'g' |
| 6032 | format_dict['type'] = 'g' |
| 6033 | if _localeconv is None: |
| 6034 | _localeconv = _locale.localeconv() |
| 6035 | if format_dict['thousands_sep'] is not None: |
| 6036 | raise ValueError("Explicit thousands separator conflicts with " |
| 6037 | "'n' type in format specifier: " + format_spec) |
| 6038 | format_dict['thousands_sep'] = _localeconv['thousands_sep'] |
| 6039 | format_dict['grouping'] = _localeconv['grouping'] |
| 6040 | format_dict['decimal_point'] = _localeconv['decimal_point'] |
| 6041 | else: |
| 6042 | if format_dict['thousands_sep'] is None: |
| 6043 | format_dict['thousands_sep'] = '' |
| 6044 | format_dict['grouping'] = [3, 0] |
| 6045 | format_dict['decimal_point'] = '.' |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6046 | |
| 6047 | return format_dict |
| 6048 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6049 | def _format_align(sign, body, spec): |
| 6050 | """Given an unpadded, non-aligned numeric string 'body' and sign |
| 6051 | string 'sign', add padding and aligment conforming to the given |
| 6052 | format specifier dictionary 'spec' (as produced by |
| 6053 | parse_format_specifier). |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6054 | |
| 6055 | """ |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6056 | # how much extra space do we have to play with? |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6057 | minimumwidth = spec['minimumwidth'] |
| 6058 | fill = spec['fill'] |
| 6059 | padding = fill*(minimumwidth - len(sign) - len(body)) |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6060 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6061 | align = spec['align'] |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6062 | if align == '<': |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6063 | result = sign + body + padding |
Mark Dickinson | ad41634 | 2009-03-17 18:10:15 +0000 | [diff] [blame] | 6064 | elif align == '>': |
| 6065 | result = padding + sign + body |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6066 | elif align == '=': |
| 6067 | result = sign + padding + body |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6068 | elif align == '^': |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6069 | half = len(padding)//2 |
| 6070 | result = padding[:half] + sign + body + padding[half:] |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6071 | else: |
| 6072 | raise ValueError('Unrecognised alignment field') |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6073 | |
Christian Heimes | f16baeb | 2008-02-29 14:57:44 +0000 | [diff] [blame] | 6074 | return result |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 6075 | |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6076 | def _group_lengths(grouping): |
| 6077 | """Convert a localeconv-style grouping into a (possibly infinite) |
| 6078 | iterable of integers representing group lengths. |
| 6079 | |
| 6080 | """ |
| 6081 | # The result from localeconv()['grouping'], and the input to this |
| 6082 | # function, should be a list of integers in one of the |
| 6083 | # following three forms: |
| 6084 | # |
| 6085 | # (1) an empty list, or |
| 6086 | # (2) nonempty list of positive integers + [0] |
| 6087 | # (3) list of positive integers + [locale.CHAR_MAX], or |
| 6088 | |
| 6089 | from itertools import chain, repeat |
| 6090 | if not grouping: |
| 6091 | return [] |
| 6092 | elif grouping[-1] == 0 and len(grouping) >= 2: |
| 6093 | return chain(grouping[:-1], repeat(grouping[-2])) |
| 6094 | elif grouping[-1] == _locale.CHAR_MAX: |
| 6095 | return grouping[:-1] |
| 6096 | else: |
| 6097 | raise ValueError('unrecognised format for grouping') |
| 6098 | |
| 6099 | def _insert_thousands_sep(digits, spec, min_width=1): |
| 6100 | """Insert thousands separators into a digit string. |
| 6101 | |
| 6102 | spec is a dictionary whose keys should include 'thousands_sep' and |
| 6103 | 'grouping'; typically it's the result of parsing the format |
| 6104 | specifier using _parse_format_specifier. |
| 6105 | |
| 6106 | The min_width keyword argument gives the minimum length of the |
| 6107 | result, which will be padded on the left with zeros if necessary. |
| 6108 | |
| 6109 | If necessary, the zero padding adds an extra '0' on the left to |
| 6110 | avoid a leading thousands separator. For example, inserting |
| 6111 | commas every three digits in '123456', with min_width=8, gives |
| 6112 | '0,123,456', even though that has length 9. |
| 6113 | |
| 6114 | """ |
| 6115 | |
| 6116 | sep = spec['thousands_sep'] |
| 6117 | grouping = spec['grouping'] |
| 6118 | |
| 6119 | groups = [] |
| 6120 | for l in _group_lengths(grouping): |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6121 | if l <= 0: |
| 6122 | raise ValueError("group length should be positive") |
| 6123 | # max(..., 1) forces at least 1 digit to the left of a separator |
| 6124 | l = min(max(len(digits), min_width, 1), l) |
| 6125 | groups.append('0'*(l - len(digits)) + digits[-l:]) |
| 6126 | digits = digits[:-l] |
| 6127 | min_width -= l |
| 6128 | if not digits and min_width <= 0: |
| 6129 | break |
Mark Dickinson | 7303b59 | 2009-03-18 08:25:36 +0000 | [diff] [blame] | 6130 | min_width -= len(sep) |
Mark Dickinson | 79f5203 | 2009-03-17 23:12:51 +0000 | [diff] [blame] | 6131 | else: |
| 6132 | l = max(len(digits), min_width, 1) |
| 6133 | groups.append('0'*(l - len(digits)) + digits[-l:]) |
| 6134 | return sep.join(reversed(groups)) |
| 6135 | |
| 6136 | def _format_sign(is_negative, spec): |
| 6137 | """Determine sign character.""" |
| 6138 | |
| 6139 | if is_negative: |
| 6140 | return '-' |
| 6141 | elif spec['sign'] in ' +': |
| 6142 | return spec['sign'] |
| 6143 | else: |
| 6144 | return '' |
| 6145 | |
| 6146 | def _format_number(is_negative, intpart, fracpart, exp, spec): |
| 6147 | """Format a number, given the following data: |
| 6148 | |
| 6149 | is_negative: true if the number is negative, else false |
| 6150 | intpart: string of digits that must appear before the decimal point |
| 6151 | fracpart: string of digits that must come after the point |
| 6152 | exp: exponent, as an integer |
| 6153 | spec: dictionary resulting from parsing the format specifier |
| 6154 | |
| 6155 | This function uses the information in spec to: |
| 6156 | insert separators (decimal separator and thousands separators) |
| 6157 | format the sign |
| 6158 | format the exponent |
| 6159 | add trailing '%' for the '%' type |
| 6160 | zero-pad if necessary |
| 6161 | fill and align if necessary |
| 6162 | """ |
| 6163 | |
| 6164 | sign = _format_sign(is_negative, spec) |
| 6165 | |
| 6166 | if fracpart: |
| 6167 | fracpart = spec['decimal_point'] + fracpart |
| 6168 | |
| 6169 | if exp != 0 or spec['type'] in 'eE': |
| 6170 | echar = {'E': 'E', 'e': 'e', 'G': 'E', 'g': 'e'}[spec['type']] |
| 6171 | fracpart += "{0}{1:+}".format(echar, exp) |
| 6172 | if spec['type'] == '%': |
| 6173 | fracpart += '%' |
| 6174 | |
| 6175 | if spec['zeropad']: |
| 6176 | min_width = spec['minimumwidth'] - len(fracpart) - len(sign) |
| 6177 | else: |
| 6178 | min_width = 0 |
| 6179 | intpart = _insert_thousands_sep(intpart, spec, min_width) |
| 6180 | |
| 6181 | return _format_align(sign, intpart+fracpart, spec) |
| 6182 | |
| 6183 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 6184 | ##### Useful Constants (internal use only) ################################ |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6185 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 6186 | # Reusable defaults |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 6187 | _Infinity = Decimal('Inf') |
| 6188 | _NegativeInfinity = Decimal('-Inf') |
Mark Dickinson | f923641 | 2009-01-02 23:23:21 +0000 | [diff] [blame] | 6189 | _NaN = Decimal('NaN') |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 6190 | _Zero = Decimal(0) |
| 6191 | _One = Decimal(1) |
| 6192 | _NegativeOne = Decimal(-1) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6193 | |
Mark Dickinson | 627cf6a | 2009-01-03 12:11:47 +0000 | [diff] [blame] | 6194 | # _SignedInfinity[sign] is infinity w/ that sign |
| 6195 | _SignedInfinity = (_Infinity, _NegativeInfinity) |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6196 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6197 | |
Raymond Hettinger | 7c85fa4 | 2004-07-01 11:01:35 +0000 | [diff] [blame] | 6198 | |
| 6199 | if __name__ == '__main__': |
| 6200 | import doctest, sys |
| 6201 | doctest.testmod(sys.modules[__name__]) |