00001 00004 #ifndef RANDOM_HPP_ 00005 #define RANDOM_HPP_ 00006 00007 // TODO: all random value generation through these functions. 00008 00009 #include<vector> 00010 #include<random> 00011 00012 using namespace std; 00013 00015 void randomize1(vector<double> &vec, mt19937 *mt); 00016 00017 #endif