/third_party/boost/libs/math/test/ |
D | test_legendre.hpp | 41 funcp = boost::math::legendre_p<value_type>; in do_test_legendre_p() 43 funcp = boost::math::legendre_p; in do_test_legendre_p() 94 pg funcp = boost::math::legendre_p<value_type>; in do_test_assoc_legendre_p() 96 pg funcp = boost::math::legendre_p; in do_test_assoc_legendre_p() 127 do_test_legendre_p<T>(legendre_p, name, "Legendre Polynomials: Small Values"); in test_legendre_p() 147 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::legendre_p(1, static_cast<T>(0.5L)), static_cast<T>(0.5L… in test_spots() 148 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::legendre_p(-1, static_cast<T>(0.5L)), static_cast<T>(1L)… in test_spots() 149 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::legendre_p(4, static_cast<T>(0.5L)), static_cast<T>(-0.2… in test_spots() 150 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::legendre_p(-4, static_cast<T>(0.5L)), static_cast<T>(-0.… in test_spots() 151 …BOOST_CHECK_CLOSE_FRACTION(::boost::math::legendre_p(7, static_cast<T>(0.5L)), static_cast<T>(0.22… in test_spots() [all …]
|
D | test_legendre_hooks.hpp | 13 inline float legendre_p(int l, float a) in legendre_p() function 15 inline double legendre_p(int l, double a) in legendre_p() function 17 inline long double legendre_p(int l, long double a) in legendre_p() function 33 …boost::math::concepts::real_concept legendre_p(int, boost::math::concepts::real_concept){ return 0… in legendre_p() function
|
D | legendre_stieltjes_test.cpp | 17 using boost::math::legendre_p; 43 Real p2 = legendre_p(2, x); in test_legendre_stieltjes() 47 Real p3 = legendre_p(3, x); in test_legendre_stieltjes() 51 Real p4 = legendre_p(4, x); in test_legendre_stieltjes() 57 Real p5 = legendre_p(5, x); in test_legendre_stieltjes()
|
D | test_policy_sf.cpp | 91 TEST_POLICY_SF(legendre_p(5, 0.75)); in BOOST_AUTO_TEST_CASE() 92 TEST_POLICY_SF(legendre_p(7, 3, 0.75)); in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/libs/math/test/compile_test/ |
D | sf_legendre_incl_test.cpp | 18 check_result<float>(boost::math::legendre_p<float>(i, f)); in compile_and_link_test() 19 check_result<double>(boost::math::legendre_p<double>(i, d)); in compile_and_link_test() 21 check_result<long double>(boost::math::legendre_p<long double>(i, l)); in compile_and_link_test() 29 check_result<float>(boost::math::legendre_p<float>(i, i, f)); in compile_and_link_test() 30 check_result<double>(boost::math::legendre_p<double>(i, i, d)); in compile_and_link_test() 32 check_result<long double>(boost::math::legendre_p<long double>(i, i, l)); in compile_and_link_test()
|
D | instantiate.hpp | 224 boost::math::legendre_p(1, v1); in instantiate() 225 boost::math::legendre_p(1, 0, v1); in instantiate() 438 boost::math::legendre_p(1, v1 * 1); in instantiate() 439 boost::math::legendre_p(1, 0, v1 * 1); in instantiate() 623 boost::math::legendre_p(1, v1, pol); in instantiate() 624 boost::math::legendre_p(1, 0, v1, pol); in instantiate() 840 test::legendre_p(1, v1); in instantiate() 841 test::legendre_p(1, 0, v1); in instantiate() 1075 boost::math::legendre_p(1, 0, s); in instantiate_mixed() 1226 boost::math::legendre_p(1, 0, s, pol); in instantiate_mixed() [all …]
|
/third_party/boost/libs/math/doc/sf/ |
D | legendre.qbk | 12 ``__sf_result`` legendre_p(int n, T x); 15 ``__sf_result`` legendre_p(int n, T x, const ``__Policy``&); 30 ``__sf_result`` legendre_p(int n, int m, T x); 33 ``__sf_result`` legendre_p(int n, int m, T x, const ``__Policy``&); 59 ``__sf_result`` legendre_p(int l, T x); 62 ``__sf_result`` legendre_p(int l, T x, const ``__Policy``&); 77 [graph legendre_p] 106 ``__sf_result`` legendre_p(int l, int m, T x); 109 ``__sf_result`` legendre_p(int l, int m, T x, const ``__Policy``&); 177 v.push_back(legendre_p(0, x)); [all …]
|
/third_party/boost/libs/math/reporting/performance/ |
D | test_legendre.cpp | 26 add_data(legendre_p); in main() 31 …screen_data([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1]); }, [](… in main() 47 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1… in main() 59 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1… in main()
|
D | test_assoc_legendre.cpp | 29 …screen_data([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1], v[2]); … in main() 45 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1… in main() 57 …time = exec_timed_test([](const std::vector<double>& v){ return boost::math::legendre_p(v[0], v[1… in main()
|
D | test_legendre_q.cpp | 26 add_data(legendre_p); in main()
|
/third_party/boost/boost/math/special_functions/ |
D | legendre.hpp | 222 legendre_p(int l, T x, const Policy& pol) in legendre_p() function 247 legendre_p(int l, T x) in legendre_p() function 249 return boost::math::legendre_p(l, x, policies::policy<>()); in legendre_p() 323 return boost::math::legendre_p(l, x, pol); in legendre_p_imp() 357 legendre_p(int l, int m, T x, const Policy& pol) in legendre_p() function 366 legendre_p(int l, int m, T x) in legendre_p() function 368 return boost::math::legendre_p(l, m, x, policies::policy<>()); in legendre_p()
|
D | math_fwd.hpp | 184 legendre_p(int l, T x); 199 legendre_p(int l, T x, const Policy& pol); 218 legendre_p(int l, int m, T x); 222 legendre_p(int l, int m, T x, const Policy& pol); 1228 legendre_p(int l, T x){ return ::boost::math::legendre_p(l, x, Policy()); }\ 1232 legendre_p_prime(int l, T x){ return ::boost::math::legendre_p(l, x, Policy()); }\ 1242 legendre_p(int l, int m, T x){ return ::boost::math::legendre_p(l, m, x, Policy()); }\
|
/third_party/boost/libs/math/example/ |
D | legendre_stieltjes_example.cpp | 14 using boost::math::legendre_p; 66 …kronrod_weights[i] = static_cast<Real>(2)/(static_cast<Real>(order+1)*legendre_p(order, node)*E.pr… in gauss_kronrod_rule()
|
/third_party/boost/libs/multiprecision/test/concepts/ |
D | sf_concept_check_poly.cpp | 70 boost::math::legendre_p(1, v1); in test_extra() 71 boost::math::legendre_p(1, 0, v1); in test_extra()
|
/third_party/boost/libs/math/tools/ |
D | legendre_data.cpp | 22 T r1 = legendre_p(boost::math::tools::real_cast<int>(n), x); in legendre_p_data() 34 T r1 = legendre_p(l, m, x); in assoc_legendre_p_data()
|
/third_party/boost/libs/math/src/tr1/ |
D | legendrel.cpp | 16 return c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(n, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
|
D | legendre.cpp | 16 return c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(n, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
|
D | legendref.cpp | 16 return c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(n, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
|
D | assoc_legendref.cpp | 16 return (m&1 ? -1 : 1) * c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(l, m, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
|
D | assoc_legendrel.cpp | 16 return (m&1 ? -1 : 1) * c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(l, m, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
|
D | assoc_legendre.cpp | 16 return (m&1 ? -1 : 1) * c_policies::legendre_p BOOST_PREVENT_MACRO_SUBSTITUTION(l, m, x); in BOOST_PREVENT_MACRO_SUBSTITUTION()
|
/third_party/boost/libs/math/doc/equations/ |
D | legendre_0.mml | 3 <mtext>legendre_p</mtext>
|
D | legendre_1.mml | 3 <mtext>legendre_p</mtext>
|
/third_party/boost/libs/math/test/test_instances/ |
D | test_instances.hpp | 118 legendre_p(int l, BOOST_MATH_TEST_TYPE x); 121 legendre_p(int l, BOOST_MATH_TEST_TYPE x, const policies::policy<>& pol); 133 legendre_p(int l, int m, BOOST_MATH_TEST_TYPE x); 136 legendre_p(int l, int m, BOOST_MATH_TEST_TYPE x, const policies::policy<>& pol);
|
/third_party/boost/libs/math/reporting/accuracy/ |
D | bindings.hpp | 719 #define LEGENDRE_P_FUNCTION_TO_TEST boost::math::legendre_p 721 #define LEGENDRE_PA_FUNCTION_TO_TEST boost::math::legendre_p
|