Changeset 3900 for trunk/yat/random/ContinuousDistribution.h
- Timestamp:
- May 3, 2020, 10:29:25 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/random/ContinuousDistribution.h
r3898 r3900 34 34 #include <boost/random/gamma_distribution.hpp> 35 35 #include <boost/random/lognormal_distribution.hpp> 36 #ifdef YAT_HAVE_BOOST_RANDOM_NON_CENTRAL_CHI_SQUARED_DISTRIBUTION 36 37 #include <boost/random/non_central_chi_squared_distribution.hpp> 38 #endif 37 39 #include <boost/random/student_t_distribution.hpp> 38 40 … … 135 137 136 138 \since New in yat 0.18 139 140 \note non_central_chi_squared_distribution is not available in 141 older boost (it does exist in boost 1.59) 137 142 */ 143 #ifdef YAT_HAVE_BOOST_RANDOM_NON_CENTRAL_CHI_SQUARED_DISTRIBUTION 138 144 typedef 139 145 ContinuousDistribution<boost::random::non_central_chi_squared_distribution<> > 140 146 NonCentralChiSquared; 147 #endif 141 148 142 149 /**
Note: See TracChangeset
for help on using the changeset viewer.