Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Added the generic method to model fairness depending on the
[simgrid.git] / src / surf / maxmin_private.h
index 034a252..27c44d2 100644 (file)
@@ -54,8 +54,13 @@ typedef struct lmm_variable {
   double mu;
   double new_mu;
   double value;
+  double df; /* Total delay of flow */
   void *id;
   int index;
+  double (* func_f)    (struct lmm_variable *var, double x);  /* f            */
+  double (* func_fp)   (struct lmm_variable *var, double x);  /* f'           */
+  double (* func_fpi)  (struct lmm_variable *var, double x);  /* (f')^{-1}    */
+  double (* func_fpip) (struct lmm_variable *var, double x);  /* ((f')^{-1})' */
 } s_lmm_variable_t;
 
 typedef struct lmm_system {