1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
|
/**************************************************************************
* *
* Regina - A Normal Surface Theory Calculator *
* Computational Engine *
* *
* Copyright (c) 1999-2011, Ben Burton *
* For further details contact Ben Burton (bab@debian.org). *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 2 of the *
* License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* You should have received a copy of the GNU General Public *
* License along with this program; if not, write to the Free *
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
**************************************************************************/
/* end stub */
#ifndef __NRATIONAL_H
#ifndef __DOXYGEN
#define __NRATIONAL_H
#endif
/*! \file maths/nrational.h
* \brief Deals with artibrary precision rational numbers.
*/
#include "regina-core.h"
#include "maths/nlargeinteger.h"
namespace regina {
/**
* \weakgroup maths
* @{
*/
/**
* Represents an arbitrary precision rational number.
* Calculations with NRational objects will be exact.
*
* Infinity (1/0) and undefined (0/0) are catered for. (-1/0) is considered
* the same as (1/0), and is represented as (1/0).
* Any operation involving (0/0) will return (0/0).
*
* Since infinity is the same as negative infinity, both infinity plus
* infinity and infinity minus infinity will return infinity. Infinity
* divided by infinity returns undefined, as does infinity times zero.
*
* For the purposes of ordering, undefined is the smallest rational and
* infinity is the largest. Undefined is always equal to itself, and
* infinity is always equal to itself.
*
* Rationals will always be stored in lowest terms with non-negative
* denominator.
*
* \testpart
*/
class REGINA_API NRational {
public:
static const NRational zero;
/**< Globally available zero. */
static const NRational one;
/**< Globally available one. */
static const NRational infinity;
/**< Globally available infinity. Note that both 1/0 and
* -1/0 evaluate to this same rational. When queried,
* the representation 1/0 will be returned. */
static const NRational undefined;
/**< Globally available undefined. This is represented as
* 0/0. */
private:
/**
* Represents the available flavours of rational number.
*/
enum flavourType {
f_infinity,
/**< Infinity; there is only one rational of this type. */
f_undefined,
/**< Undefined; there is only one rational of this type. */
f_normal
/**< An ordinary rational (the denominator is non-zero). */
};
flavourType flavour;
/**< Stores whether this rational is infinity, undefined or
* normal (non-zero denominator). */
mpq_t data;
/**< Contains the arbitrary precision rational data for normal
* (non-zero denominator) rationals. */
static const NRational maxDouble;
/**< The largest positive rational number that can be converted
* to a finite double. This begins as undefined, and is set
* to its correct value on the first call to doubleApprox(). */
static const NRational minDouble;
/**< The smallest positive rational number that can be converted
* to a non-zero double. This begins as undefined, and is set
* to its correct value on the first call to doubleApprox(). */
public:
/**
* Initialises to 0/1.
*/
NRational();
/**
* Initialises to the given rational value.
*
* @param value the new rational value of this rational.
*/
NRational(const NRational& value);
/**
* Initialises to the given integer value.
*
* @param value the new integer value of this rational.
*/
NRational(const NLargeInteger& value);
/**
* Initialises to the given integer value.
*
* @param value the new integer value of this rational.
*/
NRational(long value);
/**
* Initialises to <i>newNum</i>/<i>newDen</i>.
*
* \pre gcd(<i>newNum</i>, <i>newDen</i>) = 1 or <i>newDen</i> = 0.
* \pre \a newDen is non-negative.
*
* \warning Failing to meet the preconditions above can result
* in misleading or even undefined behaviour. As an example,
* NRational(4,4) (which breaks the gcd requirement) is
* considered different from NRational(1,1) (a valid rational),
* which is different again from NRational(-1,-1) (which breaks
* the non-negativity requirement).
*
* @param newNum the new numerator.
* @param newDen the new denominator.
*/
NRational(const NLargeInteger& newNum, const NLargeInteger& newDen);
/**
* Initialises to <i>newNum</i>/<i>newDen</i>.
*
* \pre gcd(<i>newNum</i>, <i>newDen</i>) = 1 or <i>newDen</i> = 0.
* \pre \a newDen is non-negative.
*
* \warning Failing to meet the preconditions above can result
* in misleading or even undefined behaviour. As an example,
* NRational(4,4) (which breaks the gcd requirement) is
* considered different from NRational(1,1) (a valid rational),
* which is different again from NRational(-1,-1) (which breaks
* the non-negativity requirement).
*
* @param newNum the new numerator.
* @param newDen the new denominator.
*/
NRational(long newNum, unsigned long newDen);
/**
* Destroys this rational.
*/
virtual ~NRational();
/**
* Sets this rational to the given rational value.
*
* @param value the new value of this rational.
* @return a reference to this rational with its new value.
*/
NRational& operator = (const NRational& value);
/**
* Sets this rational to the given integer value.
*
* @param value the new value of this rational.
* @return a reference to this rational with its new value.
*/
NRational& operator = (const NLargeInteger& value);
/**
* Sets this rational to the given integer value.
*
* @param value the new value of this rational.
* @return a reference to this rational with its new value.
*/
NRational& operator = (long value);
/**
* Swaps the values of this and the given rational.
*
* @param other the rational whose value will be swapped with
* this.
*/
void swap(NRational& other);
/**
* Returns the numerator of this rational.
* Note that rationals are always stored in lowest terms with
* non-negative denominator. Infinity will be stored as 1/0.
*
* @return the numerator.
*/
NLargeInteger getNumerator() const;
/**
* Returns the denominator of this rational.
* Note that rationals are always stored in lowest terms with
* non-negative denominator.
*
* @return the denominator.
*/
NLargeInteger getDenominator() const;
/**
* Calculates the product of two rationals.
* This rational is not changed.
*
* @param r the rational with which to multiply this.
* @return the product \a this * \a r.
*/
NRational operator *(const NRational& r) const;
/**
* Calculates the ratio of two rationals.
* This rational is not changed.
*
* @param r the rational to divide this by.
* @return the ratio \a this / \a r.
*/
NRational operator /(const NRational& r) const;
/**
* Calculates the sum of two rationals.
* This rational is not changed.
*
* @param r the rational to add to this.
* @return the sum \a this + \a r.
*/
NRational operator +(const NRational& r) const;
/**
* Calculates the difference of two rationals.
* This rational is not changed.
*
* @param r the rational to subtract from this.
* @return the difference \a this - \a r.
*/
NRational operator -(const NRational& r) const;
/**
* Determines the negative of this rational.
* This rational is not changed.
*
* @return the negative of this rational.
*/
NRational operator - () const;
/**
* Calculates the inverse of this rational.
* This rational is not changed.
*
* @return the inverse 1 / \a this.
*/
NRational inverse() const;
/**
* Determines the absolute value of this rational.
* This rational is not changed.
*
* @return the absolute value of this rational.
*/
NRational abs() const;
/**
* Adds the given rational to this.
* This rational is changed to reflect the result.
*
* @param other the rational to add to this.
* @return a reference to this rational with its new value.
*/
NRational& operator += (const NRational& other);
/**
* Subtracts the given rational from this.
* This rational is changed to reflect the result.
*
* @param other the rational to subtract from this.
* @return a reference to this rational with its new value.
*/
NRational& operator -= (const NRational& other);
/**
* Multiplies the given rational by this.
* This rational is changed to reflect the result.
*
* @param other the rational to multiply by this.
* @return a reference to this rational with its new value.
*/
NRational& operator *= (const NRational& other);
/**
* Divides this by the given rational.
* This rational is changed to reflect the result.
*
* @param other the rational to divide this by.
* @return a reference to this rational with its new value.
*/
NRational& operator /= (const NRational& other);
/**
* Negates this rational.
* This rational is changed to reflect the result.
*/
void negate();
/**
* Inverts this rational.
* This rational is changed to reflect the result.
*/
void invert();
/**
* Determines if this is equal to the given rational.
*
* @param compare the rational with which this will be compared.
* @return \c true if and only if this rational is equal to
* \a compare.
*/
bool operator == (const NRational& compare) const;
/**
* Determines if this is not equal to the given rational.
*
* @param compare the rational with which this will be compared.
* @return \c true if and only if this rational is not equal to
* \a compare.
*/
bool operator != (const NRational& compare) const;
/**
* Determines if this is less than the given rational.
*
* @param compare the rational with which this will be compared.
* @return \c true if and only if this rational is less than
* \a compare.
*/
bool operator < (const NRational& compare) const;
/**
* Determines if this is greater than the given rational.
*
* @param compare the rational with which this will be compared.
* @return \c true if and only if this rational is greater than
* \a compare.
*/
bool operator > (const NRational& compare) const;
/**
* Determines if this is less than or equal to the given rational.
*
* @param compare the rational with which this will be compared.
* @return \c true if and only if this rational is less than or
* equal to \a compare.
*/
bool operator <= (const NRational& compare) const;
/**
* Determines if this is greater than or equal to the given rational.
*
* @param compare the rational with which this will be compared.
* @return \c true if and only if this rational is greater than
* or equal to \a compare.
*/
bool operator >= (const NRational& compare) const;
/**
* Attempts to convert this rational to a real number.
*
* If this rational can be approximated by a double
* (specifically, if it lies within double's allowable range)
* then a such an approximation is returned. Otherwise zero is
* returned instead.
*
* The optional \a inRange argument allows the result of range
* checking to be returned explicitly as a boolean
* (<tt>*inRange</tt> will be set to \c true if a double
* approximation is possible and \c false otherwise).
*
* It is safe to pass \a inRange as \c null, in which case this
* boolean is not returned. Range checking is still performed
* internally however, i.e., zero is still returned if the rational
* is out of range.
*
* Note that "lies with double's allowable range" is
* machine-dependent, and may vary between different installations.
* Infinity and undefined are always considered out of range.
* Otherwise a rational is out of range if its absolute value is
* finite but too large (e.g., 10^10000) or non-zero but too small
* (e.g., 10^-10000).
*
* @param inRange returns the result of range checking as
* described above; this pointer may be passed as \c null if
* the caller does not care about this result.
* @return the double approximation to this rational, or zero if
* this rational lies outside double's allowable range.
*
* \ifacespython The \a inRange argument is not present.
* Instead there are two versions of this routine.
* The first is \a doubleApprox(), which returns a single real
* number. The second is \a doubleApproxCheck(), which returns
* a (real, bool) pair containing the converted real number
* followed by the result of range checking.
*
* @author Ryan Budney, B.B.
*/
double doubleApprox(bool* inRange = 0) const;
/**
* Returns this rational as written using TeX formatting.
* No leading or trailing dollar signs will be included.
*
* @return this rational as written using TeX formatting.
*
* @author Ryan Budney
*/
std::string getTeX() const;
/**
* Writes this rational in TeX format to the given output stream.
* No leading or trailing dollar signs will be included.
*
* \ifacespython The parameter \a out does not exist; instead
* standard output will be used.
*
* @param out the output stream to which to write.
* @return a reference to the given output stream.
*
* @author Ryan Budney
*/
std::ostream& writeTeX(std::ostream& out) const;
private:
/**
* Initialises the class constants \a maxDouble and \a minDouble.
* These constants are used by doubleApprox(), and so this routine
* is called the first time that doubleApprox() is run.
*/
static void initDoubleBounds();
friend std::ostream& operator << (std::ostream& out, const NRational& rat);
};
/**
* Writes the given rational to the given output stream.
* Infinity will be written as <tt>Inf</tt>. Undefined will be written
* as <tt>Undef</tt>. A rational with denominator one will be written
* as a single integer. All other rationals will be written in the form
* <tt>r/s</tt>.
*
* @param out the output stream to which to write.
* @param rat the rational to write.
* @return a reference to \a out.
*/
REGINA_API std::ostream& operator << (std::ostream& out, const NRational& rat);
/*@}*/
// Inline functions for NRational
inline NRational::NRational() : flavour(f_normal) {
mpq_init(data);
}
inline NRational::NRational(const NRational& value) : flavour(value.flavour) {
mpq_init(data);
if (flavour == f_normal)
mpq_set(data, value.data);
}
inline NRational::NRational(const NLargeInteger& value) : flavour(f_normal) {
mpq_init(data);
mpq_set_z(data, value.data);
}
inline NRational::NRational(long value) : flavour(f_normal) {
mpq_init(data);
mpq_set_si(data, value, 1);
}
inline NRational::~NRational() {
mpq_clear(data);
}
inline NRational& NRational::operator = (const NRational& value) {
flavour = value.flavour;
if (flavour == f_normal)
mpq_set(data, value.data);
return *this;
}
inline NRational& NRational::operator = (const NLargeInteger& value) {
flavour = f_normal;
mpq_set_z(data, value.data);
return *this;
}
inline NRational& NRational::operator = (long value) {
flavour = f_normal;
mpq_set_si(data, value, 1);
return *this;
}
inline void NRational::swap(NRational& other) {
std::swap(flavour, other.flavour);
mpq_swap(data, other.data);
}
inline void NRational::negate() {
if (flavour == f_normal)
mpq_neg(data, data);
}
inline bool NRational::operator <= (const NRational& compare) const {
return ! (*this > compare);
}
inline bool NRational::operator >= (const NRational& compare) const {
return ! (*this < compare);
}
inline bool NRational::operator != (const NRational& compare) const {
return ! (*this == compare);
}
} // namespace regina
#endif
|