Rosetta
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
random.fwd.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 /// @file numeric/random/random.fwd.hh
11 /// @brief Random number generator system
12 /// @author Sergey Lyskov (Sergey.Lyskov@jhu.edu)
13 ///
14 /// @remarks
15 /// @li -
16 
17 
18 #ifndef INCLUDED_numeric_random_random_fwd_hh
19 #define INCLUDED_numeric_random_random_fwd_hh
20 
21 #include <platform/types.hh>
22 
23 // C++ headers
24 #include <cstddef>
25 
26 namespace numeric {
27 namespace random {
28 
29 
31 
32 double uniform(void);
33 double gaussian(void);
34 
35 // Forward
36 class RandomGenerator;
37 class uniform_RG;
38 
39 
40 } // namespace random
41 } // namespace numeric
42 
43 
44 #endif // INCLUDED_numeric_random_FWD_HH
Uniform random number generator.
Definition: uniform.hh:38
Random number generator system.
Definition: random.hh:73
double gaussian()
Generate a random number pulled from a standard normal – i.e. mean of zero and standard deviation of...
Definition: random.cc:57
double uniform()
Generate a random number between 0 and 1. Threadsafe since each thread uses its own random generator...
Definition: random.cc:56
std::size_t Size
Definition: types.hh:37
platform::Size Size
Definition: random.fwd.hh:30