Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cleanups and cosmetics
[simgrid.git] / src / surf / maxmin_private.h
index 20480d0..947e1c8 100644 (file)
@@ -33,7 +33,8 @@ typedef struct lmm_constraint {
   s_xbt_swag_t element_set;    /* a list of lmm_mat_element_t */
   s_xbt_swag_t active_element_set;     /* a list of lmm_mat_element_t */
   double bound;
-  double initial_bound;
+  double lambda;
+  double new_lambda;
   double remaining;
   int shared;
   double usage;
@@ -50,10 +51,15 @@ typedef struct lmm_variable {
   int cnsts_number;
   double weight;
   double bound;
-  double initial_bound;
   double value;
   void *id;
-  int index;
+  int index; /* FOR SDP ONLY */
+  /* \begin{For Lagrange only} */
+  double mu;
+  double new_mu;
+  double df; /* Total delay of flow */
+  double (* func_fpi)  (struct lmm_variable *var, double x);  /* (f')^{-1}    */
+  /* \end{For Lagrange only} */
 } s_lmm_variable_t;
 
 typedef struct lmm_system {