/third_party/boost/boost/accumulators/framework/ |
D | accumulator_set.hpp | 41 namespace boost { namespace accumulators namespace 167 : accumulators( in accumulator_set() 170 , (boost::accumulators::accumulator = *this) in accumulator_set() 176 detail::make_add_ref_visitor(boost::accumulators::accumulator = *this) in accumulator_set() 190 ) : accumulators( in accumulator_set() 193 , (boost::accumulators::accumulator = *this, a1) in accumulator_set() 199 detail::make_add_ref_visitor(boost::accumulators::accumulator = *this) in accumulator_set() 213 ) : accumulators( in accumulator_set() 217 boost::accumulators::accumulator = *this in accumulator_set() 218 , boost::accumulators::sample = a1 in accumulator_set() [all …]
|
/third_party/boost/doc/html/ |
D | doc_HTML.manifest | 4 accumulators.html 5 accumulators/user_s_guide.html 6 accumulators/acknowledgements.html 7 accumulators/reference.html 8 boost/accumulators/tag/droppable.html 9 boost/accumulators/tag/external.html 10 boost/accumulators/tag/reference.html 11 boost/accumulators/tag/reference_tag.html 12 boost/accumulators/tag/value.html 13 boost/accumulators/tag/value_tag.html [all …]
|
/third_party/boost/libs/accumulators/doc/ |
D | Jamfile.v2 | 55 ../../../boost/accumulators/framework/depends_on.hpp 56 ../../../boost/accumulators/framework/extractor.hpp 60 <doxygen:param>GENERATE_TAGFILE=accumulators.tag 71 [ glob ../../../boost/accumulators/accumulators*.hpp ] 72 [ glob ../../../boost/accumulators/framework/*.hpp ] 73 [ glob ../../../boost/accumulators/framework/parameters/*.hpp ] 74 [ glob ../../../boost/accumulators/framework/accumulators/*.hpp ] 100 [ glob ../../../boost/accumulators/statistics*.hpp ] 101 [ glob ../../../boost/accumulators/statistics/*.hpp ] 102 [ glob ../../../boost/accumulators/statistics/variates/*.hpp ] [all …]
|
D | accumulators.qbk | 7 [id accumulators] 8 [dirname accumulators] 38 [def _accumulator_set_ [classref boost::accumulators::accumulator_set `accumulator_set<>`]] 39 [def _accumulator_base_ [classref boost::accumulators::accumulator_base `accumulator_base`]] 40 [def _depends_on_ [classref boost::accumulators::depends_on `depends_on<>`]] 41 [def _feature_of_ [classref boost::accumulators::feature_of `feature_of<>`]] 42 [def _as_feature_ [classref boost::accumulators::as_feature `as_feature<>`]] 43 [def _features_ [classref boost::accumulators::features `features<>`]] 44 [def _external_ [classref boost::accumulators::external `external<>`]] 45 [def _droppable_ [classref boost::accumulators::droppable `droppable<>`]] [all …]
|
/third_party/boost/libs/histogram/test/ |
D | accumulators_serialization_test.cpp | 24 accumulators::mean<> a; in main() 34 accumulators::mean<> a; in main() 40 accumulators::mean<> b; in main() 49 accumulators::sum<> a; in main() 54 accumulators::sum<> b; in main() 64 accumulators::weighted_mean<> a; in main() 70 accumulators::weighted_mean<> b; in main() 80 accumulators::weighted_sum<> a; in main() 85 accumulators::weighted_sum<> b; in main()
|
D | accumulators_test.cpp | 36 using w_t = accumulators::weighted_sum<double>; in main() 81 using m_t = accumulators::mean<double>; in main() 131 using m_t = accumulators::weighted_mean<double>; in main() 169 using s_t = accumulators::sum<double>; in main() 188 accumulators::sum<double> a(3), b(2), c(3); in main() 200 using s_t = accumulators::weighted_sum<accumulators::sum<double>>; in main() 215 using ts_t = accumulators::thread_safe<int>; in main()
|
/third_party/boost/libs/accumulators/test/ |
D | mean.cpp | 18 using namespace accumulators; 43 BOOST_CHECK_CLOSE(3., (accumulators::mean_of_variates<int, tag::covariate1>(acc)), 1e-5); in test_stat() 49 BOOST_CHECK_CLOSE(3.5, (accumulators::mean_of_variates<int, tag::covariate1>(acc)), 1e-5); in test_stat() 55 BOOST_CHECK_CLOSE(5., (accumulators::mean_of_variates<int, tag::covariate1>(acc)), 1e-5); in test_stat() 64 BOOST_CHECK_CLOSE(3., (accumulators::mean_of_variates<int, tag::covariate1>(acc2)), 1e-5); in test_stat() 69 BOOST_CHECK_CLOSE(3.5, (accumulators::mean_of_variates<int, tag::covariate1>(acc2)), 1e-5); in test_stat() 74 BOOST_CHECK_CLOSE(5., (accumulators::mean_of_variates<int, tag::covariate1>(acc2)), 1e-5); in test_stat() 96 BOOST_CHECK_CLOSE(5., (accumulators::mean_of_variates<int, tag::covariate1>(acc1)), 1e-5); in test_persistency() 98 BOOST_CHECK_CLOSE(5., (accumulators::mean_of_variates<int, tag::covariate1>(acc2)), 1e-5); in test_persistency() 109 BOOST_CHECK_CLOSE(5., (accumulators::mean_of_variates<int, tag::covariate1>(acc2)), 1e-5); in test_persistency()
|
D | weighted_mean.cpp | 15 using namespace accumulators; 43 … BOOST_CHECK_CLOSE(3., (accumulators::weighted_mean_of_variates<int, tag::covariate1>(acc)), 1e-5); in test_stat() 50 …BOOST_CHECK_CLOSE(11./3., (accumulators::weighted_mean_of_variates<int, tag::covariate1>(acc)), 1e… in test_stat() 57 …BOOST_CHECK_CLOSE(94./15., (accumulators::weighted_mean_of_variates<int, tag::covariate1>(acc)), 1… in test_stat() 75 …BOOST_CHECK_CLOSE(3., (accumulators::weighted_mean_of_variates<int, tag::covariate1>(acc2)), 1e-5); in test_stat() 81 …BOOST_CHECK_CLOSE(11./3., (accumulators::weighted_mean_of_variates<int, tag::covariate1>(acc2)), 1… in test_stat() 87 BOOST_CHECK_CLOSE(94./15., (accumulators::mean_of_variates<int, tag::covariate1>(acc2)), 1e-5); in test_stat()
|
D | error_of.cpp | 15 using namespace accumulators; 26 BOOST_CHECK_CLOSE(0.057735, accumulators::error_of<tag::mean(lazy)>(acc), 1e-4); in test_stat() 32 BOOST_CHECK_CLOSE(0.057735, accumulators::error_of<tag::mean(immediate)>(acc2), 1e-4); in test_stat() 38 BOOST_CHECK_CLOSE(0.057735, accumulators::error_of<tag::mean(lazy)>(acc3), 1e-4); in test_stat() 44 BOOST_CHECK_CLOSE(0.057735, accumulators::error_of<tag::mean(immediate)>(acc4), 1e-4); in test_stat()
|
D | moment.cpp | 17 using namespace accumulators; 31 BOOST_CHECK_CLOSE(15., accumulators::moment<2>(acc1), 1e-5); in test_stat() 41 BOOST_CHECK_CLOSE(1106., accumulators::moment<5>(acc2), 1e-5); in test_stat() 57 BOOST_CHECK_CLOSE(15., accumulators::moment<2>(acc), epsilon); in test_persistency() 64 BOOST_CHECK_CLOSE(15., accumulators::moment<2>(acc), epsilon); in test_persistency()
|
D | skewness.cpp | 23 using namespace boost::accumulators; 56 BOOST_CHECK_EQUAL( accumulators::moment<2>(acc2), 159./5. ); in test_stat() 57 BOOST_CHECK_EQUAL( accumulators::moment<3>(acc2), 1171./5. ); in test_stat() 76 BOOST_CHECK_EQUAL(accumulators::moment<3>(acc), 1171./5.); in test_persistency() 84 BOOST_CHECK_EQUAL(accumulators::moment<3>(acc), 1171./5.); in test_persistency()
|
D | weighted_kurtosis.cpp | 20 using namespace boost::accumulators; 53 BOOST_CHECK_EQUAL( accumulators::weighted_moment<2>(acc2), 212./11. ); in test_stat() 54 BOOST_CHECK_EQUAL( accumulators::weighted_moment<3>(acc2), 1350./11. ); in test_stat() 55 BOOST_CHECK_EQUAL( accumulators::weighted_moment<4>(acc2), 9956./11. ); in test_stat()
|
D | kurtosis.cpp | 23 using namespace boost::accumulators; 56 BOOST_CHECK_EQUAL( accumulators::moment<2>(acc2), 159./5. ); in test_stat() 57 BOOST_CHECK_EQUAL( accumulators::moment<3>(acc2), 1171./5. ); in test_stat() 58 BOOST_CHECK_EQUAL( accumulators::moment<4>(acc2), 1863 ); in test_stat()
|
/third_party/boost/boost/accumulators/statistics/ |
D | weighted_kurtosis.hpp | 22 namespace boost { namespace accumulators namespace 65 accumulators::weighted_moment<4>(args) in result() 66 - 4. * accumulators::weighted_moment<3>(args) * weighted_mean(args) in result() 67 … + 6. * accumulators::weighted_moment<2>(args) * weighted_mean(args) * weighted_mean(args) in result() 69 … , ( accumulators::weighted_moment<2>(args) - weighted_mean(args) * weighted_mean(args) ) in result() 70 … * ( accumulators::weighted_moment<2>(args) - weighted_mean(args) * weighted_mean(args) ) in result() 87 typedef accumulators::impl::weighted_kurtosis_impl<mpl::_1, mpl::_2> impl;
|
D | kurtosis.hpp | 21 namespace boost { namespace accumulators namespace 58 accumulators::moment<4>(args) in result() 59 - 4. * accumulators::moment<3>(args) * mean(args) in result() 60 + 6. * accumulators::moment<2>(args) * mean(args) * mean(args) in result() 62 , ( accumulators::moment<2>(args) - mean(args) * mean(args) ) in result() 63 * ( accumulators::moment<2>(args) - mean(args) * mean(args) ) in result() 84 typedef accumulators::impl::kurtosis_impl<mpl::_1> impl;
|
D | weighted_skewness.hpp | 22 namespace boost { namespace accumulators namespace 62 accumulators::weighted_moment<3>(args) in result() 63 - 3. * accumulators::weighted_moment<2>(args) * weighted_mean(args) in result() 65 … , ( accumulators::weighted_moment<2>(args) - weighted_mean(args) * weighted_mean(args) ) in result() 66 … * std::sqrt( accumulators::weighted_moment<2>(args) - weighted_mean(args) * weighted_mean(args) ) in result() 83 typedef accumulators::impl::weighted_skewness_impl<mpl::_1, mpl::_2> impl;
|
D | skewness.hpp | 23 namespace boost { namespace accumulators namespace 61 accumulators::moment<3>(args) in result() 62 - 3. * accumulators::moment<2>(args) * mean(args) in result() 64 , ( accumulators::moment<2>(args) - mean(args) * mean(args) ) in result() 65 * std::sqrt( accumulators::moment<2>(args) - mean(args) * mean(args) ) in result() 86 typedef accumulators::impl::skewness_impl<mpl::_1> impl;
|
D | mean.hpp | 21 namespace boost { namespace accumulators namespace 105 typedef accumulators::impl::mean_impl<mpl::_1, sum> impl; 112 typedef accumulators::impl::immediate_mean_impl<mpl::_1, tag::sample> impl; 120 typedef accumulators::impl::mean_impl<mpl::_2, sum_of_weights> impl; 128 typedef accumulators::impl::immediate_mean_impl<mpl::_2, tag::weight> impl; 136 …typedef mpl::always<accumulators::impl::mean_impl<VariateType, sum_of_variates<VariateType, Variat… 144 typedef mpl::always<accumulators::impl::immediate_mean_impl<VariateType, VariateTag> > impl;
|
D | pot_quantile.hpp | 29 namespace boost { namespace accumulators namespace 111 typedef accumulators::impl::pot_quantile_impl<mpl::_1, unweighted, LeftRight> impl; 119 typedef accumulators::impl::pot_quantile_impl<mpl::_1, unweighted, LeftRight> impl; 127 typedef accumulators::impl::pot_quantile_impl<mpl::_1, weighted, LeftRight> impl; 135 typedef accumulators::impl::pot_quantile_impl<mpl::_1, weighted, LeftRight> impl;
|
D | sum.hpp | 22 namespace boost { namespace accumulators namespace 78 typedef accumulators::impl::sum_impl<mpl::_1, tag::sample> impl; 87 typedef accumulators::impl::sum_impl<mpl::_2, tag::weight> impl; 96 typedef mpl::always<accumulators::impl::sum_impl<VariateType, VariateTag> > impl;
|
/third_party/boost/boost/histogram/accumulators/ |
D | weighted_sum.hpp | 16 namespace accumulators { namespace 102 struct common_type<boost::histogram::accumulators::weighted_sum<T>, 103 boost::histogram::accumulators::weighted_sum<U>> { 104 using type = boost::histogram::accumulators::weighted_sum<common_type_t<T, U>>; 108 struct common_type<boost::histogram::accumulators::weighted_sum<T>, U> { 109 using type = boost::histogram::accumulators::weighted_sum<common_type_t<T, U>>; 113 struct common_type<T, boost::histogram::accumulators::weighted_sum<U>> { 114 using type = boost::histogram::accumulators::weighted_sum<common_type_t<T, U>>;
|
D | mean.hpp | 19 namespace accumulators { namespace 130 struct version<boost::histogram::accumulators::mean<T>> : std::integral_constant<int, 1> { 139 struct common_type<boost::histogram::accumulators::mean<T>, 140 boost::histogram::accumulators::mean<U>> { 141 using type = boost::histogram::accumulators::mean<common_type_t<T, U>>;
|
/third_party/boost/libs/accumulators/example/ |
D | main.cpp | 22 using namespace boost::accumulators; 67 std::cout << " moment<2>(acc) = " << accumulators::moment<2>(acc) << std::endl; in example1() 190 std::cout << " moment<2> = " << accumulators::moment<2>(acc) << std::endl; in example4() 191 std::cout << " p_square_quantile = " << accumulators::p_square_quantile(acc) << std::endl; in example4() 192 std::cout << " kurtosis = " << accumulators::kurtosis(acc) << std::endl; in example4() 230 std::cout << " moment<2>(acc) = " << accumulators::moment<2>(acc) << std::endl; in example4() 231 … std::cout << " p_square_quantile(acc) = " << accumulators::p_square_quantile(acc) << std::endl; in example4() 232 std::cout << " kurtosis(acc) = " << accumulators::kurtosis(acc) << std::endl; in example4() 239 std::cout << " moment<2>(acc) = " << accumulators::moment<2>(restored_acc) << std::endl; in example4() 240 …std::cout << " p_square_quantile(acc) = " << accumulators::p_square_quantile(restored_acc) << st… in example4() [all …]
|
/third_party/boost/doc/test/ |
D | Jamfile.v2 | 59 ../../boost/accumulators/framework/depends_on.hpp 60 ../../boost/accumulators/framework/extractor.hpp 64 <doxygen:param>GENERATE_TAGFILE=accumulators.tag 89 TOHTML = .\\html\\images\\accumulators ; 90 TOPDF = \\images\\accumulators ; 97 TOHTML = ./html/images/accumulators ; 98 TOPDF = /images/accumulators ; 111 # html/images/accumulators directory. 135 <doxygen:param>TAGFILES=accumulators.tag 137 <xsl:param>boost.doxygen.formuladir=images/accumulators/ [all …]
|
/third_party/boost/boost/accumulators/framework/accumulators/ |
D | external_accumulator.hpp | 18 namespace boost { namespace accumulators { namespace impl namespace 48 return extract(accumulators::reference_tag<Tag>(args)); in extract_() 72 accumulators::impl::external_impl< 84 accumulators::impl::external_impl<
|