X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cfc534f877804bee49c17b392d6c1c54a82257ae..f3af8b430269d158689ad7cdef5b5e54df8360a1:/include/simdag/datatypes.h diff --git a/include/simdag/datatypes.h b/include/simdag/datatypes.h index 8b7b4ddc29..f21af30453 100644 --- a/include/simdag/datatypes.h +++ b/include/simdag/datatypes.h @@ -5,17 +5,17 @@ typedef struct SG_link { void *data; char *name; - double capacity; - double current_bandwidth; - double current_latency; + /*double capacity;*/ + /*double current_bandwidth; + double current_latency;*/ } s_SG_link_t, *SG_link_t; /* Workstation */ typedef struct SG_workstation { void *data; char *name; - double power; - double available_power; + /*double power; + double available_power;*/ /* TODO: route */ } s_SG_workstation_t, *SG_workstation_t; @@ -31,8 +31,8 @@ typedef enum { typedef struct SG_task { void *data; char *name; - double amount; - double remaining_amount; + /*double amount; + double remaining_amount;*/ SG_task_state_t state; /* TODO: dependencies + watch */ } s_SG_task_t, *SG_task_t;