Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56514 - sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/aggregate
From: erwann.rogard_at_[hidden]
Date: 2009-10-02 13:50:00


Author: e_r
Date: 2009-10-02 13:49:59 EDT (Fri, 02 Oct 2009)
New Revision: 56514
URL: http://svn.boost.org/trac/boost/changeset/56514

Log:
m
Text files modified:
   sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/aggregate/normalized_functions.hpp | 24 ++++++++++++------------
   sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/aggregate/unnormalized_functions.hpp | 20 ++++++++++----------
   2 files changed, 22 insertions(+), 22 deletions(-)

Modified: sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/aggregate/normalized_functions.hpp
==============================================================================
--- sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/aggregate/normalized_functions.hpp (original)
+++ sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/aggregate/normalized_functions.hpp 2009-10-02 13:49:59 EDT (Fri, 02 Oct 2009)
@@ -6,11 +6,11 @@
 // Boost Software License, Version 1.0. (See accompanying file //
 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) //
 //////////////////////////////////////////////////////////////////////////////////
-#ifndef BOOST_DISTRIBUTION_TOOLKIT_DISTRIBUTIONS_CONCEPT_AGGREGATE_NORMALIZED_FUNCTIONS_HPP_ER_2009
-#define BOOST_DISTRIBUTION_TOOLKIT_DISTRIBUTIONS_CONCEPT_AGGREGATE_NORMALIZED_FUNCTIONS_HPP_ER_2009
-#include <boost/statistics/detail/distribution_toolkit/concept/unary/cdf.hpp>
-#include <boost/statistics/detail/distribution_toolkit/concept/unary/pdf.hpp>
-#include <boost/statistics/detail/distribution_toolkit/concept/unary/quantile.hpp>
+#ifndef BOOST_COMMON_DISTRIBUTION_CONCEPT_AGGREGATE_NORMALIZED_FUNCTIONS_HPP_ER_2009
+#define BOOST_COMMON_DISTRIBUTION_CONCEPT_AGGREGATE_NORMALIZED_FUNCTIONS_HPP_ER_2009
+#include <boost/statistics/detail/distribution_common/concept/unary/cdf.hpp>
+#include <boost/statistics/detail/distribution_common/concept/unary/pdf.hpp>
+#include <boost/statistics/detail/distribution_common/concept/unary/quantile.hpp>
 
 namespace boost{
 namespace statistics{
@@ -25,13 +25,13 @@
     // distribution_toolkit/distributions/D/is_math_distribution.hpp
     // where meta::is_math::distribution<D> specializes to mpl::bool_<true>
     // b) including the relevant file in distribution_toolkit/fwd_math
- template<typename D>
- class NormalizedFunctions :
- Cdf<D>,
- Pdf<D>,
- Quantile<D>
- {
- };
+ //template<typename D>
+ //class NormalizedFunctions :
+ // Cdf<D>,
+ // Pdf<D>,
+ // Quantile<D>
+ //{
+ //};
 
 }// concept
 }// distribution_toolkit

Modified: sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/aggregate/unnormalized_functions.hpp
==============================================================================
--- sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/aggregate/unnormalized_functions.hpp (original)
+++ sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/aggregate/unnormalized_functions.hpp 2009-10-02 13:49:59 EDT (Fri, 02 Oct 2009)
@@ -6,10 +6,10 @@
 // Boost Software License, Version 1.0. (See accompanying file //
 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) //
 //////////////////////////////////////////////////////////////////////////////////
-#ifndef BOOST_DISTRIBUTION_TOOLKIT_DISTRIBUTIONS_CONCEPT_AGGREGATE_UNNORMALIZED_FUNCTIONS_HPP_ER_2009
-#define BOOST_DISTRIBUTION_TOOLKIT_DISTRIBUTIONS_CONCEPT_AGGREGATE_UNNORMALIZED_FUNCTIONS_HPP_ER_2009
-#include <boost/statistics/detail/distribution_toolkit/concept/unary/log_unnormalized_pdf.hpp>
-#include <boost/statistics/detail/distribution_toolkit/concept/unary/derivative_log_unnormalized_pdf.hpp>
+#ifndef BOOST_COMMON_DISTRIBUTION_CONCEPT_AGGREGATE_UNNORMALIZED_FUNCTIONS_HPP_ER_2009
+#define BOOST_COMMON_DISTRIBUTION_CONCEPT_AGGREGATE_UNNORMALIZED_FUNCTIONS_HPP_ER_2009
+#include <boost/statistics/detail/distribution_common/concept/unary/log_unnormalized_pdf.hpp>
+#include <boost/statistics/detail/distribution_common/concept/unary/derivative_log_unnormalized_pdf.hpp>
 
 namespace boost{
 namespace statistics{
@@ -21,12 +21,12 @@
     // If D is in boost::math, include (or if neccessary create)
     // distribution_toolkit/distribution/D/is_math_distribution
     // distribution_toolkit/distribution/D/log_unnormalized_pdf
- template<typename D>
- class UnnormalizedFunctions :
- LogUnnormalizedPdf<D>,
- DerivativeLogUnnormalizedPdf<D>
- {
- };
+ //template<typename D>
+ //class UnnormalizedFunctions :
+ // LogUnnormalizedPdf<D>,
+ // DerivativeLogUnnormalizedPdf<D>
+ //{
+ //};
 
 }// concept
 }// distribution_toolkit


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