MOOSE - Multiscale Object Oriented Simulation Environment
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Distributions.h
Go to the documentation of this file.
1 /***
2  * Filename: Distributions.h
3  *
4  * Description: All distributions.
5  *
6  * Version: 0.0.1
7  * Created: 2018-08-04
8 
9  * Revision: none
10  *
11  * Author: Dilawar Singh <dilawars@ncbs.res.in>
12  * Organization: NCBS Bangalore
13  *
14  * License: GNU GPL2
15  */
16 
17 #ifndef DISTRIBUTIONS_H
18 #define DISTRIBUTIONS_H
19 
20 #include "NormalDistribution.hpp"
21 #include <random>
22 
23 namespace moose {
24 
25  template<typename T=double>
26  using MOOSE_UNIFORM_DISTRIBUTION = std::uniform_real_distribution<T>;
27 
28  template<typename T=double>
30 
31 }
32 
33 
34 #endif /* end of include guard: DISTRIBUTIONS_H */
std::uniform_real_distribution< T > MOOSE_UNIFORM_DISTRIBUTION
Definition: Distributions.h:26