Previous Les implémentations templates de la bibliothèque |
Parent Construire la bibliothèque d'initialisation aléatoire |
Outline | Next Le fichier CMakeLists.txt |
Écrivons le fichier randinit.cpp :
1 |
#include "randinit.h"
|
1 2 3 4 5 6 7 8 |
///Set the random seed /** @return seed of the random function */ unsigned int initRandom(){ time_t t = time(NULL); srand(t); return t; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/*************************************** Auteur : Pierre Aubert Mail : aubertp7@gmail.com Licence : CeCILL-C ****************************************/ #include "randinit.h" ///Set the random seed /** @return seed of the random function */ unsigned int initRandom(){ time_t t = time(NULL); srand(t); return t; } |
Previous Les implémentations templates de la bibliothèque |
Parent Construire la bibliothèque d'initialisation aléatoire |
Outline | Next Le fichier CMakeLists.txt |