You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.1 KiB

25 years ago
  1. #include <cl_number.h>
  2. #include <cl_io.h>
  3. #include <cl_integer.h>
  4. #include <cl_lfloat.h>
  5. #include "cl_LF.h"
  6. #include <cl_rational.h>
  7. #include <cl_float_io.h>
  8. #include <cl_random.h>
  9. #include <stdlib.h>
  10. #include <string.h>
  11. #include <cl_timing.h>
  12. int main (int argc, char * argv[])
  13. {
  14. int repetitions = 1;
  15. if ((argc >= 3) && !strcmp(argv[1],"-r")) {
  16. repetitions = atoi(argv[2]);
  17. argc -= 2; argv += 2;
  18. }
  19. if (argc < 4)
  20. exit(1);
  21. cl_I m1 = cl_I(argv[1]);
  22. cl_I M1 = (cl_I)1 << (intDsize*m1);
  23. cl_I m2 = cl_I(argv[2]);
  24. cl_I M2 = (cl_I)1 << (intDsize*m2);
  25. uintL m3 = atoi(argv[1]);
  26. cl_I u;
  27. cl_I v;
  28. do { u = random_I(M1); } while (zerop(u));
  29. do { v = random_I(M2); } while (zerop(v) || gcd(u,v) > 1);
  30. cl_RA x = u / v;
  31. cl_LF y = The(cl_LF)(random_F(cl_I_to_LF(1,m3)));
  32. cl_F p;
  33. { CL_TIMING;
  34. for (int rep = repetitions; rep > 0; rep--)
  35. { p = The(cl_LF)(cl_I_LF_div(u,The(cl_LF)(cl_LF_I_mul(y,v)))); }
  36. }
  37. cout << p << endl;
  38. { CL_TIMING;
  39. for (int rep = repetitions; rep > 0; rep--)
  40. { p = cl_RA_to_LF(x,TheLfloat(y)->len) / y; }
  41. }
  42. cout << p << endl;
  43. }