• Home
  • Raw
  • Download

Lines Matching refs:math

23 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()
68 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), true); in test_classify()
69 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), false); in test_classify()
70 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), false); in test_classify()
71 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), false); in test_classify()
72 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), false); in test_classify()
73 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), true); in test_classify()
74 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), true); in test_classify()
78 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_NORMAL); in test_classify()
79 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_NORMAL); in test_classify()
80 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), true); in test_classify()
81 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), true); in test_classify()
82 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), false); in test_classify()
83 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), false); in test_classify()
84 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), false); in test_classify()
85 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), false); in test_classify()
86 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), true); in test_classify()
87 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), true); in test_classify()
91 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_NORMAL); in test_classify()
92 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), true); in test_classify()
93 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), false); in test_classify()
94 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), false); in test_classify()
95 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), true); in test_classify()
98 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_NORMAL); in test_classify()
99 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), true); in test_classify()
100 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), false); in test_classify()
101 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), true); in test_classify()
102 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), false); in test_classify()
112 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_SUBNORMAL); in test_classify()
113 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_SUBNORMAL); in test_classify()
114 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), true); in test_classify()
115 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), true); in test_classify()
116 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), false); in test_classify()
117 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), false); in test_classify()
118 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), false); in test_classify()
119 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), false); in test_classify()
120 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), false); in test_classify()
121 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), false); in test_classify()
126 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_SUBNORMAL); in test_classify()
127 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_SUBNORMAL); in test_classify()
128 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), true); in test_classify()
129 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), true); in test_classify()
130 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), false); in test_classify()
131 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), false); in test_classify()
132 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), false); in test_classify()
133 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), false); in test_classify()
134 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), false); in test_classify()
135 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), false); in test_classify()
143 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_ZERO); in test_classify()
144 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_ZERO); in test_classify()
145 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), true); in test_classify()
146 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), true); in test_classify()
147 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), false); in test_classify()
148 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), false); in test_classify()
149 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), false); in test_classify()
150 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), false); in test_classify()
151 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), false); in test_classify()
152 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), false); in test_classify()
154 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_ZERO); in test_classify()
155 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_ZERO); in test_classify()
156 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), true); in test_classify()
157 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), true); in test_classify()
158 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), false); in test_classify()
159 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), false); in test_classify()
160 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), false); in test_classify()
161 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), false); in test_classify()
162 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), false); in test_classify()
163 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), false); in test_classify()
170 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_INFINITE); in test_classify()
171 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_INFINITE); in test_classify()
172 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), false); in test_classify()
173 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), false); in test_classify()
174 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), true); in test_classify()
175 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), true); in test_classify()
176 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), false); in test_classify()
177 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), false); in test_classify()
178 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), false); in test_classify()
179 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), false); in test_classify()
186 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_INFINITE); in test_classify()
187 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_INFINITE); in test_classify()
188 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), false); in test_classify()
189 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), false); in test_classify()
190 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), true); in test_classify()
191 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), true); in test_classify()
192 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), false); in test_classify()
193 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), false); in test_classify()
194 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), false); in test_classify()
195 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), false); in test_classify()
198 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_INFINITE); in test_classify()
199 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_INFINITE); in test_classify()
200 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), false); in test_classify()
201 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), false); in test_classify()
202 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), true); in test_classify()
203 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), true); in test_classify()
204 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), false); in test_classify()
205 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), false); in test_classify()
206 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), false); in test_classify()
207 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), false); in test_classify()
223 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_NAN); in test_classify()
224 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_NAN); in test_classify()
225 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), false); in test_classify()
226 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), false); in test_classify()
227 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), false); in test_classify()
228 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), false); in test_classify()
229 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), true); in test_classify()
230 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), true); in test_classify()
231 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), false); in test_classify()
232 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), false); in test_classify()
241 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(t), (int)FP_NAN); in test_classify()
242 BOOST_CHECK_EQUAL((::boost::math::fpclassify)(-t), (int)FP_NAN); in test_classify()
243 BOOST_CHECK_EQUAL((::boost::math::isfinite)(t), false); in test_classify()
244 BOOST_CHECK_EQUAL((::boost::math::isfinite)(-t), false); in test_classify()
245 BOOST_CHECK_EQUAL((::boost::math::isinf)(t), false); in test_classify()
246 BOOST_CHECK_EQUAL((::boost::math::isinf)(-t), false); in test_classify()
247 BOOST_CHECK_EQUAL((::boost::math::isnan)(t), true); in test_classify()
248 BOOST_CHECK_EQUAL((::boost::math::isnan)(-t), true); in test_classify()
249 BOOST_CHECK_EQUAL((::boost::math::isnormal)(t), false); in test_classify()
250 BOOST_CHECK_EQUAL((::boost::math::isnormal)(-t), false); in test_classify()
284 test_classify((boost::math::concepts::real_concept)(0), "real_concept"); in BOOST_AUTO_TEST_CASE()