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.
 
 
 

48 lines
1.2 KiB

  1. //
  2. // Lol Engine - Sample math program: compute Pi
  3. //
  4. // Copyright: (c) 2005-2011 Sam Hocevar <sam@hocevar.net>
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the Do What The Fuck You Want To
  7. // Public License, Version 2, as published by Sam Hocevar. See
  8. // http://sam.zoy.org/projects/COPYING.WTFPL for more details.
  9. //
  10. #if defined HAVE_CONFIG_H
  11. # include "config.h"
  12. #endif
  13. #include "core.h"
  14. using namespace lol;
  15. int main(int argc, char **argv)
  16. {
  17. printf("Pi: "); real::R_PI.print();
  18. printf("e: "); real::R_E.print();
  19. printf("ln(2): "); real::R_LN2.print();
  20. printf("sqrt(2): "); real::R_SQRT2.print();
  21. printf("sqrt(1/2): "); real::R_SQRT1_2.print();
  22. /* Gauss-Legendre computation of Pi -- doesn't work well at all,
  23. * probably because we use finite precision. */
  24. real a = 1.0, b = sqrt((real)0.5), t = 0.25, p = 1.0;
  25. for (int i = 0; i < 3; i++)
  26. {
  27. real a2 = (a + b) * (real)0.5;
  28. real b2 = sqrt(a * b);
  29. real tmp = a - a2;
  30. real t2 = t - p * tmp * tmp;
  31. real p2 = p + p;
  32. a = a2; b = b2; t = t2; p = p2;
  33. }
  34. real sum = a + b;
  35. sum = sum * sum / ((real)4 * t);
  36. sum.print();
  37. return EXIT_SUCCESS;
  38. }