#include <iostream>
#define GIVARO_LENSTRA
#include <givaro/givintnumtheo.h>
#include <givaro/givtimer.h>
#ifndef TIMING
#define TIMING 1
#endif
int main(int argc, char** argv)
{
IntNumTheoDom<> IP;
#ifndef __GIVARO_GMP_NO_CXX
IP.seeding();
#endif
IntNumTheoDom<>::Element a,pr;
if (argc > 1) a = IntNumTheoDom<>::Element(argv[1]); else std::cin >> a;
uint64_t runs;
Timer tim; tim.clear();
Integer phin; IP.
sub(phin,a,IP.
one);
std::vector<Integer> Lf;
IP.
write(std::cout <<
"Totient : ", Lf,phin) << std::endl;
tim.start();
for(uint64_t i = 0; i < TIMING; ++i)
IP.prim_root_of_prime(pr, a);
tim.stop();
IP.write( std::cout << "Deterministic : ", pr ) << std::endl;
std::cerr << tim << std::endl;
}
tim.start();
for(uint64_t i = 0; i < TIMING; ++i)
IP.prim_root(pr, runs, a);
tim.stop();
IP.write( std::cout << "Random : ", pr ) << std::endl;
std::cerr << tim << " (" << runs << " runs)" << std::endl;
tim.start();
for(uint64_t i = 0; i < TIMING; ++i)
IP.lowest_prim_root(pr, a);
tim.stop();
IP.write( std::cout << "Lowest : ", pr ) << std::endl;
std::cerr << tim << std::endl;
return 0;
}
Namespace in which the whole Givaro library resides.
Definition: all_field.C:23