From 1b49b18cbd2f431d0d6fb85a00b35ffd2a149c06 Mon Sep 17 00:00:00 2001 From: shubham1206agra Date: Sat, 30 Apr 2022 11:43:31 +0530 Subject: [PATCH] forgot to remove extern --- src/mlpack/core/math/random.hpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/mlpack/core/math/random.hpp b/src/mlpack/core/math/random.hpp index 90de16ad91..464bcd588c 100644 --- a/src/mlpack/core/math/random.hpp +++ b/src/mlpack/core/math/random.hpp @@ -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