Commit 037181bc by Benjamin Kosnik Committed by Benjamin Kosnik

random.h: Doxygen group markup fixes.

2010-02-23  Benjamin Kosnik  <bkoz@redhat.com>

        * include/bits/random.h: Doxygen group markup fixes.

From-SVN: r157023
parent 8f40ad50
2010-02-23 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/random.h: Doxygen group markup fixes.
2010-02-23 Paolo Carlini <paolo.carlini@oracle.com> 2010-02-23 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/functional_hash.h (struct _Fnv_hash): Rename * include/bits/functional_hash.h (struct _Fnv_hash): Rename
......
...@@ -35,7 +35,9 @@ namespace std ...@@ -35,7 +35,9 @@ namespace std
// [26.4] Random number generation // [26.4] Random number generation
/** /**
* @addtogroup std_random Random Number Generation * @defgroup random Random Number Generation
* @ingroup numerics
*
* A facility for generating random numbers on selected distributions. * A facility for generating random numbers on selected distributions.
* @{ * @{
*/ */
...@@ -114,8 +116,8 @@ namespace std ...@@ -114,8 +116,8 @@ namespace std
} // namespace __detail } // namespace __detail
/** /**
* @addtogroup std_random_generators Random Number Generators * @addtogroup random_generators Random Number Generators
* @ingroup std_random * @ingroup random
* *
* These classes define objects which provide random or pseudorandom * These classes define objects which provide random or pseudorandom
* numbers, either from a discrete or a continuous interval. The * numbers, either from a discrete or a continuous interval. The
...@@ -1471,17 +1473,17 @@ namespace std ...@@ -1471,17 +1473,17 @@ namespace std
#endif #endif
}; };
/* @} */ // group std_random_generators /* @} */ // group random_generators
/** /**
* @addtogroup std_random_distributions Random Number Distributions * @addtogroup random_distributions Random Number Distributions
* @ingroup std_random * @ingroup random
* @{ * @{
*/ */
/** /**
* @addtogroup std_random_distributions_uniform Uniform Distributions * @addtogroup random_distributions_uniform Uniform Distributions
* @ingroup std_random_distributions * @ingroup random_distributions
* @{ * @{
*/ */
...@@ -1790,11 +1792,11 @@ namespace std ...@@ -1790,11 +1792,11 @@ namespace std
operator>>(std::basic_istream<_CharT, _Traits>&, operator>>(std::basic_istream<_CharT, _Traits>&,
std::uniform_real_distribution<_RealType>&); std::uniform_real_distribution<_RealType>&);
/* @} */ // group std_random_distributions_uniform /* @} */ // group random_distributions_uniform
/** /**
* @addtogroup std_random_distributions_normal Normal Distributions * @addtogroup random_distributions_normal Normal Distributions
* @ingroup std_random_distributions * @ingroup random_distributions
* @{ * @{
*/ */
...@@ -2849,11 +2851,11 @@ namespace std ...@@ -2849,11 +2851,11 @@ namespace std
std::gamma_distribution<result_type> _M_gd; std::gamma_distribution<result_type> _M_gd;
}; };
/* @} */ // group std_random_distributions_normal /* @} */ // group random_distributions_normal
/** /**
* @addtogroup std_random_distributions_bernoulli Bernoulli Distributions * @addtogroup random_distributions_bernoulli Bernoulli Distributions
* @ingroup std_random_distributions * @ingroup random_distributions
* @{ * @{
*/ */
...@@ -3472,11 +3474,11 @@ namespace std ...@@ -3472,11 +3474,11 @@ namespace std
std::gamma_distribution<double> _M_gd; std::gamma_distribution<double> _M_gd;
}; };
/* @} */ // group std_random_distributions_bernoulli /* @} */ // group random_distributions_bernoulli
/** /**
* @addtogroup std_random_distributions_poisson Poisson Distributions * @addtogroup random_distributions_poisson Poisson Distributions
* @ingroup std_random_distributions * @ingroup random_distributions
* @{ * @{
*/ */
...@@ -4606,13 +4608,13 @@ namespace std ...@@ -4606,13 +4608,13 @@ namespace std
}; };
/* @} */ // group std_random_distributions_poisson /* @} */ // group random_distributions_poisson
/* @} */ // group std_random_distributions /* @} */ // group random_distributions
/** /**
* @addtogroup std_random_utilities Random Number Utilities * @addtogroup random_utilities Random Number Utilities
* @ingroup std_random * @ingroup random
* @{ * @{
*/ */
...@@ -4657,9 +4659,9 @@ namespace std ...@@ -4657,9 +4659,9 @@ namespace std
std::vector<result_type> _M_v; std::vector<result_type> _M_v;
}; };
/* @} */ // group std_random_utilities /* @} */ // group random_utilities
/* @} */ // group std_random /* @} */ // group random
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment