Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make GTNETS compatible with new parsing and variable name convention.
[simgrid.git] / src / include / surf / random_mgr.h
index d839d55..7e0d495 100644 (file)
@@ -13,7 +13,8 @@ typedef enum {NONE, DRAND48, RAND} Generator;
 
 typedef struct random_data_desc {
   long int seed;
-  double max, min, mean, stdDeviation;
+  double max, min;
+  double mean, std; /* note: mean and standard deviation are normalized */
   Generator generator;
 } s_random_data_t, *random_data_t;