DGtal
1.5.beta
|
This fraction is a model of CPositiveIrreducibleFraction. More...
#include <DGtal/arithmetic/LighterSternBrocot.h>
Public Types | |
typedef TInteger | Integer |
typedef TQuotient | Quotient |
typedef LighterSternBrocot< TInteger, TQuotient, TMap > | SternBrocotTree |
typedef SternBrocotTree::Fraction | Self |
typedef NumberTraits< Integer >::UnsignedVersion | UnsignedInteger |
typedef std::pair< Quotient, Quotient > | Value |
typedef std::vector< Quotient > | CFracSequence |
typedef InputIteratorWithRankOnSequence< CFracSequence, Quotient > | ConstIterator |
typedef Value | value_type |
typedef ConstIterator | const_iterator |
typedef const value_type & | const_reference |
Public Member Functions | |
Fraction (Integer aP, Integer aQ, Fraction start=SternBrocotTree::zeroOverOne()) | |
Fraction (Node *sb_node=0, bool sup1=false) | |
Fraction (const Self &other) | |
Self & | operator= (const Self &other) |
bool | null () const |
Integer | p () const |
Integer | q () const |
Quotient | u () const |
Quotient | k () const |
bool | isSup1 () const |
Quotient | trueK () const |
Fraction | left () const |
Fraction | right () const |
bool | even () const |
bool | odd () const |
Fraction | ancestor () const |
bool | isAncestorDirect () const |
Fraction | father () const |
Fraction | father (Quotient m) const |
Fraction | previousPartial () const |
Fraction | inverse () const |
Fraction | partial (Quotient kp) const |
Fraction | reduced (Quotient i) const |
void | push_back (const std::pair< Quotient, Quotient > "ient) |
void | pushBack (const std::pair< Quotient, Quotient > "ient) |
void | getSplit (Fraction &f1, Fraction &f2) const |
void | getSplitBerstel (Fraction &f1, Quotient &nb1, Fraction &f2, Quotient &nb2) const |
void | getCFrac (std::vector< Quotient > "ients) const |
bool | equals (Integer p1, Integer q1) const |
bool | lessThan (Integer p1, Integer q1) const |
bool | moreThan (Integer p1, Integer q1) const |
bool | operator== (const Fraction &other) const |
bool | operator!= (const Fraction &other) const |
bool | operator< (const Fraction &other) const |
bool | operator> (const Fraction &other) const |
void | selfDisplay (std::ostream &out) const |
ConstIterator | begin () const |
ConstIterator | end () const |
Protected Member Functions | |
Fraction | child (Quotient v) const |
Fraction | origin () const |
Fraction | next (Quotient v) const |
Private Attributes | |
Node * | myNode |
bool | mySup1 |
When 'true', the fraction is greater or equal than 1/1 (to its right). More... | |
This fraction is a model of CPositiveIrreducibleFraction.
It represents a positive irreducible fraction, i.e. some p/q qith gcd(p,q)=1. It is an inner class of LighterSternBrocot. This representation of a fraction is simply a pointer to the corresponding node in this tree, plus a boolean indicating if it is bigger than 1/1.
Definition at line 216 of file LighterSternBrocot.h.
typedef std::vector<Quotient> DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::CFracSequence |
Definition at line 224 of file LighterSternBrocot.h.
typedef ConstIterator DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::const_iterator |
Definition at line 229 of file LighterSternBrocot.h.
typedef const value_type& DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::const_reference |
Definition at line 230 of file LighterSternBrocot.h.
typedef InputIteratorWithRankOnSequence<CFracSequence,Quotient> DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::ConstIterator |
Definition at line 225 of file LighterSternBrocot.h.
typedef TInteger DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::Integer |
Definition at line 218 of file LighterSternBrocot.h.
typedef TQuotient DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::Quotient |
Definition at line 219 of file LighterSternBrocot.h.
typedef SternBrocotTree::Fraction DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::Self |
Definition at line 221 of file LighterSternBrocot.h.
typedef LighterSternBrocot<TInteger, TQuotient, TMap> DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::SternBrocotTree |
Definition at line 220 of file LighterSternBrocot.h.
typedef NumberTraits<Integer>::UnsignedVersion DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::UnsignedInteger |
Definition at line 222 of file LighterSternBrocot.h.
typedef std::pair<Quotient, Quotient> DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::Value |
Definition at line 223 of file LighterSternBrocot.h.
typedef Value DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::value_type |
Definition at line 228 of file LighterSternBrocot.h.
DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::Fraction | ( | Integer | aP, |
Integer | aQ, | ||
Fraction | start = SternBrocotTree::zeroOverOne() |
||
) |
Creates the fraction aP/aQ. Complexity is in O(n) where n is the depth of continued fraction of aP/aQ.
aP | the numerator (>=0) |
aQ | the denominator (>=0) |
start | (optional) unused in this representation. |
DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::Fraction | ( | Node * | sb_node = 0 , |
bool | sup1 = false |
||
) |
Default constructor.
sb_node | the associated node (or 0 for null fraction). |
sup1 | when 'false', the fraction is smaller greater than 1/1 and represents q/p. |
DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::Fraction | ( | const Self & | other | ) |
Copy constructor.
other | the object to clone. |
Fraction DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::ancestor | ( | ) | const |
ConstIterator DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::begin | ( | ) | const |
|
protected |
ConstIterator DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::end | ( | ) | const |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::equals | ( | Integer | p1, |
Integer | q1 | ||
) | const |
p1 | a numerator. |
q1 | a denominator. |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::even | ( | ) | const |
Fraction DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::father | ( | ) | const |
Fraction DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::father | ( | Quotient | m | ) | const |
m | a quotient between 1 and uk-1. |
void DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::getCFrac | ( | std::vector< Quotient > & | quotients | ) | const |
quotients | (returns) the coefficients of the continued fraction of 'this'. |
void DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::getSplit | ( | Fraction & | f1, |
Fraction & | f2 | ||
) | const |
Splitting formula, O(1) time complexity. This fraction should not be 0/1 or 1/0. NB: 'this' = [f1] \(\oplus\) [f2].
f1 | (returns) the left part of the split. |
f2 | (returns) the right part of the split. |
void DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::getSplitBerstel | ( | Fraction & | f1, |
Quotient & | nb1, | ||
Fraction & | f2, | ||
Quotient & | nb2 | ||
) | const |
Berstel splitting formula, O(1) time complexity. This fraction should not be 0/1 or 1/0. NB: 'this' = nb1*[f1] \(\oplus\) nb2*[f2]. Also, if 'this->k' is even then nb1=1, otherwise nb2=1.
f1 | (returns) the left part of the split (left pattern). |
nb1 | (returns) the number of repetition of the left pattern |
f2 | (returns) the right part of the split (right pattern). |
nb2 | (returns) the number of repetition of the right pattern |
Fraction DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::inverse | ( | ) | const |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::isAncestorDirect | ( | ) | const |
|
inline |
Definition at line 287 of file LighterSternBrocot.h.
References DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::mySup1.
Quotient DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::k | ( | ) | const |
Fraction DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::left | ( | ) | const |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::lessThan | ( | Integer | p1, |
Integer | q1 | ||
) | const |
p1 | a numerator. |
q1 | a denominator. |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::moreThan | ( | Integer | p1, |
Integer | q1 | ||
) | const |
p1 | a numerator. |
q1 | a denominator. |
|
protected |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::null | ( | ) | const |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::odd | ( | ) | const |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::operator!= | ( | const Fraction & | other | ) | const |
other | any fraction. |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::operator< | ( | const Fraction & | other | ) | const |
other | any fraction. |
Self& DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::operator= | ( | const Self & | other | ) |
Assignment
other | the object to clone. |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::operator== | ( | const Fraction & | other | ) | const |
other | any fraction. |
bool DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::operator> | ( | const Fraction & | other | ) | const |
other | any fraction. |
|
protected |
Integer DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::p | ( | ) | const |
Fraction DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::partial | ( | Quotient | kp | ) | const |
kp | the chosen depth of the partial fraction (kp <= k()). |
Fraction DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::previousPartial | ( | ) | const |
void DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::push_back | ( | const std::pair< Quotient, Quotient > & | quotient | ) |
Modifies this fraction \([u_0,...,u_k]\) to obtain the fraction \([u_0,...,u_k,m]\). The depth of the quotient must be given, since continued fractions have two writings \([u_0,...,u_k]\) and \([u_0,...,u_k - 1, 1]\).
Useful to create output iterators, for instance with
quotient | the pair \((m,k+1)\). |
void DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::pushBack | ( | const std::pair< Quotient, Quotient > & | quotient | ) |
Modifies this fraction \([u_0,...,u_k]\) to obtain the fraction \([u_0,...,u_k,m]\). The depth of the quotient must be given, since continued fractions have two writings \([u_0,...,u_k]\) and \([u_0,...,u_k - 1, 1]\).
See push_back for creating output iterators.
quotient | the pair \((m,k+1)\). |
Integer DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::q | ( | ) | const |
Fraction DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::reduced | ( | Quotient | i | ) | const |
Fraction DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::right | ( | ) | const |
void DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::selfDisplay | ( | std::ostream & | out | ) | const |
Writes/Displays the fraction on an output stream.
out | the output stream where the object is written. |
|
inline |
Definition at line 289 of file LighterSternBrocot.h.
References DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Node::k, and DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::myNode.
Quotient DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::u | ( | ) | const |
|
private |
The pointer to the corresponding node in the Stern-Brocot tree, i.e. the node p/q if p >= q or the node q/p otherwise.
Definition at line 235 of file LighterSternBrocot.h.
Referenced by DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::trueK().
|
private |
When 'true', the fraction is greater or equal than 1/1 (to its right).
Definition at line 237 of file LighterSternBrocot.h.
Referenced by DGtal::LighterSternBrocot< TInteger, TQuotient, TMap >::Fraction::isSup1().