linbox
Modules | Data Structures | Typedefs
Integers
ring

LinBox integer representation and operations. More...

Modules

 Primes
 NO DOC.

Data Structures

class  PID_double
 NO DOC. More...
class  PID_integer
 Domain for integer operations. More...
class  FieldAXPY< UnparametricField< integer > >
 NO DOc. More...
class  RandomIntegerIterator< _Unsigned >
 Random Prime Generator. More...
class  RandomIntegerIter< _Unsigned >
 Random Integer Iterator. More...

Typedefs

typedef Givaro::Integer integer
 Integers in LinBox.

Detailed Description

LinBox integer representation and operations.

LinBox integers come from Givaro which uses GMP. This ensures fastest operations.

LinBox provides :

other use of integers ?

Warning
due to the construction of Givaro, you should always prefer to group operations as in the example :
Integer a=1,b=1,c=1;
c += a * b ; // slow
axpyin(c,a,b) ; // faster
See Also
Givaro for documentation.

Typedef Documentation

typedef Givaro::Integer integer

Integers in LinBox.

Integer representation from Givaro.

Examples:
examples/smithvalence.C.