special_functions.hpp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. // Copyright John Maddock 2006, 2007, 2012, 2014.
  2. // Copyright Paul A. Bristow 2006, 2007, 2012
  3. // Use, modification and distribution are subject to the
  4. // Boost Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. // This file includes *all* the special functions.
  7. // this may be useful if many are used
  8. // - to avoid including each function individually.
  9. #ifndef BOOST_MATH_SPECIAL_FUNCTIONS_HPP
  10. #define BOOST_MATH_SPECIAL_FUNCTIONS_HPP
  11. #include <boost/math/special_functions/airy.hpp>
  12. #include <boost/math/special_functions/acosh.hpp>
  13. #include <boost/math/special_functions/asinh.hpp>
  14. #include <boost/math/special_functions/atanh.hpp>
  15. #include <boost/math/special_functions/bernoulli.hpp>
  16. #include <boost/math/special_functions/bessel.hpp>
  17. #include <boost/math/special_functions/bessel_prime.hpp>
  18. #include <boost/math/special_functions/beta.hpp>
  19. #include <boost/math/special_functions/binomial.hpp>
  20. #include <boost/math/special_functions/cbrt.hpp>
  21. #include <boost/math/special_functions/cos_pi.hpp>
  22. #include <boost/math/special_functions/chebyshev.hpp>
  23. #include <boost/math/special_functions/digamma.hpp>
  24. #include <boost/math/special_functions/ellint_1.hpp>
  25. #include <boost/math/special_functions/ellint_2.hpp>
  26. #include <boost/math/special_functions/ellint_3.hpp>
  27. #include <boost/math/special_functions/ellint_d.hpp>
  28. #include <boost/math/special_functions/jacobi_zeta.hpp>
  29. #include <boost/math/special_functions/heuman_lambda.hpp>
  30. #include <boost/math/special_functions/ellint_rc.hpp>
  31. #include <boost/math/special_functions/ellint_rd.hpp>
  32. #include <boost/math/special_functions/ellint_rf.hpp>
  33. #include <boost/math/special_functions/ellint_rj.hpp>
  34. #include <boost/math/special_functions/ellint_rg.hpp>
  35. #include <boost/math/special_functions/erf.hpp>
  36. #include <boost/math/special_functions/expint.hpp>
  37. #include <boost/math/special_functions/expm1.hpp>
  38. #include <boost/math/special_functions/factorials.hpp>
  39. #include <boost/math/special_functions/fpclassify.hpp>
  40. #include <boost/math/special_functions/gamma.hpp>
  41. #include <boost/math/special_functions/hermite.hpp>
  42. #include <boost/math/special_functions/hypot.hpp>
  43. #include <boost/math/special_functions/hypergeometric_1F0.hpp>
  44. #include <boost/math/special_functions/hypergeometric_0F1.hpp>
  45. #include <boost/math/special_functions/hypergeometric_2F0.hpp>
  46. #if !defined(BOOST_NO_CXX11_AUTO_DECLARATIONS) && !defined(BOOST_NO_CXX11_LAMBDAS) && !defined(BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX) && !defined(BOOST_NO_CXX11_HDR_TUPLE)
  47. #include <boost/math/special_functions/hypergeometric_1F1.hpp>
  48. #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  49. #include <boost/math/special_functions/hypergeometric_pFq.hpp>
  50. #endif
  51. #endif
  52. #include <boost/math/special_functions/jacobi_elliptic.hpp>
  53. #include <boost/math/special_functions/laguerre.hpp>
  54. #include <boost/math/special_functions/lanczos.hpp>
  55. #include <boost/math/special_functions/legendre.hpp>
  56. #include <boost/math/special_functions/log1p.hpp>
  57. #include <boost/math/special_functions/math_fwd.hpp>
  58. #include <boost/math/special_functions/next.hpp>
  59. #include <boost/math/special_functions/owens_t.hpp>
  60. #include <boost/math/special_functions/polygamma.hpp>
  61. #include <boost/math/special_functions/powm1.hpp>
  62. #include <boost/math/special_functions/sign.hpp>
  63. #include <boost/math/special_functions/sin_pi.hpp>
  64. #include <boost/math/special_functions/sinc.hpp>
  65. #include <boost/math/special_functions/sinhc.hpp>
  66. #include <boost/math/special_functions/spherical_harmonic.hpp>
  67. #include <boost/math/special_functions/sqrt1pm1.hpp>
  68. #include <boost/math/special_functions/zeta.hpp>
  69. #include <boost/math/special_functions/modf.hpp>
  70. #include <boost/math/special_functions/round.hpp>
  71. #include <boost/math/special_functions/trunc.hpp>
  72. #include <boost/math/special_functions/pow.hpp>
  73. #include <boost/math/special_functions/next.hpp>
  74. #include <boost/math/special_functions/owens_t.hpp>
  75. #include <boost/math/special_functions/hankel.hpp>
  76. #include <boost/math/special_functions/ulp.hpp>
  77. #include <boost/math/special_functions/relative_difference.hpp>
  78. #include <boost/math/special_functions/lambert_w.hpp>
  79. #endif // BOOST_MATH_SPECIAL_FUNCTIONS_HPP