forgot to remove extern

This commit is contained in:
shubham1206agra
2022-04-30 11:43:31 +05:30
parent 1e96d07af7
commit 1b49b18cbd
-7
View File
@@ -53,13 +53,6 @@ namespace math /** Miscellaneous math routines. */ {
inline MLPACK_EXPORT std::normal_distribution<> randNormalDist(0.0, 1.0);
#endif
// Global random object.
extern MLPACK_EXPORT std::mt19937 randGen;
// Global uniform distribution.
extern MLPACK_EXPORT std::uniform_real_distribution<> randUniformDist;
// Global normal distribution.
extern MLPACK_EXPORT std::normal_distribution<> randNormalDist;
/**
* Set the random seed used by the random functions (Random() and RandInt()).
* The seed is casted to a 32-bit integer before being given to the random