[][src]Type Definition reikna::continued_fraction::ContinuedFraction

type ContinuedFraction = Vec<u64>;

Type alias for continued fractions.

These are Vec<u64s of the form:

[a; b, c, d, ...]

where a is the initial term of the fraction, and b, c, d, ... are repeating terms in the case of an infinite fraction, or simply the other terms in the case of a finite fraction.