Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cleanups and cosmetics
[simgrid.git] / src / surf / maxmin_private.h
index 7f503df..947e1c8 100644 (file)
@@ -51,17 +51,15 @@ 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)    (lmm_variable var, double x);  /* f            */
-  double (* func_fp)   (lmm_variable var, double x);  /* f'           */
-  double (* func_fpi)  (lmm_variable var, double x);  /* (f')^{-1}    */
-  double (* func_fpip) (lmm_variable var, double x);  /* ((f')^{-1})' */
-  double func_fi;
+  double (* func_fpi)  (struct lmm_variable *var, double x);  /* (f')^{-1}    */
+  /* \end{For Lagrange only} */
 } s_lmm_variable_t;
 
 typedef struct lmm_system {