Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56484 - sandbox/statistics/estimator_concept/boost/statistics/estimator_concept/trainable
From: erwann.rogard_at_[hidden]
Date: 2009-09-29 19:18:24


Author: e_r
Date: 2009-09-29 19:18:23 EDT (Tue, 29 Sep 2009)
New Revision: 56484
URL: http://svn.boost.org/trac/boost/changeset/56484

Log:
m
Text files modified:
   sandbox/statistics/estimator_concept/boost/statistics/estimator_concept/trainable/concept.hpp | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: sandbox/statistics/estimator_concept/boost/statistics/estimator_concept/trainable/concept.hpp
==============================================================================
--- sandbox/statistics/estimator_concept/boost/statistics/estimator_concept/trainable/concept.hpp (original)
+++ sandbox/statistics/estimator_concept/boost/statistics/estimator_concept/trainable/concept.hpp 2009-09-29 19:18:23 EDT (Tue, 29 Sep 2009)
@@ -16,19 +16,19 @@
 namespace estimator_concept{
 
     // E : estimator type
- // Rxy : sequence of (X,Y) pairs
- template <typename E,typename Rxy,typename B = mpl::empty_base>
+ // R : sequence of training points
+ template <typename E,typename R,typename B = mpl::empty_base>
     class Trainable : B
     {
         public:
         BOOST_CONCEPT_USAGE(Trainable)
         {
- train( e, r_xy );
+ train( e, r );
         }
     
         private:
         E e;
- Rxy r_xy;
+ R r;
     };
 
 }// estimator_concept


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