|
Boost-Commit : |
From: gautamcool88_at_[hidden]
Date: 2008-08-29 15:53:07
Author: s.gautam
Date: 2008-08-29 15:53:07 EDT (Fri, 29 Aug 2008)
New Revision: 48461
URL: http://svn.boost.org/trac/boost/changeset/48461
Log:
added logistic distribution to the BOOST_MATH_DECLARE_DISTRIBUTIONS macro
Text files modified:
sandbox/SOC/2008/parrallel_math/boost/math/distributions/fwd.hpp | 23 ++++++-----------------
1 files changed, 6 insertions(+), 17 deletions(-)
Modified: sandbox/SOC/2008/parrallel_math/boost/math/distributions/fwd.hpp
==============================================================================
--- sandbox/SOC/2008/parrallel_math/boost/math/distributions/fwd.hpp (original)
+++ sandbox/SOC/2008/parrallel_math/boost/math/distributions/fwd.hpp 2008-08-29 15:53:07 EDT (Fri, 29 Aug 2008)
@@ -45,18 +45,6 @@
class negative_binomial_distribution;
template <class RealType, class Policy>
-class non_central_chi_squared_distribution;
-
-template <class RealType, class Policy>
-class non_central_beta_distribution;
-
-template <class RealType, class Policy>
-class non_central_f_distribution;
-
-template <class RealType, class Policy>
-class non_central_t_distribution;
-
-template <class RealType, class Policy>
class normal_distribution;
template <class RealType, class Policy>
@@ -80,6 +68,11 @@
template <class RealType, class Policy>
class weibull_distribution;
+template <class RealType, class Policy>
+class logistic_distribution;
+
+
+
}} // namespaces
#define BOOST_MATH_DECLARE_DISTRIBUTIONS(Type, Policy)\
@@ -102,9 +95,5 @@
typedef boost::math::triangular_distribution<Type, Policy> triangular;\
typedef boost::math::uniform_distribution<Type, Policy> uniform;\
typedef boost::math::weibull_distribution<Type, Policy> weibull;\
- typedef boost::math::non_central_chi_squared_distribution<Type, Policy> non_central_chi_squared;\
- typedef boost::math::non_central_beta_distribution<Type, Policy> non_central_beta;\
- typedef boost::math::non_central_f_distribution<Type, Policy> non_central_f;\
- typedef boost::math::non_central_t_distribution<Type, Policy> non_central_t;\
-
+ typedef boost::math::logistic_distribution<Type, Policy> logistic;
#endif // BOOST_MATH_DISTRIBUTIONS_FWD_HPP
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk