Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56516 - sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary
From: erwann.rogard_at_[hidden]
Date: 2009-10-02 13:51:05


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

Log:
m
Text files modified:
   sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/log_unnormalized_pdf.hpp | 14 +++++++-------
   sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/mean.hpp | 14 +++++++-------
   sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/normalizing_constant.hpp | 14 +++++++-------
   sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/pdf.hpp | 14 +++++++-------
   sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/quantile.hpp | 14 +++++++-------
   sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/variance.hpp | 14 +++++++-------
   6 files changed, 42 insertions(+), 42 deletions(-)

Modified: sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/log_unnormalized_pdf.hpp
==============================================================================
--- sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/log_unnormalized_pdf.hpp (original)
+++ sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/log_unnormalized_pdf.hpp 2009-10-02 13:51:04 EDT (Fri, 02 Oct 2009)
@@ -1,16 +1,16 @@
 ///////////////////////////////////////////////////////////////////////////////////
-// distribution_toolkit::distributions::concept::unary::log_unnormalized_pdf.hpp //
+// distribution_toolkit::distributions::distribution::common::concept::unary::log_unnormalized_pdf.hpp //
 // //
 // (C) Copyright 2009 Erwann Rogard //
 // Use, modification and distribution are subject to the //
 // 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_UNARY_LOG_UNNORMALIZED_PDF_HPP_ER_2009
-#define BOOST_DISTRIBUTION_TOOLKIT_DISTRIBUTIONS_CONCEPT_UNARY_LOG_UNNORMALIZED_PDF_HPP_ER_2009
+#ifndef BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_LOG_UNNORMALIZED_PDF_HPP_ER_2009
+#define BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_LOG_UNNORMALIZED_PDF_HPP_ER_2009
 #include <boost/concept_check.hpp>
-#include <boost/statistics/detail/distribution_toolkit/meta/value.hpp>
-
+#include <boost/statistics/detail/distribution_common/meta/value.hpp>
+/*
 namespace boost{
 namespace statistics{
 namespace detail{
@@ -30,7 +30,7 @@
         }
 
         private:
- typedef typename meta::value<D>::type value_;
+ typedef typename distribution::common::meta::value<D>::type value_;
         D dist;
         value_ val;
         value_ x;
@@ -42,5 +42,5 @@
 }// statistics
 }// detail
 }// boost
-
+*/
 #endif
\ No newline at end of file

Modified: sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/mean.hpp
==============================================================================
--- sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/mean.hpp (original)
+++ sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/mean.hpp 2009-10-02 13:51:04 EDT (Fri, 02 Oct 2009)
@@ -1,16 +1,16 @@
 //////////////////////////////////////////////////////////////////////////////////
-// distribution_toolkit::distributions::concept::unary::mean.hpp //
+// distribution_toolkit::distributions::distribution::common::concept::unary::mean.hpp //
 // //
 // (C) Copyright 2009 Erwann Rogard //
 // Use, modification and distribution are subject to the //
 // 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_UNARY_MEAN_HPP_ER_2009
-#define BOOST_DISTRIBUTION_TOOLKIT_DISTRIBUTIONS_CONCEPT_UNARY_MEAN_HPP_ER_2009
+#ifndef BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_MEAN_HPP_ER_2009
+#define BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_MEAN_HPP_ER_2009
 #include <boost/concept_check.hpp>
-#include <boost/statistics/detail/distribution_toolkit/meta/value.hpp>
-
+#include <boost/statistics/detail/distribution_common/meta/value.hpp>
+/*
 namespace boost{
 namespace statistics{
 namespace detail{
@@ -26,7 +26,7 @@
         }
 
         private:
- typedef typename meta::value<D>::type value_;
+ typedef typename distribution::common::meta::value<D>::type value_;
         D dist;
         value_ val;
     };
@@ -36,5 +36,5 @@
 }// statistics
 }// detail
 }// boost
-
+*/
 #endif

Modified: sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/normalizing_constant.hpp
==============================================================================
--- sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/normalizing_constant.hpp (original)
+++ sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/normalizing_constant.hpp 2009-10-02 13:51:04 EDT (Fri, 02 Oct 2009)
@@ -1,16 +1,16 @@
 ///////////////////////////////////////////////////////////////////////////////////
-// distribution_toolkit::distributions::concept::unary::normalizing_constant.hpp //
+// distribution_toolkit::distributions::distribution::common::concept::unary::normalizing_constant.hpp //
 // //
 // (C) Copyright 2009 Erwann Rogard //
 // Use, modification and distribution are subject to the //
 // 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_UNARY_NORMALIZING_CONSTANT_HPP_ER_2009
-#define BOOST_DISTRIBUTION_TOOLKIT_DISTRIBUTIONS_CONCEPT_UNARY_NORMALIZING_CONSTANT_HPP_ER_2009
+#ifndef BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_NORMALIZING_CONSTANT_HPP_ER_2009
+#define BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_NORMALIZING_CONSTANT_HPP_ER_2009
 #include <boost/concept_check.hpp>
-#include <boost/statistics/detail/distribution_toolkit/meta/value.hpp>
-
+#include <boost/statistics/detail/distribution_common/meta/value.hpp>
+/*
 namespace boost{
 namespace statistics{
 namespace detail{
@@ -26,7 +26,7 @@
         }
 
         private:
- typedef typename meta::value<D>::type value_;
+ typedef typename distribution::common::meta::value<D>::type value_;
         D dist;
         value_ val;
         
@@ -37,5 +37,5 @@
 }// statistics
 }// detail
 }// boost
-
+*/
 #endif
\ No newline at end of file

Modified: sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/pdf.hpp
==============================================================================
--- sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/pdf.hpp (original)
+++ sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/pdf.hpp 2009-10-02 13:51:04 EDT (Fri, 02 Oct 2009)
@@ -1,16 +1,16 @@
 //////////////////////////////////////////////////////////////////////////////////
-// distribution_toolkit::distributions::concept::unary::pdf.hpp //
+// distribution_toolkit::distributions::distribution::common::concept::unary::pdf.hpp //
 // //
 // (C) Copyright 2009 Erwann Rogard //
 // Use, modification and distribution are subject to the //
 // 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_UNARY_PDF_HPP_ER_2009
-#define BOOST_DISTRIBUTION_TOOLKIT_DISTRIBUTIONS_CONCEPT_UNARY_PDF_HPP_ER_2009
+#ifndef BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_PDF_HPP_ER_2009
+#define BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_PDF_HPP_ER_2009
 #include <boost/concept_check.hpp>
-#include <boost/statistics/detail/distribution_toolkit/meta/value.hpp>
-
+#include <boost/statistics/detail/distribution_common/meta/value.hpp>
+/*
 namespace boost{
 namespace statistics{
 namespace detail{
@@ -26,7 +26,7 @@
         }
 
         private:
- typedef typename meta::value<D>::type value_;
+ typedef typename distribution::common::meta::value<D>::type value_;
         D dist;
         value_ val;
         value_ x;
@@ -38,5 +38,5 @@
 }// statistics
 }// detail
 }// boost
-
+*/
 #endif
\ No newline at end of file

Modified: sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/quantile.hpp
==============================================================================
--- sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/quantile.hpp (original)
+++ sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/quantile.hpp 2009-10-02 13:51:04 EDT (Fri, 02 Oct 2009)
@@ -1,16 +1,16 @@
 //////////////////////////////////////////////////////////////////////////////////
-// distribution_toolkit::distributions::concept::unary::quantile.hpp //
+// distribution_toolkit::distributions::distribution::common::concept::unary::quantile.hpp //
 // //
 // (C) Copyright 2009 Erwann Rogard //
 // Use, modification and distribution are subject to the //
 // 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_UNARY_QUANTILE_HPP_ER_2009
-#define BOOST_DISTRIBUTION_TOOLKIT_DISTRIBUTIONS_CONCEPT_UNARY_QUANTILE_HPP_ER_2009
+#ifndef BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_QUANTILE_HPP_ER_2009
+#define BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_QUANTILE_HPP_ER_2009
 #include <boost/concept_check.hpp>
-#include <boost/statistics/detail/distribution_toolkit/meta/value.hpp>
-
+#include <boost/statistics/detail/distribution_common/meta/value.hpp>
+/*
 namespace boost{
 namespace statistics{
 namespace detail{
@@ -26,7 +26,7 @@
         }
 
         private:
- typedef typename meta::value<D>::type value_;
+ typedef typename distribution::common::meta::value<D>::type value_;
         D dist;
         value_ val;
         value_ p;
@@ -38,5 +38,5 @@
 }// statistics
 }// detail
 }// boost
-
+*/
 #endif
\ No newline at end of file

Modified: sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/variance.hpp
==============================================================================
--- sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/variance.hpp (original)
+++ sandbox/statistics/distribution_toolkit/boost/statistics/detail/distribution_toolkit/concept/unary/variance.hpp 2009-10-02 13:51:04 EDT (Fri, 02 Oct 2009)
@@ -1,16 +1,16 @@
 //////////////////////////////////////////////////////////////////////////////////
-// distribution_toolkit::distributions::concept::unary::variance.hpp //
+// distribution_toolkit::distributions::distribution::common::concept::unary::variance.hpp //
 // //
 // (C) Copyright 2009 Erwann Rogard //
 // Use, modification and distribution are subject to the //
 // 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_UNARY_VARIANCE_HPP_ER_2009
-#define BOOST_DISTRIBUTION_TOOLKIT_DISTRIBUTIONS_CONCEPT_UNARY_VARIANCE_HPP_ER_2009
+#ifndef BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_VARIANCE_HPP_ER_2009
+#define BOOST_COMMON_DISTRIBUTION_CONCEPT_UNARY_VARIANCE_HPP_ER_2009
 #include <boost/concept_check.hpp>
-#include <boost/statistics/detail/distribution_toolkit/meta/value.hpp>
-
+#include <boost/statistics/detail/distribution_common/meta/value.hpp>
+/*
 namespace boost{
 namespace statistics{
 namespace detail{
@@ -33,7 +33,7 @@
         }
 
         private:
- typedef typename meta::value<D>::type value_;
+ typedef typename distribution::common::meta::value<D>::type value_;
         D dist;
         value_ val;
     };
@@ -43,5 +43,5 @@
 }// statistics
 }// detail
 }// boost
-
+*/
 #endif
\ No newline at end of file


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