/third_party/boost/libs/math/test/ |
D | test_tr1.cpp | 34 float eps = boost::math::tools::epsilon<float>(); in test_values() local 35 BOOST_CHECK_CLOSE(tr1::acoshf(std::cosh(0.5f)), 0.5f, 5000 * eps); in test_values() 36 BOOST_CHECK_CLOSE(tr1::asinhf(std::sinh(0.5f)), 0.5f, 5000 * eps); in test_values() 37 BOOST_CHECK_CLOSE(tr1::atanhf(std::tanh(0.5f)), 0.5f, 5000 * eps); in test_values() 39 BOOST_CHECK_CLOSE(tr1::cbrtf(1.5f * 1.5f * 1.5f), 1.5f, 5000 * eps); in test_values() 46 …t>(0.125)), static_cast<float>(0.85968379519866618260697055347837660181302041685015L), eps * 1000); in test_values() 47 …oat>(0.5)), static_cast<float>(0.47950012218695346231725334610803547126354842424204L), eps * 1000); in test_values() 48 …float>(1)), static_cast<float>(0.15729920705028513065877936491739074070393300203370L), eps * 1000); in test_values() 49 …at>(5)), static_cast<float>(1.5374597944280348501883434853833788901180503147234e-12L), eps * 1000); in test_values() 50 …t>(-0.125)), static_cast<float>(1.1403162048013338173930294465216233981869795831498L), eps * 1000); in test_values() [all …]
|
D | test_tr1.c | 95 float eps = FLT_EPSILON; in test_values_f() local 97 check_close_f(acoshf(coshf(0.5f)), 0.5f, 5000 * eps, __LINE__); in test_values_f() 98 check_close_f(asinhf(sinhf(0.5f)), 0.5f, 5000 * eps, __LINE__); in test_values_f() 99 check_close_f(atanhf(tanhf(0.5f)), 0.5f, 5000 * eps, __LINE__); in test_values_f() 101 check_close_f(cbrtf(1.5f * 1.5f * 1.5f), 1.5f, 5000 * eps, __LINE__); in test_values_f() 108 …check_close_f(erfcf(0.125), 0.85968379519866618260697055347837660181302041685015f, eps * 1000, __L… in test_values_f() 109 …check_close_f(erfcf(0.5), 0.47950012218695346231725334610803547126354842424204f, eps * 1000, __LIN… in test_values_f() 110 …check_close_f(erfcf(1), 0.15729920705028513065877936491739074070393300203370f, eps * 1000, __LINE_… in test_values_f() 111 …check_close_f(erfcf(5), 1.5374597944280348501883434853833788901180503147234e-12f, eps * 1000, __LI… in test_values_f() 112 …check_close_f(erfcf(-0.125), 1.1403162048013338173930294465216233981869795831498f, eps * 1000, __L… in test_values_f() [all …]
|
D | test_autodiff_3.cpp | 12 const T eps = 3000 * test_constants_t<T>::pct_epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local 18 BOOST_CHECK_CLOSE(y.derivative(0u), atanh(static_cast<T>(x)), eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 19 BOOST_CHECK_CLOSE(y.derivative(1u), static_cast<T>(4) / 3, eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 20 BOOST_CHECK_CLOSE(y.derivative(2u), static_cast<T>(16) / 9, eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 21 BOOST_CHECK_CLOSE(y.derivative(3u), static_cast<T>(224) / 27, eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 22 BOOST_CHECK_CLOSE(y.derivative(4u), static_cast<T>(1280) / 27, eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 23 BOOST_CHECK_CLOSE(y.derivative(5u), static_cast<T>(31232) / 81, eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 34 const auto eps = boost::math::tools::epsilon<T>(); in BOOST_AUTO_TEST_CASE_TEMPLATE() local 35 BOOST_CHECK_CLOSE(y.derivative(0u), boost::math::constants::pi<T>() / 4, eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 36 BOOST_CHECK_CLOSE(y.derivative(1u), T(0.5), eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() [all …]
|
D | test_autodiff_2.cpp | 41 const T eps = 201 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local 59 BOOST_CHECK_CLOSE(z1.derivative(0u, 0u), pow(cx, cy), eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 61 BOOST_CHECK_CLOSE(z1.derivative(0u, j), pow(log(cx), j) * pow(cx, cy), eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 73 BOOST_CHECK_CLOSE(z2.derivative(0u, j), pow(cx, cy) * pow(log(cx), j), eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 79 eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 82 eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 85 eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 91 eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 97 eps); in BOOST_AUTO_TEST_CASE_TEMPLATE() 102 const T eps = 4000 * std::numeric_limits<T>::epsilon(); // percent in BOOST_AUTO_TEST_CASE_TEMPLATE() local [all …]
|
D | complex_test.cpp | 50 …static const T eps = std::pow(static_cast<T>(std::numeric_limits<T>::radix), static_cast<T>(1 - st… in check_complex() local 55 if(boost::math::fabs(b) > eps) in check_complex() 69 if(boost::math::fabs(a) > eps) in check_complex() 89 T rel = boost::math::fabs((b-a)/b) / eps; in check_complex() 270 …T eps = std::pow(two, T(1-std::numeric_limits<T>::digits)); // numeric_limits<>::epsilon way too s… in check_spots() local 313 BOOST_CHECK_CLOSE(result.real(), half_pi, eps*200); in check_spots() 317 BOOST_CHECK_CLOSE(result.real(), half_pi, eps*200); in check_spots() 323 BOOST_CHECK_CLOSE(result.real(), half_pi, eps*200); in check_spots() 327 BOOST_CHECK_CLOSE(result.real(), half_pi, eps*200); in check_spots() 340 BOOST_CHECK_CLOSE(result.real(), pi, eps*200); in check_spots() [all …]
|
/third_party/boost/boost/geometry/util/ |
D | series_expansion.hpp | 63 inline CT evaluate_A1(CT eps) in evaluate_A1() argument 65 CT eps2 = math::sqr(eps); in evaluate_A1() 84 return (t + eps) / (CT(1) - eps); in evaluate_A1() 108 inline CT evaluate_A2(CT const& eps) in evaluate_A2() argument 110 CT const eps2 = math::sqr(eps); in evaluate_A2() 129 return (t - eps) / (CT(1) + eps); in evaluate_A2() 222 inline void evaluate_coeffs_C1(Coeffs &c, CT const& eps) in evaluate_coeffs_C1() argument 224 CT eps2 = math::sqr(eps); in evaluate_coeffs_C1() 225 CT d = eps; in evaluate_coeffs_C1() 234 d *= eps; in evaluate_coeffs_C1() [all …]
|
/third_party/boost/libs/geometry/doc/other/maxima/ |
D | geod.mac | 45 computeI1(maxpow):=block([sintegrand,sintegrandexp,s,sigma,tau1,k2,eps], 48 (1-eps)*subst([k2=4*eps/(1-eps)^2],sintegrand), 49 eps,maxpow), 53 tau1:ataylor(s/A1,eps,maxpow), 57 A1:A1/(1-eps), 62 static inline CT evaluate_series_A1(CT eps) { 63 CT eps2 = math::sqr(eps); 67 q:horner(ataylor(subst([eps=sqrt(eps2)],A1*(1-eps)-1),eps2,n)), 73 return (t + eps) / (1 - eps); 77 computeI2(maxpow):=block([sintegrand,sintegrandexp,s,sigma,tau1,k2,eps], [all …]
|
/third_party/boost/libs/spirit/test/x3/ |
D | eps.cpp | 17 using boost::spirit::x3::eps; in main() 21 BOOST_SPIRIT_ASSERT_CONSTEXPR_CTORS(eps); in main() 22 BOOST_TEST((test("", eps))); in main() 23 BOOST_TEST((test("xxx", eps, false))); in main() 29 BOOST_SPIRIT_ASSERT_CONSTEXPR_CTORS(eps(true)); in main() 30 BOOST_TEST((test("", eps(true)))); in main() 31 BOOST_TEST((!test("", eps(false)))); in main() 32 BOOST_TEST((test("", !eps(false)))); in main() 41 BOOST_SPIRIT_ASSERT_CONSTEXPR_CTORS(eps(std::true_type{})); in main() 42 BOOST_TEST((test("", eps(true_)))); in main() [all …]
|
D | alternative.cpp | 63 using boost::spirit::x3::eps; in main() 141 using boost::spirit::x3::eps; in main() 151 r3 = ((eps >> r1))[f]; in main() 153 r3 = ((eps >> r1) | r2); in main() 158 using boost::spirit::x3::eps; in main() 161 BOOST_TEST( (test_attr("a,b", (char_ % ',') | eps, s )) ); in main() 166 using boost::spirit::x3::eps; in main() 183 char_ >> char_ >> ((char_ % ',') | eps), s )) ); in main() 187 char_ >> char_ >> ((char_ % ',') | eps), s )) ); in main() 196 using boost::spirit::x3::eps; in main() [all …]
|
/third_party/boost/libs/spirit/test/qi/ |
D | eps.cpp | 19 using boost::spirit::eps; in main() 22 BOOST_TEST((test("", eps))); in main() 23 BOOST_TEST((test("xxx", eps, false))); in main() 24 BOOST_TEST((!test("", !eps))); // not predicate in main() 29 BOOST_TEST((test("", eps(true)))); in main() 30 BOOST_TEST((!test("", eps(false)))); in main() 31 BOOST_TEST((test("", !eps(false)))); // not predicate in main() 38 BOOST_TEST((test("", eps(val(true))))); in main() 39 BOOST_TEST((!test("", eps(val(false))))); in main() 40 BOOST_TEST((test("", !eps(val(false))))); // not predicate in main()
|
/third_party/boost/libs/spirit/test/karma/ |
D | eps.cpp | 28 BOOST_TEST(test("", eps)); in main() 29 BOOST_TEST(test_delimited(" ", eps, space)); in main() 31 BOOST_TEST(!test("", !eps)); in main() 32 BOOST_TEST(!test_delimited(" ", !eps, space)); in main() 38 BOOST_TEST(test("", eps(true))); in main() 39 BOOST_TEST(!test("", eps(false))); in main() 45 BOOST_TEST(test("", eps(val(true)))); in main() 46 BOOST_TEST(!test("", eps(val(false)))); in main() 54 BOOST_TEST(!karma::generate_delimited(outit, eps(false), space)); in main()
|
/third_party/json/benchmarks/thirdparty/benchmark/src/ |
D | check.h | 72 #define CHECK_FLOAT_EQ(a, b, eps) CHECK(std::fabs((a) - (b)) < (eps)) argument 73 #define CHECK_FLOAT_NE(a, b, eps) CHECK(std::fabs((a) - (b)) >= (eps)) argument 74 #define CHECK_FLOAT_GE(a, b, eps) CHECK((a) - (b) > -(eps)) argument 75 #define CHECK_FLOAT_LE(a, b, eps) CHECK((b) - (a) > -(eps)) argument 76 #define CHECK_FLOAT_GT(a, b, eps) CHECK((a) - (b) > (eps)) argument 77 #define CHECK_FLOAT_LT(a, b, eps) CHECK((b) - (a) > (eps)) argument
|
/third_party/benchmark/src/ |
D | check.h | 74 #define CHECK_FLOAT_EQ(a, b, eps) CHECK(std::fabs((a) - (b)) < (eps)) argument 75 #define CHECK_FLOAT_NE(a, b, eps) CHECK(std::fabs((a) - (b)) >= (eps)) argument 76 #define CHECK_FLOAT_GE(a, b, eps) CHECK((a) - (b) > -(eps)) argument 77 #define CHECK_FLOAT_LE(a, b, eps) CHECK((b) - (a) > -(eps)) argument 78 #define CHECK_FLOAT_GT(a, b, eps) CHECK((a) - (b) > (eps)) argument 79 #define CHECK_FLOAT_LT(a, b, eps) CHECK((b) - (a) > (eps)) argument
|
/third_party/boost/libs/test/test/writing-test-ts/ |
D | fp-multiprecision-comparison-test.cpp | 108 cpp_dec_float_50_noet eps = std::numeric_limits<cpp_dec_float_50_noet>::epsilon(); in BOOST_AUTO_TEST_CASE() local 110 std::cout <<"a = " << a << ",\nb = " << b << ",\neps = " << eps << std::endl; in BOOST_AUTO_TEST_CASE() 112 BOOST_CHECK_CLOSE(a, b, eps * 100); // Expected to pass (because tolerance is as percent). in BOOST_AUTO_TEST_CASE() 113 BOOST_CHECK_CLOSE_FRACTION(a, b, eps); // Expected to pass (because tolerance is as fraction). in BOOST_AUTO_TEST_CASE() 117 BOOST_TEST( a == b, tt::tolerance( tt::fpc::percent_tolerance( eps * 100 ) ) ); in BOOST_AUTO_TEST_CASE() 118 BOOST_TEST( a == b, tt::tolerance( eps ) ); in BOOST_AUTO_TEST_CASE() 136 cpp_dec_float_50_et eps = std::numeric_limits<cpp_dec_float_50_et>::epsilon(); in BOOST_AUTO_TEST_CASE() local 138 std::cout << "a = " << a << ",\nb = " << b << ",\neps = " << eps << std::endl; in BOOST_AUTO_TEST_CASE() 140 BOOST_CHECK_CLOSE(a, b, eps * 100); // Expected to pass (because tolerance is as percent). in BOOST_AUTO_TEST_CASE() 141 BOOST_CHECK_CLOSE_FRACTION(a, b, eps); // Expected to pass (because tolerance is as fraction). in BOOST_AUTO_TEST_CASE() [all …]
|
/third_party/boost/libs/math/example/ |
D | test_cpp_float_close_fraction.cpp | 66 cpp_dec_float_50_noet eps = std::numeric_limits<cpp_dec_float_50_noet>::epsilon(); in BOOST_AUTO_TEST_CASE() local 68 std::cout <<"a = " << a << ",\nb = " << b << ",\neps = " << eps << std::endl; in BOOST_AUTO_TEST_CASE() 70 BOOST_CHECK_CLOSE(a, b, eps * 100); // Expected to pass (because tolerance is as percent). in BOOST_AUTO_TEST_CASE() 71 BOOST_CHECK_CLOSE_FRACTION(a, b, eps); // Expected to pass (because tolerance is as fraction). in BOOST_AUTO_TEST_CASE() 88 cpp_dec_float_50_et eps = std::numeric_limits<cpp_dec_float_50_et>::epsilon(); in BOOST_AUTO_TEST_CASE() local 90 std::cout << "a = " << a << ",\nb = " << b << ",\neps = " << eps << std::endl; in BOOST_AUTO_TEST_CASE() 92 BOOST_CHECK_CLOSE(a, b, eps * 100); // Expected to pass (because tolerance is as percent). in BOOST_AUTO_TEST_CASE() 93 BOOST_CHECK_CLOSE_FRACTION(a, b, eps); // Expected to pass (because tolerance is as fraction). in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/libs/phoenix/test/stdlib/ |
D | cmath.cpp | 18 double eps = 0.000001; in main() local 20 boost::function<bool(double, double)> f = boost::phoenix::fabs(_1 - _2) < eps; in main() 26 BOOST_TEST(f(0.0, 0 * eps)); in main() 27 BOOST_TEST(!f(0.0, eps)); in main() 28 BOOST_TEST(std::fabs(x-4.) < eps ); in main() 29 BOOST_TEST(std::fabs(z-1.) < eps ); in main()
|
/third_party/boost/libs/math/example/daubechies_wavelets/ |
D | find_best_daubechies_interpolator.cpp | 356 Real eps = (y-k)/(1<<r); in find_best_interpolator() local 357 return phi[kk] + eps*phi_prime[kk]; in find_best_interpolator() 360 Real eps = (y-k-1)/(1<<r); in find_best_interpolator() local 361 return phi[kk+1] + eps*phi_prime[kk+1]; in find_best_interpolator() 421 Real eps = (y-k)/(1<<r); in find_best_interpolator() local 422 return phi[kk] + eps*phi_prime[kk] + eps*eps*phi_dbl_prime[kk]/2; in find_best_interpolator() 425 Real eps = (y-k-1)/(1<<r); in find_best_interpolator() local 426 return phi[kk+1] + eps*phi_prime[kk+1] + eps*eps*phi_dbl_prime[kk+1]/2; in find_best_interpolator() 470 Real eps = (y-k)/(1<<r); in find_best_interpolator() local 471 …return phi[kk] + eps*phi_prime[kk] + eps*eps*phi_dbl_prime[kk]/2 + eps*eps*eps*phi_triple_prime[kk… in find_best_interpolator() [all …]
|
/third_party/boost/boost/math/differentiation/ |
D | finite_difference.hpp | 97 const Real eps = (numeric_limits<Real>::epsilon)(); in finite_difference_derivative() local 102 Real h = 2 * sqrt(eps); in finite_difference_derivative() 113 *error = ypph / 2 + (abs(yh) + abs(y0))*eps / h; in finite_difference_derivative() 126 const Real eps = (numeric_limits<Real>::epsilon)(); in finite_difference_derivative() local 130 Real h = pow(3 * eps, static_cast<Real>(1) / static_cast<Real>(3)); in finite_difference_derivative() 140 *error = eps * (abs(yh) + abs(ymh)) / (2 * h) + abs((yth - ymth) / 2 - diff) / (6 * h); in finite_difference_derivative() 154 const Real eps = (numeric_limits<Real>::epsilon)(); in finite_difference_derivative() local 156 Real h = pow(11.25*eps, (Real)1 / (Real)5); in finite_difference_derivative() 173 *error += eps * (abs(yth) + abs(ymth) + 8 * (abs(ymh) + abs(yh))) / (12 * h); in finite_difference_derivative() 186 const Real eps = (numeric_limits<Real>::epsilon)(); in finite_difference_derivative() local [all …]
|
/third_party/boost/libs/geometry/test/util/ |
D | math_equals.cpp | 28 T eps = std::numeric_limits<T>::epsilon(); in test_all() local 29 if ( eps > 0 ) in test_all() 31 BOOST_CHECK(bgm::equals(0, 0+eps)); in test_all() 32 BOOST_CHECK(bgm::equals(0+eps, 0)); in test_all() 33 BOOST_CHECK(bgm::equals(1, 1+eps)); in test_all() 34 BOOST_CHECK(bgm::equals(1+eps, 1)); in test_all() 35 BOOST_CHECK(bgm::equals(12345+eps, 12345)); in test_all()
|
/third_party/boost/libs/geometry/test/formulas/ |
D | test_formula.hpp | 36 double eps = std::numeric_limits<double>::epsilon(); in check_one() local 41 if (res_min <= eps) // including 0 in check_one() 43 bool is_close = abs_result <= 30 * eps && abs_expected <= 30 * eps; in check_one() 47 else if (res_max > 100 * eps) in check_one() 52 else if (res_max > 10 * eps) in check_one() 57 else if (res_max > eps) in check_one()
|
/third_party/boost/boost/spirit/home/karma/auxiliary/ |
D | eps.hpp | 29 struct use_terminal<karma::domain, tag::eps> 35 , terminal_ex<tag::eps, fusion::vector1<A0> > > 40 struct use_lazy_terminal<karma::domain, tag::eps, 1> 49 using boost::spirit::eps; 112 struct make_primitive<tag::eps, Modifiers> 123 terminal_ex<tag::eps, fusion::vector1<A0> >
|
/third_party/boost/boost/spirit/home/qi/auxiliary/ |
D | eps.hpp | 29 struct use_terminal<qi::domain, tag::eps> // enables eps 34 , terminal_ex<tag::eps, fusion::vector1<A0> > // enables eps(bool-condition) 39 qi::domain, tag::eps, 1 /*arity*/ 46 using spirit::eps; 109 struct make_primitive<tag::eps, Modifiers> 120 terminal_ex<tag::eps, fusion::vector1<A0> >
|
/third_party/boost/boost/geometry/algorithms/detail/ |
D | expand_by_epsilon.hpp | 55 typename coordinate_type<Point>::type const& eps) in apply() 59 coord_type const seps = math::scaled_epsilon(coord, eps); in apply() 98 typename coordinate_type<Box>::type const& eps) in apply() 102 corner_by_epsilon<min_type, std::minus>::apply(min_point, eps); in apply() 106 corner_by_epsilon<max_type, std::plus>::apply(max_point, eps); in apply() 127 typename coordinate_type<Box>::type const& eps) in expand_by_epsilon() argument 129 expand::expand_by_epsilon<Box>::apply(box, eps); in expand_by_epsilon()
|
/third_party/boost/libs/graph/doc/ |
D | Makefile | 17 .SUFFIXES: .tex .dvi .ps .pdf .c .lg .eps .fig .gif .dot .w .cpp .o .exe 40 .eps.pdf: 41 epstopdf $*.eps 43 .dot.eps: 44 dot -Tps -o $*.eps $*.dot 63 EPS_GEN = $(DOT:.dot=.eps) 65 PDFPICT = $(EPS_GEN:.eps=.pdf)
|
/third_party/jerryscript/tests/jerry-test-suite/11/11.04/11.04.04/ |
D | 11.04.04-006.js | 16 var eps = 0.00000001; variable 18 assert(++a >= 2.12 - eps && a <= 2.12 + eps);
|