Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Added field mu_new and field init_bound was replaced by mu in structure
authorvelho <velho@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 23 Mar 2007 17:31:05 +0000 (17:31 +0000)
committervelho <velho@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 23 Mar 2007 17:31:05 +0000 (17:31 +0000)
lmm_variable_t. Added field lambda_new and field init_bound was
replaced by lambda in lmm_constraint_t.

git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3347 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/surf/maxmin_private.h

index 20480d0..034a252 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;
   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;
   double remaining;
   int shared;
   double usage;
@@ -50,7 +51,8 @@ typedef struct lmm_variable {
   int cnsts_number;
   double weight;
   double bound;
   int cnsts_number;
   double weight;
   double bound;
-  double initial_bound;
+  double mu;
+  double new_mu;
   double value;
   void *id;
   int index;
   double value;
   void *id;
   int index;