Scippy

SoPlex

Sequential object-oriented simPlex

Rational Class Reference

Wrapper for GMP type mpq_class.We wrap mpq_class so that we can replace it by a double type if GMP is not available. More...

#include <rational.h>

Classes

class  Private
 Defines the "Pimpl"-class Private. More...
 

Public Member Functions

 operator double () const
 typecasts Rational to double (allows only explicit typecast) More...
 
 operator long double () const
 typecasts Rational to long double (allows only explicit typecast) More...
 
Rational operator+ (const Rational &r) const
 addition operator More...
 
Rationaloperator+= (const Rational &r)
 addition assignment operator More...
 
Rational operator+ (const double &r) const
 addition operator for doubles More...
 
Rationaloperator+= (const double &r)
 addition assignment operator for doubles More...
 
Rational operator+ (const int &r) const
 addition operator for ints More...
 
Rationaloperator+= (const int &r)
 addition assignment operator for ints More...
 
Rational operator- (const Rational &r) const
 subtraction operator More...
 
Rationaloperator-= (const Rational &r)
 subtraction assignment operator More...
 
Rational operator- (const double &r) const
 subtraction operator for doubles More...
 
Rationaloperator-= (const double &r)
 subtraction assignment operator for doubles More...
 
Rational operator- (const int &r) const
 subtraction operator for ints More...
 
Rationaloperator-= (const int &r)
 subtraction assignment operator for ints More...
 
Rational operator* (const Rational &r) const
 multiplication operator More...
 
Rationaloperator*= (const Rational &r)
 multiplication assignment operator operator More...
 
Rational operator* (const double &r) const
 multiplication operator for doubles More...
 
Rationaloperator*= (const double &r)
 multiplication assignment operator for doubles More...
 
Rational operator* (const int &r) const
 multiplication operator for ints More...
 
Rationaloperator*= (const int &r)
 multiplication assignment operator for ints More...
 
Rational operator/ (const Rational &r) const
 division operator More...
 
Rationaloperator/= (const Rational &r)
 division assignment operator More...
 
Rational operator/ (const double &r) const
 division operator for doubles More...
 
Rationaloperator/= (const double &r)
 division assignment operator for doubles More...
 
Rational operator/ (const int &r) const
 division operator for ints More...
 
Rationaloperator/= (const int &r)
 division assignment operator for ints More...
 
RationaladdProduct (const Rational &r, const Rational &s)
 add product of two rationals More...
 
RationalsubProduct (const Rational &r, const Rational &s)
 subtract product of two rationals More...
 
RationaladdQuotient (const Rational &r, const Rational &s)
 add quotient of two rationals, r divided by s More...
 
RationalsubQuotient (const Rational &r, const Rational &s)
 subtract quotient of two rationals, r divided by s More...
 
Rationalinvert ()
 inversion More...
 
RationalpowRound ()
 round up to next power of two More...
 
bool isNextTo (const double &d)
 checks if d is the closest number that can be represented by double More...
 
bool isAdjacentTo (const double &d) const
 checks if d is exactly equal to the Rational and if not, if it is one of the two adjacent doubles More...
 
int sizeInBase (const int base=2) const
 Size in specified base (bit size for base 2) More...
 

Static Public Member Functions

static int precision ()
 returns precision of Rational implementation, i.e., number of bits used to store Rational numbers (INT_MAX if exact) More...
 

Private Attributes

Privatedpointer
 

Friends

int compareRational (const Rational &r, const Rational &s)
 comparison operator returning a positive value if r > s, zero if r = s, and a negative value if r < s More...
 
bool operator!= (const Rational &r, const Rational &s)
 inequality operator More...
 
bool operator== (const Rational &r, const Rational &s)
 equality operator More...
 
bool operator< (const Rational &r, const Rational &s)
 less than operator More...
 
bool operator<= (const Rational &r, const Rational &s)
 less than or equal to operator More...
 
bool operator> (const Rational &r, const Rational &s)
 greater than operator More...
 
bool operator>= (const Rational &r, const Rational &s)
 greater than or equal to operator More...
 
bool operator!= (const Rational &r, const double &s)
 inequality operator for Rational and double More...
 
bool operator== (const Rational &r, const double &s)
 equality operator for Rational and double More...
 
bool operator< (const Rational &r, const double &s)
 less than operator for Rational and double More...
 
bool operator<= (const Rational &r, const double &s)
 less than or equal to operator for Rational and double More...
 
bool operator> (const Rational &r, const double &s)
 greater than operator for Rational and double More...
 
bool operator>= (const Rational &r, const double &s)
 greater than or equal to operator for Rational and double More...
 
bool operator!= (const double &r, const Rational &s)
 inequality operator double and Rational More...
 
bool operator== (const double &r, const Rational &s)
 equality operator for double and Rational More...
 
bool operator< (const double &r, const Rational &s)
 less than operator double and Rational More...
 
bool operator<= (const double &r, const Rational &s)
 less than or equal to operator double and Rational More...
 
bool operator> (const double &r, const Rational &s)
 greater than operator double and Rational More...
 
bool operator>= (const double &r, const Rational &s)
 greater than or equal to operator double and Rational More...
 
bool operator!= (const Rational &r, const long double &s)
 inequality operator for Rational and long double More...
 
bool operator== (const Rational &r, const long double &s)
 equality operator for Rational and long double More...
 
bool operator< (const Rational &r, const long double &s)
 less than operator for Rational and long double More...
 
bool operator<= (const Rational &r, const long double &s)
 less than or equal to operator for Rational and long double More...
 
bool operator> (const Rational &r, const long double &s)
 greater than operator for Rational and long double More...
 
bool operator>= (const Rational &r, const long double &s)
 greater than or equal to operator for Rational and long double More...
 
bool operator!= (const long double &r, const Rational &s)
 inequality operator long double and Rational More...
 
bool operator== (const long double &r, const Rational &s)
 equality operator for long double and Rational More...
 
bool operator< (const long double &r, const Rational &s)
 less than operator long double and Rational More...
 
bool operator<= (const long double &r, const Rational &s)
 less than or equal to operator long double and Rational More...
 
bool operator> (const long double &r, const Rational &s)
 greater than operator long double and Rational More...
 
bool operator>= (const long double &r, const Rational &s)
 greater than or equal to operator long double and Rational More...
 
Rational operator+ (const double &d, const Rational &r)
 addition operator for double and Rational More...
 
Rational operator- (const double &d, const Rational &r)
 subtraction operator for double and Rational More...
 
Rational operator* (const double &d, const Rational &r)
 multiplication operator for double and Rational More...
 
Rational operator/ (const double &d, const Rational &r)
 division operator for double and Rational More...
 
bool operator!= (const Rational &r, const int &s)
 inequality operator for Rational and int More...
 
bool operator== (const Rational &r, const int &s)
 equality operator for Rational and int More...
 
bool operator< (const Rational &r, const int &s)
 less than operator for Rational and int More...
 
bool operator<= (const Rational &r, const int &s)
 less than or equal to operator for Rational and int More...
 
bool operator> (const Rational &r, const int &s)
 greater than operator for Rational and int More...
 
bool operator>= (const Rational &r, const int &s)
 greater than or equal to operator for Rational and int More...
 
bool operator!= (const int &r, const Rational &s)
 inequality operator for int and Rational More...
 
bool operator== (const int &r, const Rational &s)
 equality operator for int and Rational More...
 
bool operator< (const int &r, const Rational &s)
 less than operator for int and Rational More...
 
bool operator<= (const int &r, const Rational &s)
 less than or equal to operator for int and Rational More...
 
bool operator> (const int &r, const Rational &s)
 greater than operator for int and Rational More...
 
bool operator>= (const int &r, const Rational &s)
 greater than or equal to operator for int and Rational More...
 
Rational operator+ (const int &d, const Rational &r)
 addition operator for int and Rational More...
 
Rational operator- (const int &d, const Rational &r)
 subtraction operator for int and Rational More...
 
Rational operator* (const int &d, const Rational &r)
 multiplication operator for int and Rational More...
 
Rational operator/ (const int &d, const Rational &r)
 division operator for int and Rational More...
 
Rational spxAbs (const Rational &r)
 Absolute. More...
 
int sign (const Rational &r)
 Sign function; returns 1 if r > 0, 0 if r = 0, and -1 if r < 0. More...
 
Rational operator- (const Rational &q)
 Negation. More...
 
 Rational ()
 default constructor More...
 
 Rational (const Rational &r)
 copy constructor More...
 
 Rational (const long double &r)
 constructor from long double More...
 
 Rational (const double &r)
 constructor from double More...
 
 Rational (const int &i)
 constructor from int More...
 
 ~Rational ()
 destructor More...
 
Rationaloperator= (const Rational &)
 assignment operator More...
 
Rationaloperator= (const long double &r)
 assignment operator from long double More...
 
Rationaloperator= (const double &r)
 assignment operator from double More...
 
Rationaloperator= (const int &i)
 assignment operator from int More...
 
static void enableListMem ()
 enables list memory More...
 
static void freeListMem ()
 frees the unused rational elements in the memory list More...
 
static void disableListMem ()
 disables list memory More...
 
bool readString (const char *s)
 read Rational from string More...
 
std::string rationalToString (const Rational &r, const int precision)
 convert rational number to string More...
 
bool readStringRational (const char *s, Rational &value)
 read Rational from string More...
 
std::ostream & operator<< (std::ostream &os, const Rational &q)
 print Rational More...
 

Detailed Description

Wrapper for GMP type mpq_class.

We wrap mpq_class so that we can replace it by a double type if GMP is not available.

If compiled with GMP support, Rational is defined as mpq_class.

Definition at line 44 of file rational.h.

Constructor & Destructor Documentation

◆ Rational() [1/5]

Rational ( )

default constructor

Definition at line 2988 of file rational.cpp.

References Rational::dpointer, Rational::Private::Private(), and soplex::spx_alloc().

◆ Rational() [2/5]

Rational ( const Rational r)

copy constructor

Definition at line 2998 of file rational.cpp.

References Rational::dpointer, Rational::Private::Private(), and soplex::spx_alloc().

◆ Rational() [3/5]

Rational ( const long double &  r)

constructor from long double

Definition at line 3008 of file rational.cpp.

References Rational::dpointer, Rational::Private::Private(), and soplex::spx_alloc().

◆ Rational() [4/5]

Rational ( const double &  r)

constructor from double

Definition at line 3018 of file rational.cpp.

References Rational::dpointer, Rational::Private::Private(), and soplex::spx_alloc().

◆ Rational() [5/5]

Rational ( const int &  i)

constructor from int

Definition at line 3028 of file rational.cpp.

References Rational::dpointer, Rational::Private::Private(), and soplex::spx_alloc().

◆ ~Rational()

~Rational ( )

destructor

Definition at line 3038 of file rational.cpp.

References Rational::dpointer, and soplex::spx_free().

Member Function Documentation

◆ addProduct()

Rational & addProduct ( const Rational r,
const Rational s 
)

add product of two rationals

Definition at line 3355 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

Referenced by SoPlex::_computeInfeasBox(), and VectorBase< Real >::operator*().

◆ addQuotient()

Rational & addQuotient ( const Rational r,
const Rational s 
)

add quotient of two rationals, r divided by s

Definition at line 3373 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ disableListMem()

void disableListMem ( )
static

disables list memory

Definition at line 3066 of file rational.cpp.

Referenced by main().

◆ enableListMem()

void enableListMem ( )
static

enables list memory

Definition at line 3046 of file rational.cpp.

◆ freeListMem()

void freeListMem ( )
static

frees the unused rational elements in the memory list

this can be useful when you want to save memory or needed when working with a GMP memory manager like the one in EGlib that frees GMP memory before the destructor of the static memory list is called; in most cases this method is optional; note that this does not free the Rational elements that are currently in use

Definition at line 3058 of file rational.cpp.

◆ invert()

Rational & invert ( )

inversion

Definition at line 3391 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

Referenced by SoPlex::_performOptIRStable().

◆ isAdjacentTo()

bool isAdjacentTo ( const double &  d) const

checks if d is exactly equal to the Rational and if not, if it is one of the two adjacent doubles

checks if d is exactly equal to the Rational and if not, if it is one of the two adjacent doubles

Definition at line 3417 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ isNextTo()

bool isNextTo ( const double &  d)

checks if d is the closest number that can be represented by double

checks if d is the closest possible double

Definition at line 3409 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator double()

operator double ( ) const

typecasts Rational to double (allows only explicit typecast)

Definition at line 3110 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator long double()

operator long double ( ) const

typecasts Rational to long double (allows only explicit typecast)

Definition at line 3118 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator*() [1/3]

Rational operator* ( const Rational r) const

multiplication operator

Definition at line 3241 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator*() [2/3]

Rational operator* ( const double &  r) const

multiplication operator for doubles

Definition at line 3260 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator*() [3/3]

Rational operator* ( const int &  r) const

multiplication operator for ints

Definition at line 3279 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator*=() [1/3]

Rational & operator*= ( const Rational r)

multiplication assignment operator operator

multiplication assignment operator

Definition at line 3251 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator*=() [2/3]

Rational & operator*= ( const double &  r)

multiplication assignment operator for doubles

Definition at line 3270 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator*=() [3/3]

Rational & operator*= ( const int &  r)

multiplication assignment operator for ints

Definition at line 3289 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator+() [1/3]

Rational operator+ ( const Rational r) const

addition operator

Definition at line 3127 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator+() [2/3]

Rational operator+ ( const double &  r) const

addition operator for doubles

Definition at line 3146 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator+() [3/3]

Rational operator+ ( const int &  r) const

addition operator for ints

Definition at line 3165 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator+=() [1/3]

Rational & operator+= ( const Rational r)

addition assignment operator

Definition at line 3137 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator+=() [2/3]

Rational & operator+= ( const double &  r)

addition assignment operator for doubles

Definition at line 3156 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator+=() [3/3]

Rational & operator+= ( const int &  r)

addition assignment operator for ints

Definition at line 3175 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator-() [1/3]

Rational operator- ( const Rational r) const

subtraction operator

Definition at line 3184 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator-() [2/3]

Rational operator- ( const double &  r) const

subtraction operator for doubles

Definition at line 3203 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator-() [3/3]

Rational operator- ( const int &  r) const

subtraction operator for ints

Definition at line 3222 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator-=() [1/3]

Rational & operator-= ( const Rational r)

subtraction assignment operator

Definition at line 3194 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator-=() [2/3]

Rational & operator-= ( const double &  r)

subtraction assignment operator for doubles

Definition at line 3213 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator-=() [3/3]

Rational & operator-= ( const int &  r)

subtraction assignment operator for ints

Definition at line 3232 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator/() [1/3]

Rational operator/ ( const Rational r) const

division operator

Definition at line 3298 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator/() [2/3]

Rational operator/ ( const double &  r) const

division operator for doubles

Definition at line 3317 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator/() [3/3]

Rational operator/ ( const int &  r) const

division operator for ints

Definition at line 3336 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator/=() [1/3]

Rational & operator/= ( const Rational r)

division assignment operator

Definition at line 3308 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator/=() [2/3]

Rational & operator/= ( const double &  r)

division assignment operator for doubles

Definition at line 3327 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator/=() [3/3]

Rational & operator/= ( const int &  r)

division assignment operator for ints

Definition at line 3346 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

◆ operator=() [1/4]

Rational & operator= ( const Rational r)

assignment operator

Definition at line 3074 of file rational.cpp.

References Rational::dpointer.

◆ operator=() [2/4]

Rational & operator= ( const long double &  r)

assignment operator from long double

Definition at line 3083 of file rational.cpp.

References Rational::dpointer.

◆ operator=() [3/4]

Rational & operator= ( const double &  r)

assignment operator from double

Definition at line 3092 of file rational.cpp.

References Rational::dpointer.

◆ operator=() [4/4]

Rational & operator= ( const int &  i)

assignment operator from int

Definition at line 3101 of file rational.cpp.

References Rational::dpointer.

◆ powRound()

Rational & powRound ( )

round up to next power of two

Todo:
implement

Definition at line 3400 of file rational.cpp.

Referenced by SoPlex::_performOptIRStable().

◆ precision()

int precision ( )
static

returns precision of Rational implementation, i.e., number of bits used to store Rational numbers (INT_MAX if exact)

Definition at line 3434 of file rational.cpp.

Referenced by Rational::sizeInBase().

◆ readString()

bool readString ( const char *  s)

◆ sizeInBase()

int sizeInBase ( const int  base = 2) const

Size in specified base (bit size for base 2)

Todo:
this is only correct for base 2

Definition at line 3425 of file rational.cpp.

References Rational::precision().

Referenced by soplex::totalSizeRational().

◆ subProduct()

Rational & subProduct ( const Rational r,
const Rational s 
)

subtract product of two rationals

Definition at line 3364 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

Referenced by SoPlex::_computeInfeasBox().

◆ subQuotient()

Rational & subQuotient ( const Rational r,
const Rational s 
)

subtract quotient of two rationals, r divided by s

Definition at line 3382 of file rational.cpp.

References Rational::dpointer, and Rational::Private::privatevalue.

Friends And Related Function Documentation

◆ compareRational

int compareRational ( const Rational r,
const Rational s 
)
friend

comparison operator returning a positive value if r > s, zero if r = s, and a negative value if r < s

Definition at line 3478 of file rational.cpp.

◆ operator!= [1/7]

bool operator!= ( const Rational r,
const Rational s 
)
friend

inequality operator

Definition at line 3499 of file rational.cpp.

◆ operator!= [2/7]

bool operator!= ( const Rational r,
const double &  s 
)
friend

inequality operator for Rational and double

Definition at line 3548 of file rational.cpp.

◆ operator!= [3/7]

bool operator!= ( const double &  r,
const Rational s 
)
friend

inequality operator double and Rational

inequality operator for double and Rational

Definition at line 3598 of file rational.cpp.

◆ operator!= [4/7]

bool operator!= ( const Rational r,
const long double &  s 
)
friend

inequality operator for Rational and long double

Definition at line 3649 of file rational.cpp.

◆ operator!= [5/7]

bool operator!= ( const long double &  r,
const Rational s 
)
friend

inequality operator long double and Rational

inequality operator for long double and Rational

Definition at line 3699 of file rational.cpp.

◆ operator!= [6/7]

bool operator!= ( const Rational r,
const int &  s 
)
friend

inequality operator for Rational and int

Definition at line 3748 of file rational.cpp.

◆ operator!= [7/7]

bool operator!= ( const int &  r,
const Rational s 
)
friend

inequality operator for int and Rational

Definition at line 3796 of file rational.cpp.

◆ operator* [1/2]

Rational operator* ( const double &  d,
const Rational r 
)
friend

multiplication operator for double and Rational

Definition at line 3856 of file rational.cpp.

◆ operator* [2/2]

Rational operator* ( const int &  d,
const Rational r 
)
friend

multiplication operator for int and Rational

Definition at line 3892 of file rational.cpp.

◆ operator+ [1/2]

Rational operator+ ( const double &  d,
const Rational r 
)
friend

addition operator for double and Rational

Definition at line 3836 of file rational.cpp.

◆ operator+ [2/2]

Rational operator+ ( const int &  d,
const Rational r 
)
friend

addition operator for int and Rational

Definition at line 3876 of file rational.cpp.

◆ operator- [1/3]

Rational operator- ( const double &  d,
const Rational r 
)
friend

subtraction operator for double and Rational

Definition at line 3846 of file rational.cpp.

◆ operator- [2/3]

Rational operator- ( const int &  d,
const Rational r 
)
friend

subtraction operator for int and Rational

Definition at line 3884 of file rational.cpp.

◆ operator- [3/3]

Rational operator- ( const Rational q)
friend

Negation.

Definition at line 3929 of file rational.cpp.

◆ operator/ [1/2]

Rational operator/ ( const double &  d,
const Rational r 
)
friend

division operator for double and Rational

Definition at line 3866 of file rational.cpp.

◆ operator/ [2/2]

Rational operator/ ( const int &  d,
const Rational r 
)
friend

division operator for int and Rational

Definition at line 3900 of file rational.cpp.

◆ operator< [1/7]

bool operator< ( const Rational r,
const Rational s 
)
friend

less than operator

Definition at line 3507 of file rational.cpp.

◆ operator< [2/7]

bool operator< ( const Rational r,
const double &  s 
)
friend

less than operator for Rational and double

Definition at line 3557 of file rational.cpp.

◆ operator< [3/7]

bool operator< ( const double &  r,
const Rational s 
)
friend

less than operator double and Rational

less than operator for double and Rational

Definition at line 3607 of file rational.cpp.

◆ operator< [4/7]

bool operator< ( const Rational r,
const long double &  s 
)
friend

less than operator for Rational and long double

Definition at line 3658 of file rational.cpp.

◆ operator< [5/7]

bool operator< ( const long double &  r,
const Rational s 
)
friend

less than operator long double and Rational

less than operator for long double and Rational

Definition at line 3708 of file rational.cpp.

◆ operator< [6/7]

bool operator< ( const Rational r,
const int &  s 
)
friend

less than operator for Rational and int

Definition at line 3756 of file rational.cpp.

◆ operator< [7/7]

bool operator< ( const int &  r,
const Rational s 
)
friend

less than operator for int and Rational

Definition at line 3804 of file rational.cpp.

◆ operator<<

std::ostream& operator<< ( std::ostream &  os,
const Rational q 
)
friend

print Rational

Definition at line 3469 of file rational.cpp.

◆ operator<= [1/7]

bool operator<= ( const Rational r,
const Rational s 
)
friend

less than or equal to operator

Definition at line 3515 of file rational.cpp.

◆ operator<= [2/7]

bool operator<= ( const Rational r,
const double &  s 
)
friend

less than or equal to operator for Rational and double

Definition at line 3565 of file rational.cpp.

◆ operator<= [3/7]

bool operator<= ( const double &  r,
const Rational s 
)
friend

less than or equal to operator double and Rational

less than or equal to operator for double and Rational

Definition at line 3615 of file rational.cpp.

◆ operator<= [4/7]

bool operator<= ( const Rational r,
const long double &  s 
)
friend

less than or equal to operator for Rational and long double

Definition at line 3666 of file rational.cpp.

◆ operator<= [5/7]

bool operator<= ( const long double &  r,
const Rational s 
)
friend

less than or equal to operator long double and Rational

less than or equal to operator for long double and Rational

Definition at line 3716 of file rational.cpp.

◆ operator<= [6/7]

bool operator<= ( const Rational r,
const int &  s 
)
friend

less than or equal to operator for Rational and int

Definition at line 3764 of file rational.cpp.

◆ operator<= [7/7]

bool operator<= ( const int &  r,
const Rational s 
)
friend

less than or equal to operator for int and Rational

Definition at line 3812 of file rational.cpp.

◆ operator== [1/7]

bool operator== ( const Rational r,
const Rational s 
)
friend

equality operator

Definition at line 3491 of file rational.cpp.

◆ operator== [2/7]

bool operator== ( const Rational r,
const double &  s 
)
friend

equality operator for Rational and double

Definition at line 3539 of file rational.cpp.

◆ operator== [3/7]

bool operator== ( const double &  r,
const Rational s 
)
friend

equality operator for double and Rational

Definition at line 3589 of file rational.cpp.

◆ operator== [4/7]

bool operator== ( const Rational r,
const long double &  s 
)
friend

equality operator for Rational and long double

Definition at line 3640 of file rational.cpp.

◆ operator== [5/7]

bool operator== ( const long double &  r,
const Rational s 
)
friend

equality operator for long double and Rational

Definition at line 3690 of file rational.cpp.

◆ operator== [6/7]

bool operator== ( const Rational r,
const int &  s 
)
friend

equality operator for Rational and int

Definition at line 3740 of file rational.cpp.

◆ operator== [7/7]

bool operator== ( const int &  r,
const Rational s 
)
friend

equality operator for int and Rational

Definition at line 3788 of file rational.cpp.

◆ operator> [1/7]

bool operator> ( const Rational r,
const Rational s 
)
friend

greater than operator

Definition at line 3523 of file rational.cpp.

◆ operator> [2/7]

bool operator> ( const Rational r,
const double &  s 
)
friend

greater than operator for Rational and double

Definition at line 3573 of file rational.cpp.

◆ operator> [3/7]

bool operator> ( const double &  r,
const Rational s 
)
friend

greater than operator double and Rational

greater than operator for double and Rational

Definition at line 3623 of file rational.cpp.

◆ operator> [4/7]

bool operator> ( const Rational r,
const long double &  s 
)
friend

greater than operator for Rational and long double

Definition at line 3674 of file rational.cpp.

◆ operator> [5/7]

bool operator> ( const long double &  r,
const Rational s 
)
friend

greater than operator long double and Rational

greater than operator for long double and Rational

Definition at line 3724 of file rational.cpp.

◆ operator> [6/7]

bool operator> ( const Rational r,
const int &  s 
)
friend

greater than operator for Rational and int

Definition at line 3772 of file rational.cpp.

◆ operator> [7/7]

bool operator> ( const int &  r,
const Rational s 
)
friend

greater than operator for int and Rational

Definition at line 3820 of file rational.cpp.

◆ operator>= [1/7]

bool operator>= ( const Rational r,
const Rational s 
)
friend

greater than or equal to operator

Definition at line 3531 of file rational.cpp.

◆ operator>= [2/7]

bool operator>= ( const Rational r,
const double &  s 
)
friend

greater than or equal to operator for Rational and double

Definition at line 3581 of file rational.cpp.

◆ operator>= [3/7]

bool operator>= ( const double &  r,
const Rational s 
)
friend

greater than or equal to operator double and Rational

greater than or equal to operator for double and Rational

Definition at line 3631 of file rational.cpp.

◆ operator>= [4/7]

bool operator>= ( const Rational r,
const long double &  s 
)
friend

greater than or equal to operator for Rational and long double

Definition at line 3682 of file rational.cpp.

◆ operator>= [5/7]

bool operator>= ( const long double &  r,
const Rational s 
)
friend

greater than or equal to operator long double and Rational

greater than or equal to operator for long double and Rational

Definition at line 3732 of file rational.cpp.

◆ operator>= [6/7]

bool operator>= ( const Rational r,
const int &  s 
)
friend

greater than or equal to operator for Rational and int

Definition at line 3780 of file rational.cpp.

◆ operator>= [7/7]

bool operator>= ( const int &  r,
const Rational s 
)
friend

greater than or equal to operator for int and Rational

Definition at line 3828 of file rational.cpp.

◆ rationalToString

std::string rationalToString ( const Rational r,
const int  precision 
)
friend

convert rational number to string

Definition at line 3451 of file rational.cpp.

◆ readStringRational

bool readStringRational ( const char *  s,
Rational value 
)
friend

read Rational from string

Definition at line 3461 of file rational.cpp.

◆ sign

int sign ( const Rational r)
friend

Sign function; returns 1 if r > 0, 0 if r = 0, and -1 if r < 0.

Definition at line 3921 of file rational.cpp.

◆ spxAbs

Rational spxAbs ( const Rational r)
friend

Absolute.

absolute function

Definition at line 3908 of file rational.cpp.

Member Data Documentation

◆ dpointer