Searched refs:my_special (Results 1 – 2 of 2) sorted by relevance
/third_party/boost/libs/math/doc/background/ |
D | special_tut.qbk | 7 …oating-point arguments. For the sake of exposition we'll give the function the name [~my_special]. 29 typename tools::promote_args<T, U>::type my_special(const T& a, const U& b); 32 typename tools::promote_args<T, U>::type my_special(const T& a, const U& b, const Policy& pol); 45 inline typename tools::promote_args<T, U>::type my_special(const T& a, const U& b) 48 return my_special(a, b, policies::policy<>(); 60 …inline typename tools::promote_args<T, U>::type my_special(const T& a, const U& b, const Policy& p… 105 "boost::math::my_special<%1%>(%1%, %1%)"); 176 BOOST_CHECK_THROW(my_special(0, -0.1), std::domain_error); 177 BOOST_CHECK_THROW(my_special(0, 1.1), std::domain_error); 181 BOOST_CHECK_EQUAL(my_special(1.0, 0.0), 0); [all …]
|
/third_party/boost/libs/math/example/ |
D | special_data.cpp | 20 T my_special(T a, T b) in my_special() function 60 bignum (*fp)(bignum, bignum) = &my_special; in cpp_main()
|