ibeta_invab_data.cpp 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. // (C) Copyright John Maddock 2006.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #include <boost/math/special_functions/beta.hpp>
  6. #include <boost/math/constants/constants.hpp>
  7. #include <boost/lexical_cast.hpp>
  8. #include <fstream>
  9. #include <boost/math/tools/test_data.hpp>
  10. #include <boost/random.hpp>
  11. #include "mp_t.hpp"
  12. using namespace boost::math::tools;
  13. //
  14. // Force trunctation to float precision of input values:
  15. // we must ensure that the input values are exactly representable
  16. // in whatever type we are testing, or the output values will all
  17. // be thrown off:
  18. //
  19. float external_f;
  20. float force_truncate(const float* f)
  21. {
  22. external_f = *f;
  23. return external_f;
  24. }
  25. float truncate_to_float(mp_t r)
  26. {
  27. float f = boost::math::tools::real_cast<float>(r);
  28. return force_truncate(&f);
  29. }
  30. boost::mt19937 rnd;
  31. boost::uniform_real<float> ur_a(1.0F, 5.0F);
  32. boost::variate_generator<boost::mt19937, boost::uniform_real<float> > gen(rnd, ur_a);
  33. boost::uniform_real<float> ur_a2(0.0F, 100.0F);
  34. boost::variate_generator<boost::mt19937, boost::uniform_real<float> > gen2(rnd, ur_a2);
  35. struct ibeta_inv_data_generator
  36. {
  37. boost::math::tuple<mp_t, mp_t, mp_t, mp_t, mp_t, mp_t, mp_t> operator()
  38. (mp_t bp, mp_t x_, mp_t p_)
  39. {
  40. float b = truncate_to_float(real_cast<float>(gen() * pow(mp_t(10), bp)));
  41. float x = truncate_to_float(real_cast<float>(x_));
  42. float p = truncate_to_float(real_cast<float>(p_));
  43. std::cout << b << " " << x << " " << p << std::flush;
  44. mp_t inv = boost::math::ibeta_inva(mp_t(b), mp_t(x), mp_t(p));
  45. std::cout << " " << inv << std::flush;
  46. mp_t invc = boost::math::ibetac_inva(mp_t(b), mp_t(x), mp_t(p));
  47. std::cout << " " << invc << std::endl;
  48. mp_t invb = boost::math::ibeta_invb(mp_t(b), mp_t(x), mp_t(p));
  49. std::cout << " " << invb << std::flush;
  50. mp_t invbc = boost::math::ibetac_invb(mp_t(b), mp_t(x), mp_t(p));
  51. std::cout << " " << invbc << std::endl;
  52. return boost::math::make_tuple(b, x, p, inv, invc, invb, invbc);
  53. }
  54. };
  55. int main(int argc, char*argv [])
  56. {
  57. bool cont;
  58. std::string line;
  59. parameter_info<mp_t> arg1, arg2, arg3;
  60. test_data<mp_t> data;
  61. std::cout << "Welcome.\n"
  62. "This program will generate spot tests for the inverse incomplete beta function:\n"
  63. " ibeta_inva(a, p) and ibetac_inva(a, q)\n\n";
  64. arg1 = make_periodic_param(mp_t(-5), mp_t(6), 11);
  65. arg2 = make_random_param(mp_t(0.0001), mp_t(1), 10);
  66. arg3 = make_random_param(mp_t(0.0001), mp_t(1), 10);
  67. arg1.type |= dummy_param;
  68. arg2.type |= dummy_param;
  69. arg3.type |= dummy_param;
  70. data.insert(ibeta_inv_data_generator(), arg1, arg2, arg3);
  71. line = "ibeta_inva_data.ipp";
  72. std::ofstream ofs(line.c_str());
  73. ofs << std::scientific << std::setprecision(40);
  74. write_code(ofs, data, "ibeta_inva_data");
  75. return 0;
  76. }