Boost logo

Boost-Commit :

From: pbristow_at_[hidden]
Date: 2007-08-25 08:02:42


Author: pbristow
Date: 2007-08-25 08:02:41 EDT (Sat, 25 Aug 2007)
New Revision: 38931
URL: http://svn.boost.org/trac/boost/changeset/38931

Log:
Copyright & cosmetic
Text files modified:
   sandbox/math_toolkit/boost/math/distributions/normal.hpp | 12 ++++++------
   1 files changed, 6 insertions(+), 6 deletions(-)

Modified: sandbox/math_toolkit/boost/math/distributions/normal.hpp
==============================================================================
--- sandbox/math_toolkit/boost/math/distributions/normal.hpp (original)
+++ sandbox/math_toolkit/boost/math/distributions/normal.hpp 2007-08-25 08:02:41 EDT (Sat, 25 Aug 2007)
@@ -1,5 +1,5 @@
-// Copyright John Maddock 2006.
-// Copyright Paul A. Bristow 2007.
+// Copyright John Maddock 2006, 2007.
+// Copyright Paul A. Bristow 2006, 2007.
 
 // Use, modification and distribution are subject to the
 // Boost Software License, Version 1.0. (See accompanying file
@@ -42,12 +42,12 @@
    { // scale
       return m_sd;
    }
+
    // Synonyms, provided to allow generic use of find_location and find_scale.
    RealType location()const
    { // location
       return m_mean;
    }
-
    RealType scale()const
    { // scale
       return m_sd;
@@ -57,9 +57,9 @@
    //
    // Data members:
    //
- RealType m_mean; // distribution mean
- RealType m_sd; // distribution standard deviation
-};
+ RealType m_mean; // distribution mean or location.
+ RealType m_sd; // distribution standard deviation or scale.
+}; // class normal_distribution
 
 typedef normal_distribution<double> normal;
 


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