Home
last modified time | relevance | path

Searched refs:math (Results 1 – 25 of 2971) sorted by relevance

12345678910>>...119

/third_party/boost/libs/math/test/compile_test/
Dtr1_incl_test.cpp20 check_result<float>(boost::math::tr1::assoc_laguerre(ui, ui, f)); in compile_and_link_test()
21 check_result<float>(boost::math::tr1::assoc_laguerref(ui, ui, f)); in compile_and_link_test()
22 check_result<double>(boost::math::tr1::assoc_laguerre(ui, ui, d)); in compile_and_link_test()
23 check_result<long double>(boost::math::tr1::assoc_laguerre(ui, ui, l)); in compile_and_link_test()
24 check_result<long double>(boost::math::tr1::assoc_laguerrel(ui, ui, l)); in compile_and_link_test()
25 check_result<double>(boost::math::tr1::assoc_laguerre(ui, ui, i)); in compile_and_link_test()
26 check_result<double>(boost::math::tr1::assoc_laguerre(ui, ui, ui)); in compile_and_link_test()
28 check_result<float>(boost::math::tr1::assoc_legendre(ui, ui, f)); in compile_and_link_test()
29 check_result<float>(boost::math::tr1::assoc_legendref(ui, ui, f)); in compile_and_link_test()
30 check_result<double>(boost::math::tr1::assoc_legendre(ui, ui, d)); in compile_and_link_test()
[all …]
Dinstantiate.hpp22 typedef boost::math::policies::policy<boost::math::policies::promote_float<false>, boost::math::pol…
55 using namespace boost::math; in instantiate()
56 using namespace boost::math::concepts; in instantiate()
169 boost::math::tgamma(v1); in instantiate()
170 boost::math::tgamma1pm1(v1); in instantiate()
171 boost::math::lgamma(v1); in instantiate()
172 boost::math::lgamma(v1, &i); in instantiate()
173 boost::math::digamma(v1); in instantiate()
174 boost::math::trigamma(v1); in instantiate()
175 boost::math::polygamma(i, v1); in instantiate()
[all …]
Dtest_traits.cpp11 using namespace boost::math;
13 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<double>::value == false);
14 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<int>::value == false);
15 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<bernoulli>::value);
16 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<beta_distribution<> >::value);
17 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<binomial>::value);
18 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<cauchy>::value);
19 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<chi_squared>::value);
20 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<exponential>::value);
21 BOOST_STATIC_ASSERT(::boost::math::tools::is_distribution<extreme_value>::value);
[all …]
Dsf_jacobi_incl_test.cpp18 …check_result<float>(boost::math::jacobi_elliptic<float>(f, f, static_cast<float*>(0), static_cast<… in compile_and_link_test()
19 …check_result<double>(boost::math::jacobi_elliptic<double>(d, d, static_cast<double*>(0), static_ca… in compile_and_link_test()
21 …check_result<long double>(boost::math::jacobi_elliptic<long double>(l, l, static_cast<long double*… in compile_and_link_test()
24 check_result<float>(boost::math::jacobi_sn<float>(f, f)); in compile_and_link_test()
25 check_result<double>(boost::math::jacobi_sn<double>(d, d)); in compile_and_link_test()
27 check_result<long double>(boost::math::jacobi_sn<long double>(l, l)); in compile_and_link_test()
30 check_result<float>(boost::math::jacobi_cn<float>(f, f)); in compile_and_link_test()
31 check_result<double>(boost::math::jacobi_cn<double>(d, d)); in compile_and_link_test()
33 check_result<long double>(boost::math::jacobi_cn<long double>(l, l)); in compile_and_link_test()
36 check_result<float>(boost::math::jacobi_dn<float>(f, f)); in compile_and_link_test()
[all …]
/third_party/boost/libs/multiprecision/test/
Dtest_fpclassify.cpp61 const char* method_name(const boost::math::detail::native_tag&) in method_name()
66 const char* method_name(const boost::math::detail::generic_tag<true>&) in method_name()
71 const char* method_name(const boost::math::detail::generic_tag<false>&) in method_name()
76 const char* method_name(const boost::math::detail::ieee_tag&) in method_name()
81 const char* method_name(const boost::math::detail::ieee_copy_all_bits_tag&) in method_name()
86 const char* method_name(const boost::math::detail::ieee_copy_leading_bits_tag&) in method_name()
96 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_NORMAL); in test()
97 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_NORMAL); in test()
98 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), true); in test()
99 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), true); in test()
[all …]
/third_party/python/Lib/test/
Dtest_math.py9 import math
200 if math.isnan(expected) and math.isnan(got):
203 elif math.isinf(expected) or math.isinf(got):
254 self.ftest('pi', math.pi, 3.141592653589793238462643)
255 self.ftest('e', math.e, 2.718281828459045235360287)
256 self.assertEqual(math.tau, 2*math.pi)
259 self.assertRaises(TypeError, math.acos)
260 self.ftest('acos(-1)', math.acos(-1), math.pi)
261 self.ftest('acos(0)', math.acos(0), math.pi/2)
262 self.ftest('acos(1)', math.acos(1), 0)
[all …]
/third_party/boost/libs/math/test/
Dtest_classify.cpp23 const char* method_name(const boost::math::detail::native_tag&) in method_name()
28 const char* method_name(const boost::math::detail::generic_tag<true>&) in method_name()
33 const char* method_name(const boost::math::detail::generic_tag<false>&) in method_name()
38 const char* method_name(const boost::math::detail::ieee_tag&) in method_name()
43 const char* method_name(const boost::math::detail::ieee_copy_all_bits_tag&) in method_name()
48 const char* method_name(const boost::math::detail::ieee_copy_leading_bits_tag&) in method_name()
58 typedef typename boost::math::detail::fp_traits<T>::type traits; in test_classify()
65 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_NORMAL); in test_classify()
66 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_NORMAL); in test_classify()
67 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), true); in test_classify()
[all …]
Dtest_sign.cpp29 BOOST_CHECK_EQUAL((boost::math::signbit)(a), 0); in test_spots()
30 BOOST_CHECK_EQUAL((boost::math::sign)(a), 0); in test_spots()
31 BOOST_CHECK_EQUAL((boost::math::changesign)(b), RealType(-1)); in test_spots()
32 BOOST_CHECK_EQUAL((boost::math::changesign)(c), RealType(+1)); in test_spots()
33 BOOST_CHECK_EQUAL((boost::math::changesign)(a), RealType(0)); in test_spots()
36 BOOST_CHECK_EQUAL((boost::math::changesign)(b), in test_spots()
37 (boost::math::copysign)(b, (boost::math::signbit)(b) ? RealType(1.) : RealType(-1.) )); in test_spots()
40 BOOST_CHECK_EQUAL((boost::math::copysign)(b, a), RealType(1)); in test_spots()
41 BOOST_CHECK_EQUAL((boost::math::copysign)(c, a), RealType(1)); in test_spots()
43 BOOST_CHECK_EQUAL((boost::math::signbit)(a), 0); in test_spots()
[all …]
Dtest_factorials.cpp50 T tolerance = boost::math::tools::epsilon<T>() * 100 * 2; // 2 eps as a percent. in test_spots()
52 ::boost::math::factorial<T>(0), in test_spots()
55 ::boost::math::factorial<T>(1), in test_spots()
58 ::boost::math::factorial<T>(10), in test_spots()
61 ::boost::math::unchecked_factorial<T>(0), in test_spots()
64 ::boost::math::unchecked_factorial<T>(1), in test_spots()
67 ::boost::math::unchecked_factorial<T>(10), in test_spots()
74 ::boost::math::double_factorial<T>(0), in test_spots()
77 ::boost::math::double_factorial<T>(1), in test_spots()
80 ::boost::math::double_factorial<T>(2), in test_spots()
[all …]
Dtest_hankel.cpp35 T tol = boost::math::tools::epsilon<T>() * 3000; in check_close()
72 …check_close(boost::math::cyl_hankel_1(data[i][0].real(), data[i][1].real()), data[i][2] + im * dat… in test_hankel()
73 …check_close(boost::math::cyl_hankel_2(data[i][0].real(), data[i][1].real()), data[i][2] - im * dat… in test_hankel()
76 …boost::math::cyl_hankel_1(data[i][0].real() + 0.5f, data[i][1].real()) * boost::math::constants::r… in test_hankel()
77 boost::math::sph_hankel_1(data[i][0].real(), data[i][1].real())); in test_hankel()
79 …boost::math::cyl_hankel_2(data[i][0].real() + 0.5f, data[i][1].real()) * boost::math::constants::r… in test_hankel()
80 boost::math::sph_hankel_2(data[i][0].real(), data[i][1].real())); in test_hankel()
88 typedef boost::math::policies::policy<
89 boost::math::policies::overflow_error<boost::math::policies::throw_on_error>,
90 boost::math::policies::denorm_error<boost::math::policies::throw_on_error>,
[all …]
Dtest_gamma.hpp38 pg funcp = boost::math::tgamma<value_type>; in do_test_gamma()
40 pg funcp = boost::math::tgamma; in do_test_gamma()
43 boost::math::tools::test_result<value_type> result; in do_test_gamma()
51 result = boost::math::tools::test_hetero<Real>( in do_test_gamma()
62 funcp = boost::math::lgamma<value_type>; in do_test_gamma()
64 funcp = boost::math::lgamma; in do_test_gamma()
66 result = boost::math::tools::test_hetero<Real>( in do_test_gamma()
86 pg funcp = boost::math::tgamma1pm1<value_type>; in do_test_gammap1m1()
88 pg funcp = boost::math::tgamma1pm1; in do_test_gammap1m1()
91 boost::math::tools::test_result<value_type> result; in do_test_gammap1m1()
[all …]
Dtest_spherical_harmonic.hpp29 pg funcp = boost::math::spherical_harmonic_r<value_type, value_type>; in do_test_spherical_harmonic()
31 pg funcp = boost::math::spherical_harmonic_r; in do_test_spherical_harmonic()
34 boost::math::tools::test_result<value_type> result; in do_test_spherical_harmonic()
43 result = boost::math::tools::test_hetero<Real>( in do_test_spherical_harmonic()
55 funcp = boost::math::spherical_harmonic_i<value_type, value_type>; in do_test_spherical_harmonic()
57 funcp = boost::math::spherical_harmonic_i; in do_test_spherical_harmonic()
62 result = boost::math::tools::test_hetero<Real>( in do_test_spherical_harmonic()
83 std::complex<value_type> r = boost::math::spherical_harmonic( in test_complex_spherical_harmonic()
84 boost::math::tools::real_cast<unsigned>(data[i][0]), in test_complex_spherical_harmonic()
85 boost::math::tools::real_cast<unsigned>(data[i][1]), in test_complex_spherical_harmonic()
[all …]
Dtest_cauchy.cpp24 using boost::math::cauchy_distribution;
41 …BOOST_MATH_CHECK_THROW(boost::math::cauchy_distribution<RealType> nbad1(0, 0), std::domain_error);… in test_spots()
42 …BOOST_MATH_CHECK_THROW(boost::math::cauchy_distribution<RealType> nbad1(0, -1), std::domain_error)… in test_spots()
44 …BOOST_MATH_CHECK_THROW(boost::math::cauchy_distribution<RealType>(0, 0), std::domain_error); // ze… in test_spots()
45 …BOOST_MATH_CHECK_THROW(boost::math::cauchy_distribution<RealType>(0, -1), std::domain_error); // n… in test_spots()
56 static_cast<RealType>(boost::math::tools::epsilon<double>()), in test_spots()
57 boost::math::tools::epsilon<RealType>()); in test_spots()
69 ::boost::math::cdf( in test_spots()
75 ::boost::math::cdf( in test_spots()
81 ::boost::math::cdf( in test_spots()
[all …]
Dtest_igamma.hpp36 boost::math::tools::test_result<value_type> result; in do_test_gamma_2()
43 funcp = boost::math::tgamma<value_type, value_type>; in do_test_gamma_2()
45 funcp = boost::math::tgamma; in do_test_gamma_2()
56 result = boost::math::tools::test_hetero<Real>( in do_test_gamma_2()
67 funcp = boost::math::tgamma_lower<value_type, value_type>; in do_test_gamma_2()
69 funcp = boost::math::tgamma_lower; in do_test_gamma_2()
71 result = boost::math::tools::test_hetero<Real>( in do_test_gamma_2()
85 funcp = boost::math::gamma_q<value_type, value_type>; in do_test_gamma_2()
87 funcp = boost::math::gamma_q; in do_test_gamma_2()
89 result = boost::math::tools::test_hetero<Real>( in do_test_gamma_2()
[all …]
/third_party/optimized-routines/math/
DDir.mk6 S := $(srcdir)/math
7 B := build/math
9 math-lib-srcs := $(wildcard $(S)/*.[cS])
10 math-test-srcs := \
15 math-test-host-srcs := $(wildcard $(S)/test/rtest/*.[cS])
17 math-includes := $(patsubst $(S)/%,build/%,$(wildcard $(S)/include/*.h))
19 math-libs := \
23 math-tools := \
30 math-host-tools := \
33 math-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(math-lib-srcs)))
[all …]
/third_party/boost/libs/math/doc/graphs/
Ddist_graphs.cpp42 struct is_discrete_distribution<boost::math::bernoulli_distribution<T,P> >
45 struct is_discrete_distribution<boost::math::binomial_distribution<T,P> >
48 struct is_discrete_distribution<boost::math::negative_binomial_distribution<T,P> >
51 struct is_discrete_distribution<boost::math::poisson_distribution<T,P> >
54 struct is_discrete_distribution<boost::math::hypergeometric_distribution<T,P> >
124 a = boost::math::tools::bracket_and_solve_root( in add()
129 boost::math::tools::eps_tolerance<double>(10), in add()
139 b = boost::math::tools::bracket_and_solve_root( in add()
144 boost::math::tools::eps_tolerance<double>(10), in add()
330 distribution_plotter<boost::math::gamma_distribution<> > in main()
[all …]
/third_party/boost/libs/math/test/test_rational_instances/
Dtest_rational.hpp22 T tolerance = boost::math::tools::epsilon<T>() * 4 * 100; in do_test_spots1()
35 boost::math::tools::evaluate_polynomial(n1c, static_cast<T>(0.125), 1), in do_test_spots1()
39 boost::math::tools::evaluate_polynomial(n1c, static_cast<T>(0.25), 1), in do_test_spots1()
43 boost::math::tools::evaluate_polynomial(n1c, static_cast<T>(0.75), 1), in do_test_spots1()
47 boost::math::tools::evaluate_polynomial(n1c, static_cast<T>(1.0f - 1.0f/64.0f), 1), in do_test_spots1()
51 boost::math::tools::evaluate_polynomial(n1c, static_cast<T>(6.5), 1), in do_test_spots1()
55 boost::math::tools::evaluate_polynomial(n1c, static_cast<T>(10247.25), 1), in do_test_spots1()
60 boost::math::tools::evaluate_polynomial(n1c, static_cast<T>(0.125)), in do_test_spots1()
64 boost::math::tools::evaluate_polynomial(n1c, static_cast<T>(0.25)), in do_test_spots1()
68 boost::math::tools::evaluate_polynomial(n1c, static_cast<T>(0.75)), in do_test_spots1()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
DDiagBigDecimalTest.java14 import java.math.BigInteger;
23 import com.ibm.icu.math.BigDecimal;
104 private static final com.ibm.icu.math.BigDecimal zero = com.ibm.icu.math.BigDecimal.ZERO;
105 private static final com.ibm.icu.math.BigDecimal one = com.ibm.icu.math.BigDecimal.ONE;
106 private static final com.ibm.icu.math.BigDecimal two = new com.ibm.icu.math.BigDecimal(2);
107 private static final com.ibm.icu.math.BigDecimal ten = com.ibm.icu.math.BigDecimal.TEN;
108 …private static final com.ibm.icu.math.BigDecimal tenlong = new com.ibm.icu.math.BigDecimal((long) …
111 private static final com.ibm.icu.math.MathContext mcdef = com.ibm.icu.math.MathContext.DEFAULT;
112 private static final com.ibm.icu.math.MathContext mc3 = new com.ibm.icu.math.MathContext(3);
113 private static final com.ibm.icu.math.MathContext mc6 = new com.ibm.icu.math.MathContext(6);
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bigdec/
DDiagBigDecimalTest.java15 import java.math.BigInteger;
24 import ohos.global.icu.math.BigDecimal;
107 … private static final ohos.global.icu.math.BigDecimal zero = ohos.global.icu.math.BigDecimal.ZERO;
108 private static final ohos.global.icu.math.BigDecimal one = ohos.global.icu.math.BigDecimal.ONE;
109 … private static final ohos.global.icu.math.BigDecimal two = new ohos.global.icu.math.BigDecimal(2);
110 private static final ohos.global.icu.math.BigDecimal ten = ohos.global.icu.math.BigDecimal.TEN;
111 …private static final ohos.global.icu.math.BigDecimal tenlong = new ohos.global.icu.math.BigDecimal…
114 …private static final ohos.global.icu.math.MathContext mcdef = ohos.global.icu.math.MathContext.DEF…
115 …private static final ohos.global.icu.math.MathContext mc3 = new ohos.global.icu.math.MathContext(3…
116 …private static final ohos.global.icu.math.MathContext mc6 = new ohos.global.icu.math.MathContext(6…
[all …]
/third_party/musl/porting/liteos_a/kernel/
Dmusl.gni54 "$MUSLPORTINGDIR/src/math/__cos.c",
55 "$MUSLPORTINGDIR/src/math/__cosdf.c",
56 "$MUSLPORTINGDIR/src/math/__cosl.c",
57 "$MUSLPORTINGDIR/src/math/__expo2.c",
58 "$MUSLPORTINGDIR/src/math/__expo2f.c",
59 "$MUSLPORTINGDIR/src/math/__fpclassify.c",
60 "$MUSLPORTINGDIR/src/math/__fpclassifyf.c",
61 "$MUSLPORTINGDIR/src/math/__fpclassifyl.c",
62 "$MUSLPORTINGDIR/src/math/__invtrigl.c",
63 "$MUSLPORTINGDIR/src/math/__math_divzero.c",
[all …]
/third_party/boost/boost/math/cstdfloat/
Dcstdfloat_cmath.hpp41 namespace math { namespace
293 extern "C" boost::math::cstdfloat::detail::float_internal128_t BOOST_CSTDFLOAT_FLOAT128_LDEXP(boost…
294 extern "C" boost::math::cstdfloat::detail::float_internal128_t BOOST_CSTDFLOAT_FLOAT128_FREXP(boost…
295 extern "C" boost::math::cstdfloat::detail::float_internal128_t BOOST_CSTDFLOAT_FLOAT128_FABS(boost:…
296 extern "C" boost::math::cstdfloat::detail::float_internal128_t BOOST_CSTDFLOAT_FLOAT128_FLOOR(boost…
297 extern "C" boost::math::cstdfloat::detail::float_internal128_t BOOST_CSTDFLOAT_FLOAT128_CEIL(boost:…
298 extern "C" boost::math::cstdfloat::detail::float_internal128_t BOOST_CSTDFLOAT_FLOAT128_SQRT(boost:…
299 extern "C" boost::math::cstdfloat::detail::float_internal128_t BOOST_CSTDFLOAT_FLOAT128_TRUNC(boost…
300 …boost::math::cstdfloat::detail::float_internal128_t BOOST_CSTDFLOAT_FLOAT128_POW(boost::math::cstd…
301 extern "C" boost::math::cstdfloat::detail::float_internal128_t BOOST_CSTDFLOAT_FLOAT128_LOG(boost::
[all …]
/third_party/boost/libs/math/dot_net_example/boost_math/
Dboost_math.cpp43 this->reset(new concrete_distribution<boost::math::bernoulli>(boost::math::bernoulli(arg1))); in any_distribution()
46 …this->reset(new concrete_distribution<boost::math::beta_distribution<> >(boost::math::beta_distrib… in any_distribution()
49 …this->reset(new concrete_distribution<boost::math::binomial_distribution<> >(boost::math::binomial… in any_distribution()
52 this->reset(new concrete_distribution<boost::math::cauchy>(boost::math::cauchy(arg1, arg2))); in any_distribution()
55 … this->reset(new concrete_distribution<boost::math::chi_squared>(boost::math::chi_squared(arg1))); in any_distribution()
58 … this->reset(new concrete_distribution<boost::math::exponential>(boost::math::exponential(arg1))); in any_distribution()
61 …this->reset(new concrete_distribution<boost::math::extreme_value>(boost::math::extreme_value(arg1)… in any_distribution()
64 … this->reset(new concrete_distribution<boost::math::fisher_f >(boost::math::fisher_f(arg1, arg2))); in any_distribution()
67 …this->reset(new concrete_distribution<boost::math::gamma_distribution<> >(boost::math::gamma_distr… in any_distribution()
70 …this->reset(new concrete_distribution<boost::math::geometric_distribution<> >(boost::math::geometr… in any_distribution()
[all …]
/third_party/boost/libs/math/test/float128/
Dtest_factorials.cpp47 T tolerance = boost::math::tools::epsilon<T>() * 100 * 2; // 2 eps as a percent. in test_spots()
49 ::boost::math::factorial<T>(0), in test_spots()
52 ::boost::math::factorial<T>(1), in test_spots()
55 ::boost::math::factorial<T>(10), in test_spots()
58 ::boost::math::unchecked_factorial<T>(0), in test_spots()
61 ::boost::math::unchecked_factorial<T>(1), in test_spots()
64 ::boost::math::unchecked_factorial<T>(10), in test_spots()
71 ::boost::math::double_factorial<T>(0), in test_spots()
74 ::boost::math::double_factorial<T>(1), in test_spots()
77 ::boost::math::double_factorial<T>(2), in test_spots()
[all …]
/third_party/boost/boost/math/special_functions/detail/
Dunchecked_factorial.hpp43 namespace boost { namespace math namespace
492 return static_cast<double>(boost::math::unchecked_factorial<long double>(i));
499 value = ::boost::math::max_factorial<long double>::value);
511 boost::math::unchecked_factorial<T>(3);
540 T(boost::math::tools::convert_from_string<T>("1")),
541 T(boost::math::tools::convert_from_string<T>("1")),
542 T(boost::math::tools::convert_from_string<T>("2")),
543 T(boost::math::tools::convert_from_string<T>("6")),
544 T(boost::math::tools::convert_from_string<T>("24")),
545 T(boost::math::tools::convert_from_string<T>("120")),
[all …]
/third_party/boost/libs/math/tools/
Dgauss_kronrod_constants.cpp83 print_gauss_constants<boost::math::quadrature::gauss<mp_type, 7> >("f", 9, 0); in main()
84 print_gauss_constants<boost::math::quadrature::gauss<mp_type, 7> >("", 17, 1); in main()
85 print_gauss_constants<boost::math::quadrature::gauss<mp_type, 7> >("L", 35, 2); in main()
86 print_gauss_constants<boost::math::quadrature::gauss<mp_type, 7> >("Q", 35, 3); in main()
87 print_gauss_constants<boost::math::quadrature::gauss<mp_type, 7> >("", 115, 4); in main()
89 print_gauss_constants<boost::math::quadrature::gauss<mp_type, 10> >("f", 9, 0); in main()
90 print_gauss_constants<boost::math::quadrature::gauss<mp_type, 10> >("", 17, 1); in main()
91 print_gauss_constants<boost::math::quadrature::gauss<mp_type, 10> >("L", 35, 2); in main()
92 print_gauss_constants<boost::math::quadrature::gauss<mp_type, 10> >("Q", 35, 3); in main()
93 print_gauss_constants<boost::math::quadrature::gauss<mp_type, 10> >("", 115, 4); in main()
[all …]

12345678910>>...119