Exemple #1
0
void profDriver_NTL_poly_div2(char* params)
{
   unsigned long max_bits;
   double ratio;
    
   sscanf(params, "%ld %lf", &max_bits, &ratio);
 
   test_support_init();
   prof2d_set_sampler(sample_NTL_poly_div2);
   run_triangle(max_bits, ratio);
   test_support_cleanup();
}
Exemple #2
0
void profDriver_F_mpz_poly_mul(char* params)
{
   ulong max_length;
   double ratio;

   sscanf(params, "%ld %lf", &max_length, &ratio);

   test_support_init();
   prof2d_set_sampler(sample_F_mpz_poly_mul);
   run_triangle(max_length, ratio);
   test_support_cleanup();
}