Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 1 | # Copyright 2007 Google, Inc. All Rights Reserved. |
| 2 | # Licensed to PSF under a Contributor Agreement. |
| 3 | |
| 4 | """Abstract Base Classes (ABCs) for numbers, according to PEP 3141. |
| 5 | |
| 6 | TODO: Fill out more detailed documentation on the operators.""" |
| 7 | |
Jeffrey Yasskin | d7b0033 | 2008-01-15 07:46:24 +0000 | [diff] [blame] | 8 | from __future__ import division |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 9 | from abc import ABCMeta, abstractmethod, abstractproperty |
| 10 | |
Raymond Hettinger | 6b46762 | 2008-03-15 20:02:04 +0000 | [diff] [blame] | 11 | __all__ = ["Number", "Complex", "Real", "Rational", "Integral"] |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 12 | |
| 13 | class Number(object): |
| 14 | """All numbers inherit from this class. |
| 15 | |
| 16 | If you just want to check if an argument x is a number, without |
| 17 | caring what kind, use isinstance(x, Number). |
| 18 | """ |
| 19 | __metaclass__ = ABCMeta |
| 20 | |
| 21 | |
Raymond Hettinger | ddb164a | 2008-02-14 01:08:02 +0000 | [diff] [blame] | 22 | ## Notes on Decimal |
| 23 | ## ---------------- |
| 24 | ## Decimal has all of the methods specified by the Real abc, but it should |
| 25 | ## not be registered as a Real because decimals do not interoperate with |
Raymond Hettinger | 6b46762 | 2008-03-15 20:02:04 +0000 | [diff] [blame] | 26 | ## binary floats (i.e. Decimal('3.14') + 2.71828 is undefined). But, |
| 27 | ## abstract reals are expected to interoperate (i.e. R1 + R2 should be |
| 28 | ## expected to work if R1 and R2 are both Reals). |
Raymond Hettinger | 48688d8 | 2008-02-11 22:53:01 +0000 | [diff] [blame] | 29 | |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 30 | class Complex(Number): |
| 31 | """Complex defines the operations that work on the builtin complex type. |
| 32 | |
| 33 | In short, those are: a conversion to complex, .real, .imag, +, -, |
| 34 | *, /, abs(), .conjugate, ==, and !=. |
| 35 | |
| 36 | If it is given heterogenous arguments, and doesn't have special |
| 37 | knowledge about them, it should fall back to the builtin complex |
| 38 | type as described below. |
| 39 | """ |
| 40 | |
| 41 | @abstractmethod |
| 42 | def __complex__(self): |
| 43 | """Return a builtin complex instance. Called for complex(self).""" |
| 44 | |
Jeffrey Yasskin | d7b0033 | 2008-01-15 07:46:24 +0000 | [diff] [blame] | 45 | # Will be __bool__ in 3.0. |
| 46 | def __nonzero__(self): |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 47 | """True if self != 0. Called for bool(self).""" |
| 48 | return self != 0 |
| 49 | |
| 50 | @abstractproperty |
| 51 | def real(self): |
| 52 | """Retrieve the real component of this number. |
| 53 | |
| 54 | This should subclass Real. |
| 55 | """ |
| 56 | raise NotImplementedError |
| 57 | |
| 58 | @abstractproperty |
| 59 | def imag(self): |
| 60 | """Retrieve the real component of this number. |
| 61 | |
| 62 | This should subclass Real. |
| 63 | """ |
| 64 | raise NotImplementedError |
| 65 | |
| 66 | @abstractmethod |
| 67 | def __add__(self, other): |
| 68 | """self + other""" |
| 69 | raise NotImplementedError |
| 70 | |
| 71 | @abstractmethod |
| 72 | def __radd__(self, other): |
| 73 | """other + self""" |
| 74 | raise NotImplementedError |
| 75 | |
| 76 | @abstractmethod |
| 77 | def __neg__(self): |
| 78 | """-self""" |
| 79 | raise NotImplementedError |
| 80 | |
Jeffrey Yasskin | d7b0033 | 2008-01-15 07:46:24 +0000 | [diff] [blame] | 81 | @abstractmethod |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 82 | def __pos__(self): |
| 83 | """+self""" |
| 84 | raise NotImplementedError |
| 85 | |
| 86 | def __sub__(self, other): |
| 87 | """self - other""" |
| 88 | return self + -other |
| 89 | |
| 90 | def __rsub__(self, other): |
| 91 | """other - self""" |
| 92 | return -self + other |
| 93 | |
| 94 | @abstractmethod |
| 95 | def __mul__(self, other): |
| 96 | """self * other""" |
| 97 | raise NotImplementedError |
| 98 | |
| 99 | @abstractmethod |
| 100 | def __rmul__(self, other): |
| 101 | """other * self""" |
| 102 | raise NotImplementedError |
| 103 | |
| 104 | @abstractmethod |
| 105 | def __div__(self, other): |
Jeffrey Yasskin | d7b0033 | 2008-01-15 07:46:24 +0000 | [diff] [blame] | 106 | """self / other without __future__ division |
| 107 | |
| 108 | May promote to float. |
| 109 | """ |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 110 | raise NotImplementedError |
| 111 | |
| 112 | @abstractmethod |
| 113 | def __rdiv__(self, other): |
Jeffrey Yasskin | d7b0033 | 2008-01-15 07:46:24 +0000 | [diff] [blame] | 114 | """other / self without __future__ division""" |
| 115 | raise NotImplementedError |
| 116 | |
| 117 | @abstractmethod |
| 118 | def __truediv__(self, other): |
| 119 | """self / other with __future__ division. |
| 120 | |
| 121 | Should promote to float when necessary. |
| 122 | """ |
| 123 | raise NotImplementedError |
| 124 | |
| 125 | @abstractmethod |
| 126 | def __rtruediv__(self, other): |
| 127 | """other / self with __future__ division""" |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 128 | raise NotImplementedError |
| 129 | |
| 130 | @abstractmethod |
| 131 | def __pow__(self, exponent): |
| 132 | """self**exponent; should promote to float or complex when necessary.""" |
| 133 | raise NotImplementedError |
| 134 | |
| 135 | @abstractmethod |
| 136 | def __rpow__(self, base): |
| 137 | """base ** self""" |
| 138 | raise NotImplementedError |
| 139 | |
| 140 | @abstractmethod |
| 141 | def __abs__(self): |
| 142 | """Returns the Real distance from 0. Called for abs(self).""" |
| 143 | raise NotImplementedError |
| 144 | |
| 145 | @abstractmethod |
| 146 | def conjugate(self): |
| 147 | """(x+y*i).conjugate() returns (x-y*i).""" |
| 148 | raise NotImplementedError |
| 149 | |
| 150 | @abstractmethod |
| 151 | def __eq__(self, other): |
| 152 | """self == other""" |
| 153 | raise NotImplementedError |
| 154 | |
Jeffrey Yasskin | 27d3394 | 2008-02-08 06:45:40 +0000 | [diff] [blame] | 155 | def __ne__(self, other): |
| 156 | """self != other""" |
| 157 | # The default __ne__ doesn't negate __eq__ until 3.0. |
| 158 | return not (self == other) |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 159 | |
| 160 | Complex.register(complex) |
| 161 | |
| 162 | |
| 163 | class Real(Complex): |
| 164 | """To Complex, Real adds the operations that work on real numbers. |
| 165 | |
| 166 | In short, those are: a conversion to float, trunc(), divmod, |
| 167 | %, <, <=, >, and >=. |
| 168 | |
| 169 | Real also provides defaults for the derived operations. |
| 170 | """ |
| 171 | |
| 172 | @abstractmethod |
| 173 | def __float__(self): |
| 174 | """Any Real can be converted to a native float object. |
| 175 | |
| 176 | Called for float(self).""" |
| 177 | raise NotImplementedError |
| 178 | |
| 179 | @abstractmethod |
| 180 | def __trunc__(self): |
| 181 | """trunc(self): Truncates self to an Integral. |
| 182 | |
| 183 | Returns an Integral i such that: |
| 184 | * i>0 iff self>0; |
| 185 | * abs(i) <= abs(self); |
| 186 | * for any Integral j satisfying the first two conditions, |
| 187 | abs(i) >= abs(j) [i.e. i has "maximal" abs among those]. |
| 188 | i.e. "truncate towards 0". |
| 189 | """ |
| 190 | raise NotImplementedError |
| 191 | |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 192 | def __divmod__(self, other): |
| 193 | """divmod(self, other): The pair (self // other, self % other). |
| 194 | |
| 195 | Sometimes this can be computed faster than the pair of |
| 196 | operations. |
| 197 | """ |
| 198 | return (self // other, self % other) |
| 199 | |
| 200 | def __rdivmod__(self, other): |
| 201 | """divmod(other, self): The pair (self // other, self % other). |
| 202 | |
| 203 | Sometimes this can be computed faster than the pair of |
| 204 | operations. |
| 205 | """ |
| 206 | return (other // self, other % self) |
| 207 | |
| 208 | @abstractmethod |
| 209 | def __floordiv__(self, other): |
| 210 | """self // other: The floor() of self/other.""" |
| 211 | raise NotImplementedError |
| 212 | |
| 213 | @abstractmethod |
| 214 | def __rfloordiv__(self, other): |
| 215 | """other // self: The floor() of other/self.""" |
| 216 | raise NotImplementedError |
| 217 | |
| 218 | @abstractmethod |
| 219 | def __mod__(self, other): |
| 220 | """self % other""" |
| 221 | raise NotImplementedError |
| 222 | |
| 223 | @abstractmethod |
| 224 | def __rmod__(self, other): |
| 225 | """other % self""" |
| 226 | raise NotImplementedError |
| 227 | |
| 228 | @abstractmethod |
| 229 | def __lt__(self, other): |
| 230 | """self < other |
| 231 | |
| 232 | < on Reals defines a total ordering, except perhaps for NaN.""" |
| 233 | raise NotImplementedError |
| 234 | |
| 235 | @abstractmethod |
| 236 | def __le__(self, other): |
| 237 | """self <= other""" |
| 238 | raise NotImplementedError |
| 239 | |
| 240 | # Concrete implementations of Complex abstract methods. |
| 241 | def __complex__(self): |
| 242 | """complex(self) == complex(float(self), 0)""" |
| 243 | return complex(float(self)) |
| 244 | |
| 245 | @property |
| 246 | def real(self): |
| 247 | """Real numbers are their real component.""" |
| 248 | return +self |
| 249 | |
| 250 | @property |
| 251 | def imag(self): |
| 252 | """Real numbers have no imaginary component.""" |
| 253 | return 0 |
| 254 | |
| 255 | def conjugate(self): |
| 256 | """Conjugate is a no-op for Reals.""" |
| 257 | return +self |
| 258 | |
| 259 | Real.register(float) |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 260 | |
| 261 | |
Raymond Hettinger | cd6bfab | 2008-03-15 20:37:50 +0000 | [diff] [blame] | 262 | class Rational(Real): |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 263 | """.numerator and .denominator should be in lowest terms.""" |
| 264 | |
| 265 | @abstractproperty |
| 266 | def numerator(self): |
| 267 | raise NotImplementedError |
| 268 | |
| 269 | @abstractproperty |
| 270 | def denominator(self): |
| 271 | raise NotImplementedError |
| 272 | |
| 273 | # Concrete implementation of Real's conversion to float. |
| 274 | def __float__(self): |
Jeffrey Yasskin | b23dea6 | 2008-01-31 07:44:11 +0000 | [diff] [blame] | 275 | """float(self) = self.numerator / self.denominator |
| 276 | |
| 277 | It's important that this conversion use the integer's "true" |
| 278 | division rather than casting one side to float before dividing |
| 279 | so that ratios of huge integers convert without overflowing. |
| 280 | |
| 281 | """ |
Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 282 | return self.numerator / self.denominator |
| 283 | |
| 284 | |
| 285 | class Integral(Rational): |
| 286 | """Integral adds a conversion to long and the bit-string operations.""" |
| 287 | |
| 288 | @abstractmethod |
| 289 | def __long__(self): |
| 290 | """long(self)""" |
| 291 | raise NotImplementedError |
| 292 | |
| 293 | def __index__(self): |
| 294 | """index(self)""" |
| 295 | return long(self) |
| 296 | |
| 297 | @abstractmethod |
| 298 | def __pow__(self, exponent, modulus=None): |
| 299 | """self ** exponent % modulus, but maybe faster. |
| 300 | |
| 301 | Accept the modulus argument if you want to support the |
| 302 | 3-argument version of pow(). Raise a TypeError if exponent < 0 |
| 303 | or any argument isn't Integral. Otherwise, just implement the |
| 304 | 2-argument version described in Complex. |
| 305 | """ |
| 306 | raise NotImplementedError |
| 307 | |
| 308 | @abstractmethod |
| 309 | def __lshift__(self, other): |
| 310 | """self << other""" |
| 311 | raise NotImplementedError |
| 312 | |
| 313 | @abstractmethod |
| 314 | def __rlshift__(self, other): |
| 315 | """other << self""" |
| 316 | raise NotImplementedError |
| 317 | |
| 318 | @abstractmethod |
| 319 | def __rshift__(self, other): |
| 320 | """self >> other""" |
| 321 | raise NotImplementedError |
| 322 | |
| 323 | @abstractmethod |
| 324 | def __rrshift__(self, other): |
| 325 | """other >> self""" |
| 326 | raise NotImplementedError |
| 327 | |
| 328 | @abstractmethod |
| 329 | def __and__(self, other): |
| 330 | """self & other""" |
| 331 | raise NotImplementedError |
| 332 | |
| 333 | @abstractmethod |
| 334 | def __rand__(self, other): |
| 335 | """other & self""" |
| 336 | raise NotImplementedError |
| 337 | |
| 338 | @abstractmethod |
| 339 | def __xor__(self, other): |
| 340 | """self ^ other""" |
| 341 | raise NotImplementedError |
| 342 | |
| 343 | @abstractmethod |
| 344 | def __rxor__(self, other): |
| 345 | """other ^ self""" |
| 346 | raise NotImplementedError |
| 347 | |
| 348 | @abstractmethod |
| 349 | def __or__(self, other): |
| 350 | """self | other""" |
| 351 | raise NotImplementedError |
| 352 | |
| 353 | @abstractmethod |
| 354 | def __ror__(self, other): |
| 355 | """other | self""" |
| 356 | raise NotImplementedError |
| 357 | |
| 358 | @abstractmethod |
| 359 | def __invert__(self): |
| 360 | """~self""" |
| 361 | raise NotImplementedError |
| 362 | |
| 363 | # Concrete implementations of Rational and Real abstract methods. |
| 364 | def __float__(self): |
| 365 | """float(self) == float(long(self))""" |
| 366 | return float(long(self)) |
| 367 | |
| 368 | @property |
| 369 | def numerator(self): |
| 370 | """Integers are their own numerators.""" |
| 371 | return +self |
| 372 | |
| 373 | @property |
| 374 | def denominator(self): |
| 375 | """Integers have a denominator of 1.""" |
| 376 | return 1 |
| 377 | |
| 378 | Integral.register(int) |
| 379 | Integral.register(long) |