- fixed small compiling error for a function in testsuite

- indentation formatting on DebugRoutines
This commit is contained in:
Rolzad73
2017-01-30 14:02:25 -05:00
parent 4d3e463aba
commit a916c1067f
4 changed files with 15 additions and 15 deletions

View File

@@ -77,7 +77,7 @@ public:
RandomGenerator(unsigned int seed = -1, bool doLog = false) : log(doLog) { if(seed != (unsigned int)-1) srand(seed);};
void loadRandValues(string s);
ostream& saveUsedRandValues(ostream& out) const;
ostream& saveLoadedRandValues(ostream& out);
ostream& saveLoadedRandValues(ostream& out) const;
int random();
void setSeed(unsigned int seed) { srand(seed); };
template<typename Iter> void random_shuffle(Iter first, Iter last)