linbox
Modules | Typedefs
Integers

LinBox integer representation and operations. More...

+ Collaboration diagram for Integers:

Modules

 Primes
 NO DOC.
 

Typedefs

typedef Givaro::Integer integer
 Integers in LinBox. More...
 

Detailed Description

LinBox integer representation and operations.

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

LinBox provides :

The Ring of integers is provided by Givaro: Givaro::ZRing<Integer>

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

◆ integer

typedef Givaro::Integer integer

Integers in LinBox.

Integer representation from Givaro.

Examples:
examples/smithsparse.C.