comment on constructor.

[SVN r3499]
This commit is contained in:
Paul A. Bristow 2006-12-05 10:02:21 +00:00
parent bae5d19900
commit b0aed3e830

View File

@ -263,6 +263,8 @@ int test_main(int, char* [])
// Check that can generate normal distribution using the two convenience methods:
boost::math::normal myf1(1., 2); // Using typedef
normal_distribution<> myf2(1., 2); // Using default RealType double.
boost::math::normal myn01; // Use default values.
// Note NOT myn01() as the compiler will interpret as a function!
// Basic sanity-check spot values.
// (Parameter value, arbitrarily zero, only communicates the floating point type).
@ -287,20 +289,20 @@ int test_main(int, char* [])
Output:
------ Build started: Project: normal, Configuration: Debug Win32 ------
------ Build started: Project: test_normal, Configuration: Debug Win32 ------
Compiling...
test_normal.cpp
Linking...
Autorun "i:\boost-06-05-03-1300\libs\math\test\Math_test\debug\normal.exe"
Autorun "i:\boost-06-05-03-1300\libs\math\test\Math_test\debug\test_normal.exe"
Running 1 test case...
Tolerance for type float is 0.01 %
Tolerance for type double is 0.01 %
Tolerance for type long double is 0.01 %
Tolerance for type class boost::math::concepts::real_concept is 0.01 %
*** No errors detected
Build Time 0:06
Build log was saved at "file://i:\boost-06-05-03-1300\libs\math\test\Math_test\normal\Debug\BuildLog.htm"
normal - 0 error(s), 0 warning(s)
Build Time 0:05
Build log was saved at "file://i:\boost-06-05-03-1300\libs\math\test\Math_test\test_normal\Debug\BuildLog.htm"
test_normal - 0 error(s), 0 warning(s)
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
*/