|
DGtal 1.4.2
|
This fraction is a model of CPositiveIrreducibleFraction. More...
#include <DGtal/arithmetic/LightSternBrocot.h>
Public Types | |
| typedef TInteger | Integer |
| typedef TQuotient | Quotient |
| typedef LightSternBrocot< 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 | next (Quotient v) const |
| Fraction | next1 (Quotient v) const |
Private Attributes | |
| Node * | myNode |
| bool | mySup1 |
| When 'true', the fraction is greater than 1/1 (to its right). | |
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 LightSternBrocot. 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 192 of file LightSternBrocot.h.
| std::vector<Quotient> DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::CFracSequence |
Definition at line 200 of file LightSternBrocot.h.
| ConstIterator DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::const_iterator |
Definition at line 205 of file LightSternBrocot.h.
| const value_type& DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::const_reference |
Definition at line 206 of file LightSternBrocot.h.
| InputIteratorWithRankOnSequence<CFracSequence,Quotient> DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::ConstIterator |
Definition at line 201 of file LightSternBrocot.h.
| TInteger DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::Integer |
Definition at line 194 of file LightSternBrocot.h.
| TQuotient DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::Quotient |
Definition at line 195 of file LightSternBrocot.h.
| SternBrocotTree::Fraction DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::Self |
Definition at line 197 of file LightSternBrocot.h.
| LightSternBrocot<TInteger, TQuotient, TMap> DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::SternBrocotTree |
Definition at line 196 of file LightSternBrocot.h.
| NumberTraits<Integer>::UnsignedVersion DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::UnsignedInteger |
Definition at line 198 of file LightSternBrocot.h.
| std::pair<Quotient, Quotient> DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::Value |
Definition at line 199 of file LightSternBrocot.h.
| Value DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::value_type |
Definition at line 204 of file LightSternBrocot.h.
| DGtal::LightSternBrocot< 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::LightSternBrocot< 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 'true', the fraction is greater than 1/1 and represents q/p. |
| DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::Fraction | ( | const Self & | other | ) |
Copy constructor.
| other | the object to clone. |
| Fraction DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::ancestor | ( | ) | const |
| ConstIterator DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::begin | ( | ) | const |
| ConstIterator DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::end | ( | ) | const |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::equals | ( | Integer | p1, |
| Integer | q1 ) const |
| p1 | a numerator. |
| q1 | a denominator. |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::even | ( | ) | const |
| Fraction DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::father | ( | ) | const |
| Fraction DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::father | ( | Quotient | m | ) | const |
| m | a quotient between 1 and uk-1. |
| void DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::getCFrac | ( | std::vector< Quotient > & | quotients | ) | const |
| quotients | (returns) the coefficients of the continued fraction of 'this'. |
| void DGtal::LightSternBrocot< 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::LightSternBrocot< 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::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::inverse | ( | ) | const |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::isAncestorDirect | ( | ) | const |
|
inline |
Definition at line 264 of file LightSternBrocot.h.
References DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::mySup1.
| Quotient DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::k | ( | ) | const |
| Fraction DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::left | ( | ) | const |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::lessThan | ( | Integer | p1, |
| Integer | q1 ) const |
| p1 | a numerator. |
| q1 | a denominator. |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::moreThan | ( | Integer | p1, |
| Integer | q1 ) const |
| p1 | a numerator. |
| q1 | a denominator. |
|
protected |
|
protected |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::null | ( | ) | const |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::odd | ( | ) | const |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::operator!= | ( | const Fraction & | other | ) | const |
| other | any fraction. |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::operator< | ( | const Fraction & | other | ) | const |
| other | any fraction. |
| Self & DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::operator= | ( | const Self & | other | ) |
Assignment
| other | the object to clone. |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::operator== | ( | const Fraction & | other | ) | const |
| other | any fraction. |
| bool DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::operator> | ( | const Fraction & | other | ) | const |
| other | any fraction. |
| Integer DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::p | ( | ) | const |
| Fraction DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::partial | ( | Quotient | kp | ) | const |
| kp | the chosen depth of the partial fraction (kp <= k()). |
| Fraction DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::previousPartial | ( | ) | const |
| void DGtal::LightSternBrocot< 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::LightSternBrocot< 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::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::q | ( | ) | const |
| Fraction DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::reduced | ( | Quotient | i | ) | const |
| Fraction DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::right | ( | ) | const |
| void DGtal::LightSternBrocot< 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 266 of file LightSternBrocot.h.
References DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Node::k, and DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::myNode.
| Quotient DGtal::LightSternBrocot< 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 212 of file LightSternBrocot.h.
Referenced by DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::trueK().
|
private |
When 'true', the fraction is greater than 1/1 (to its right).
Definition at line 214 of file LightSternBrocot.h.
Referenced by DGtal::LightSternBrocot< TInteger, TQuotient, TMap >::Fraction::isSup1().