X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d045730df220c1b78e758d1d7a7fc1c6a53a424f..4782cbf2b807dfaaf2969c2f3a10f68a16fd8e69:/src/include/surf/random_mgr.h?ds=sidebyside diff --git a/src/include/surf/random_mgr.h b/src/include/surf/random_mgr.h index d839d55a64..7e0d4956af 100644 --- a/src/include/surf/random_mgr.h +++ b/src/include/surf/random_mgr.h @@ -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;