Module rational

Module rational 

Source
Expand description

Rational-based types based on Q.

This module contains the type Q for rationals with arbitrary length and constructions over it. Each struct provides examples regarding usage. In general you can mix Q’s with any type of rust integer, whenever the corresponding method takes as input integers of type Into<Q>, e.g. the standard rust integers or tuples of standard rust integers.

Structs§

MatQ
MatQ is a matrix with entries of type Q.
PolyOverQ
PolyOverQ is a type of polynomial with arbitrarily many coefficients of type Q.
Q
Q is any rational value.