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.

46 lines
971 B

25 years ago
  1. #include <cln/number.h>
  2. #include <cln/io.h>
  3. #include <cln/float.h>
  4. #include <cln/lfloat.h>
  5. #include "float/lfloat/cl_LF.h"
  6. #include <cln/real.h>
  7. #include <cln/random.h>
  8. #include <cstdlib>
  9. #include <cstring>
  10. #include <cln/timing.h>
  11. using namespace cln;
  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 < 3)
  20. exit(1);
  21. extern double cl_atanx_factor;
  22. extern int cl_atan_algo;
  23. uintL len = atoi(argv[1]);
  24. cl_atanx_factor = atof(argv[2]);
  25. #if 0
  26. cl_LF one = cl_I_to_LF(1,len);
  27. cl_F x = scale_float(random_F(one),-1);
  28. cout << x << endl;
  29. #else
  30. cl_F x = sqrt(cl_I_to_LF(2,len))-1;
  31. #endif
  32. cl_F y;
  33. cl_atan_algo = 0;
  34. { CL_TIMING;
  35. for (int rep = repetitions; rep > 0; rep--)
  36. { y = atan(x); }
  37. }
  38. cout << y << endl;
  39. cl_atan_algo = 1;
  40. { CL_TIMING;
  41. for (int rep = repetitions; rep > 0; rep--)
  42. { y = atan(x); }
  43. }
  44. cout << y << endl;
  45. }