/usr/include/ITK-4.9/vnl/vnl_rational.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // This is core/vnl/vnl_rational.h
#ifndef vnl_rational_h_
#define vnl_rational_h_
//:
// \file
// \brief High-precision rational numbers
//
// The vnl_rational class provides high-precision rational numbers and
// arithmetic, using the built-in type long, for the numerator and denominator.
// Implicit conversion to the system defined types short, int, long, float, and
// double is supported by overloaded operator member functions. Although the
// rational class makes judicious use of inline functions and deals only with
// integral values, the user is warned that the rational integer arithmetic
// class is still considerably slower than the built-in integer data types. If
// the range of values anticipated will fit into a built-in type, use that
// instead.
//
// In addition to the original COOL Rational class, vnl_rational is able to
// represent plus and minus infinity. An other interesting addition is the
// possibility to construct a rational from a double. This allows for lossless
// conversion from e.g. double 1.0/3.0 to the rational number 1/3, hence no more
// rounding errors. This is implemented with continued fraction approximations.
//
// \author
// Copyright (C) 1991 Texas Instruments Incorporated.
//
// Permission is granted to any individual or institution to use, copy, modify,
// and distribute this software, provided that this complete copyright and
// permission notice is maintained, intact, in all copies and supporting
// documentation.
//
// Texas Instruments Incorporated provides this software "as is" without
// express or implied warranty.
//
// \verbatim
// Modifications
// Peter Vanroose, 13 July 2001: Added continued fraction cnstrctr from double
// Peter Vanroose, 10 July 2001: corrected operator%=()
// Peter Vanroose, 10 July 2001: corrected ceil() and floor() for negative args
// Peter Vanroose, 10 July 2001: extended operability range of += by using gcd
// Peter Vanroose, 10 July 2001: added abs().
// Peter Vanroose, 10 July 2001: removed state data member and added Inf repres
// Peter Vanroose, 9 July 2001: ported to vnl from COOL
// Peter Vanroose, 11 June 2009: made "*" and "/" robust against int overflow
// (actually a full re-implementation, using gcd)
// \endverbatim
#include <vcl_iostream.h>
#include <vcl_cassert.h>
//: High-precision rational numbers
//
// The vnl_rational class provides high-precision rational numbers and
// arithmetic, using the built-in type long, for the numerator and denominator.
// Implicit conversion to the system defined types short, int, long, float, and
// double is supported by overloaded operator member functions. Although the
// rational class makes judicious use of inline functions and deals only with
// integral values, the user is warned that the rational integer arithmetic
// class is still considerably slower than the built-in integer data types. If
// the range of values anticipated will fit into a built-in type, use that
// instead.
//
// In addition to the original COOL Rational class, vnl_rational is able to
// represent plus and minus infinity. An other interesting addition is the
// possibility to construct a rational from a double. This allows for lossless
// conversion from e.g. double 1.0/3.0 to the rational number 1/3, hence no more
// rounding errors. This is implemented with continued fraction approximations.
//
class vnl_rational
{
long num_; //!< Numerator portion
long den_; //!< Denominator portion
public:
//: Creates a rational with given numerator and denominator.
// Default constructor gives 0.
// Also serves as automatic cast from long to vnl_rational.
// The only input which is not allowed is (0,0);
// the denominator is allowed to be 0, to represent +Inf or -Inf.
inline vnl_rational(long num = 0L, long den = 1L)
: num_(num), den_(den) { assert(num!=0||den!=0); normalize(); }
//: Creates a rational with given numerator and denominator.
// Note these are not automatic type conversions because of a bug
// in the Borland compiler. Since these just convert their
// arguments to long anyway, there is no harm in letting
// the long overload be used for automatic conversions.
explicit inline vnl_rational(int num, int den = 1)
: num_(num), den_(den) { assert(num!=0||den!=0); normalize(); }
explicit inline vnl_rational(unsigned int num, unsigned int den = 1)
: num_((long)num), den_((long)den) { assert(num!=0||den!=0); normalize(); }
//: Creates a rational from a double.
// This is done by computing the continued fraction approximation for d.
// Note that this is explicitly *not* an automatic type conversion.
explicit vnl_rational(double d);
// Copy constructor
inline vnl_rational(vnl_rational const& from)
: num_(from.numerator()), den_(from.denominator()) {}
// Destructor
inline ~vnl_rational() {}
// Assignment: overwrite an existing vnl_rational
inline void set(long num, long den) { assert(num!=0||den!=0); num_=num; den_=den; normalize(); }
//: Return the numerator of the (simplified) rational number representation
inline long numerator() const { return num_; }
//: Return the denominator of the (simplified) rational number representation
inline long denominator() const { return den_; }
//: Copies the contents and state of rhs rational over to the lhs
inline vnl_rational& operator=(vnl_rational const& rhs) {
num_ = rhs.numerator(); den_ = rhs.denominator(); return *this; }
//: Returns true if the two rationals have the same representation
inline bool operator==(vnl_rational const& rhs) const {
return num_ == rhs.numerator() && den_ == rhs.denominator(); }
inline bool operator!=(vnl_rational const& rhs) const { return !operator==(rhs); }
inline bool operator==(long rhs) const { return num_ == rhs && den_ == 1; }
inline bool operator!=(long rhs) const { return !operator==(rhs); }
inline bool operator==(int rhs) const { return num_ == rhs && den_ == 1; }
inline bool operator!=(int rhs) const { return !operator==(rhs); }
//: Unary minus - returns the negation of the current rational.
inline vnl_rational operator-() const { return vnl_rational(-num_, den_); }
//: Unary plus - returns the current rational.
inline vnl_rational operator+() const { return *this; }
//: Unary not - returns true if rational is equal to zero.
inline bool operator!() const { return num_ == 0L; }
//: Returns the absolute value of the current rational.
inline vnl_rational abs() const { return vnl_rational(num_<0?-num_:num_, den_); }
//: Replaces rational with 1/rational and returns it.
// Inverting 0 gives +Inf, inverting +-Inf gives 0.
vnl_rational& invert() {
long t = num_; num_ = den_; den_ = t; normalize(); return *this; }
//: Plus/assign: replace lhs by lhs + rhs
// Note that +Inf + -Inf and -Inf + +Inf are undefined.
inline vnl_rational& operator+=(vnl_rational const& r) {
if (den_ == r.denominator()) num_ += r.numerator();
else { long c = vnl_rational::gcd(den_,r.denominator()); if (c==0) c=1;
num_ = num_*(r.denominator()/c) + (den_/c)*r.numerator();
den_ *= r.denominator()/c; }
assert(num_!=0 || den_ != 0); // +Inf + -Inf is undefined
normalize(); return *this;
}
inline vnl_rational& operator+=(long r) { num_ += den_*r; return *this; }
//: Minus/assign: replace lhs by lhs - rhs
// Note that +Inf - +Inf and -Inf - -Inf are undefined.
inline vnl_rational& operator-=(vnl_rational const& r) {
if (den_ == r.denominator()) num_ -= r.num_;
else { long c = vnl_rational::gcd(den_,r.denominator()); if (c==0) c=1;
num_ = num_*(r.denominator()/c) - (den_/c)*r.numerator();
den_ *= r.denominator()/c; }
assert(num_!=0 || den_ != 0); // +Inf - +Inf is undefined
normalize(); return *this;
}
inline vnl_rational& operator-=(long r) { num_ -= den_*r; return *this; }
//: Multiply/assign: replace lhs by lhs * rhs
// Note that 0 * Inf and Inf * 0 are undefined.
// Also note that there could be integer overflow during this calculation!
// In that case, an approximate result will be returned.
vnl_rational& operator*=(vnl_rational const& r);
//: Multiply/assign: replace lhs by lhs * rhs
// Note that there could be integer overflow during this calculation!
// In that case, an approximate result will be returned.
vnl_rational& operator*=(long r);
//: Divide/assign: replace lhs by lhs / rhs
// Note that 0 / 0 and Inf / Inf are undefined.
// Also note that there could be integer overflow during this calculation!
// In that case, an approximate result will be returned.
vnl_rational& operator/=(vnl_rational const& r);
//: Divide/assign: replace lhs by lhs / rhs
// Note that 0 / 0 is undefined.
// Also note that there could be integer overflow during this calculation!
// In that case, an approximate result will be returned.
vnl_rational& operator/=(long r);
//: Modulus/assign: replace lhs by lhs % rhs
// Note that r % Inf is r, and that r % 0 and Inf % r are undefined.
inline vnl_rational& operator%=(vnl_rational const& r) {
assert(r.numerator() != 0);
if (den_ == r.denominator()) num_ %= r.numerator();
else { long c = vnl_rational::gcd(den_,r.denominator()); if (c==0) c=1;
num_ *= r.denominator()/c;
num_ %= (den_/c)*r.numerator();
den_ *= r.denominator()/c; }
normalize(); return *this;
}
inline vnl_rational& operator%=(long r){assert(r);num_%=den_*r;normalize();return *this;}
//: Pre-increment (++r). No-op when +-Inf.
inline vnl_rational& operator++() { num_ += den_; return *this; }
//: Pre-decrement (--r). No-op when +-Inf.
inline vnl_rational& operator--() { num_ -= den_; return *this; }
//: Post-increment (r++). No-op when +-Inf.
inline vnl_rational operator++(int){vnl_rational b=*this;num_+=den_;return b;}
//: Post-decrement (r--). No-op when +-Inf.
inline vnl_rational operator--(int){vnl_rational b=*this;num_-=den_;return b;}
inline bool operator<(vnl_rational const& rhs) const {
if (den_ == rhs.denominator()) // If same denominator
return num_ < rhs.numerator(); // includes the case -Inf < +Inf
// note that denominator is always >= 0:
else
return num_ * rhs.denominator() < den_ * rhs.numerator();
}
inline bool operator>(vnl_rational const& r) const { return r < *this; }
inline bool operator<=(vnl_rational const& r) const { return !operator>(r); }
inline bool operator>=(vnl_rational const& r) const { return !operator<(r); }
inline bool operator<(long r) const { return num_ < den_ * r; }
inline bool operator>(long r) const { return num_ > den_ * r; }
inline bool operator<=(long r) const { return !operator>(r); }
inline bool operator>=(long r) const { return !operator<(r); }
inline bool operator<(int r) const { return num_ < den_ * r; }
inline bool operator>(int r) const { return num_ > den_ * r; }
inline bool operator<=(int r) const { return !operator>(r); }
inline bool operator>=(int r) const { return !operator<(r); }
inline bool operator<(double r) const { return num_ < den_ * r; }
inline bool operator>(double r) const { return num_ > den_ * r; }
inline bool operator<=(double r) const { return !operator>(r); }
inline bool operator>=(double r) const { return !operator<(r); }
//: Converts rational value to integer by truncating towards zero.
inline long truncate() const { assert(den_ != 0); return num_/den_; }
//: Converts rational value to integer by truncating towards negative infinity.
inline long floor() const { long t = truncate();
return num_<0L && (num_%den_) != 0 ? t-1 : t; }
//: Converts rational value to integer by truncating towards positive infinity.
inline long ceil() const { long t = truncate();
return num_>0L && (num_%den_) != 0 ? t+1 : t; }
//: Rounds rational to nearest integer.
inline long round() const { long t = truncate();
if (num_ < 0) return ((-num_)%den_) >= 0.5*den_ ? t-1 : t;
else return (num_ %den_) >= 0.5*den_ ? t+1 : t;
}
// Implicit conversions
inline operator short() {
long t = truncate(); short r = (short)t;
assert(r == t); // abort on underflow or overflow
return r;
}
inline operator int() {
long t = truncate(); int r = (int)t;
assert(r == t); // abort on underflow or overflow
return r;
}
inline operator long() const { return truncate(); }
inline operator long() { return truncate(); }
inline operator float() const { return ((float)num_)/((float)den_); }
inline operator float() { return ((float)num_)/((float)den_); }
inline operator double() const { return ((double)num_)/((double)den_); }
inline operator double() { return ((double)num_)/((double)den_); }
//: Calculate greatest common divisor of two integers.
// Used to simplify rational number.
static inline long gcd (long l1, long l2) {
while (l2!=0) { long t = l2; l2 = l1 % l2; l1 = t; }
return l1<0 ? (-l1) : l1;
}
private:
//: Private function to normalize numerator/denominator of rational number.
// If num_ and den_ are both nonzero, their gcd is made 1 and den_ made positive.
// Otherwise, the nonzero den_ is set to 1 or the nonzero num_ to +1 or -1.
inline void normalize() {
if (num_ == 0) { den_ = 1; return; } // zero
if (den_ == 0) { num_ = (num_>0) ? 1 : -1; return; } // +-Inf
if (num_ != 1 && num_ != -1 && den_ != 1) {
long common = vnl_rational::gcd(num_, den_);
if (common != 1) { num_ /= common; den_ /= common; }
}
// if negative, put sign in numerator:
if (den_ < 0) { num_ *= -1; den_ *= -1; }
}
};
//: formatted output
// \relatesalso vnl_rational
inline vcl_ostream& operator<<(vcl_ostream& s, vnl_rational const& r)
{
return s << r.numerator() << '/' << r.denominator();
}
//: simple input
// \relatesalso vnl_rational
inline vcl_istream& operator>>(vcl_istream& s, vnl_rational& r)
{
long n, d; s >> n >> d;
r.set(n,d); return s;
}
//: Returns the sum of two rational numbers.
// \relatesalso vnl_rational
inline vnl_rational operator+(vnl_rational const& r1, vnl_rational const& r2)
{
vnl_rational result(r1); return result += r2;
}
inline vnl_rational operator+(vnl_rational const& r1, long r2)
{
vnl_rational result(r1); return result += r2;
}
inline vnl_rational operator+(vnl_rational const& r1, int r2)
{
vnl_rational result(r1); return result += (long)r2;
}
inline vnl_rational operator+(long r2, vnl_rational const& r1)
{
vnl_rational result(r1); return result += r2;
}
inline vnl_rational operator+(int r2, vnl_rational const& r1)
{
vnl_rational result(r1); return result += (long)r2;
}
//: Returns the difference of two rational numbers.
// \relatesalso vnl_rational
inline vnl_rational operator-(vnl_rational const& r1, vnl_rational const& r2)
{
vnl_rational result(r1); return result -= r2;
}
inline vnl_rational operator-(vnl_rational const& r1, long r2)
{
vnl_rational result(r1); return result -= r2;
}
inline vnl_rational operator-(vnl_rational const& r1, int r2)
{
vnl_rational result(r1); return result -= (long)r2;
}
inline vnl_rational operator-(long r2, vnl_rational const& r1)
{
vnl_rational result(-r1); return result += r2;
}
inline vnl_rational operator-(int r2, vnl_rational const& r1)
{
vnl_rational result(-r1); return result += (long)r2;
}
//: Returns the product of two rational numbers.
// \relatesalso vnl_rational
inline vnl_rational operator*(vnl_rational const& r1, vnl_rational const& r2)
{
vnl_rational result(r1); return result *= r2;
}
inline vnl_rational operator*(vnl_rational const& r1, long r2)
{
vnl_rational result(r1); return result *= r2;
}
inline vnl_rational operator*(vnl_rational const& r1, int r2)
{
vnl_rational result(r1); return result *= (long)r2;
}
inline vnl_rational operator*(long r2, vnl_rational const& r1)
{
vnl_rational result(r1); return result *= r2;
}
inline vnl_rational operator*(int r2, vnl_rational const& r1)
{
vnl_rational result(r1); return result *= (long)r2;
}
//: Returns the quotient of two rational numbers.
// \relatesalso vnl_rational
inline vnl_rational operator/(vnl_rational const& r1, vnl_rational const& r2)
{
vnl_rational result(r1); return result /= r2;
}
inline vnl_rational operator/(vnl_rational const& r1, long r2)
{
vnl_rational result(r1); return result /= r2;
}
inline vnl_rational operator/(vnl_rational const& r1, int r2)
{
vnl_rational result(r1); return result /= (long)r2;
}
inline vnl_rational operator/(long r1, vnl_rational const& r2)
{
vnl_rational result(r1); return result /= r2;
}
inline vnl_rational operator/(int r1, vnl_rational const& r2)
{
vnl_rational result((long)r1); return result /= r2;
}
//: Returns the remainder of r1 divided by r2.
// \relatesalso vnl_rational
inline vnl_rational operator%(vnl_rational const& r1, vnl_rational const& r2)
{
vnl_rational result(r1); return result %= r2;
}
inline vnl_rational operator%(vnl_rational const& r1, long r2)
{
vnl_rational result(r1); return result %= r2;
}
inline vnl_rational operator%(vnl_rational const& r1, int r2)
{
vnl_rational result(r1); return result %= (long)r2;
}
inline vnl_rational operator%(long r1, vnl_rational const& r2)
{
vnl_rational result(r1); return result %= r2;
}
inline vnl_rational operator%(int r1, vnl_rational const& r2)
{
vnl_rational result((long)r1); return result %= r2;
}
inline bool operator==(int r1, vnl_rational const& r2) { return r2==r1; }
inline bool operator==(long r1, vnl_rational const& r2) { return r2==r1; }
inline bool operator!=(int r1, vnl_rational const& r2) { return r2!=r1; }
inline bool operator!=(long r1, vnl_rational const& r2) { return r2!=r1; }
inline bool operator< (int r1, vnl_rational const& r2) { return r2> r1; }
inline bool operator< (long r1, vnl_rational const& r2) { return r2> r1; }
inline bool operator> (int r1, vnl_rational const& r2) { return r2< r1; }
inline bool operator> (long r1, vnl_rational const& r2) { return r2< r1; }
inline bool operator<=(int r1, vnl_rational const& r2) { return r2>=r1; }
inline bool operator<=(long r1, vnl_rational const& r2) { return r2>=r1; }
inline bool operator>=(int r1, vnl_rational const& r2) { return r2<=r1; }
inline bool operator>=(long r1, vnl_rational const& r2) { return r2<=r1; }
inline long truncate(vnl_rational const& r) { return r.truncate(); }
inline long floor(vnl_rational const& r) { return r.floor(); }
inline long ceil(vnl_rational const& r) { return r.ceil(); }
inline long round(vnl_rational const& r) { return r.round(); }
inline vnl_rational vnl_math_abs(vnl_rational const& x) { return x<0L ? -x : x; }
inline vnl_rational vnl_math_squared_magnitude(vnl_rational const& x) { return x*x; }
inline vnl_rational vnl_math_sqr(vnl_rational const& x) { return x*x; }
inline bool vnl_math_isnan(vnl_rational const& ){return false;}
inline bool vnl_math_isfinite(vnl_rational const& x){return x.denominator() != 0L;}
#endif // vnl_rational_h_
|