Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Bug corrections: i) boundless variables wasn't detected properly,
[simgrid.git] / src / surf / maxmin_private.h
index 27c44d2..0a5e2b7 100644 (file)
@@ -51,16 +51,18 @@ typedef struct lmm_variable {
   int cnsts_number;
   double weight;
   double bound;
+  double value;
+  void *id;
+  int index; /* FOR SDP ONLY */
+  /* \begin{For Lagrange only} */
   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})' */
+  /* \end{For Lagrange only} */
 } s_lmm_variable_t;
 
 typedef struct lmm_system {