Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove misleading comment
[simgrid.git] / src / surf / cpu_cas01.c
index c94bf46..541ab3c 100644 (file)
@@ -314,15 +314,12 @@ static double cpu_share_resources_lazy(double now)
         GENERIC_ACTION(action).start, now + value,
         GENERIC_ACTION(action).max_duration);
 
-    if (action->index_heap >= 0) {
-      heap_remove(action);
-    }
-
     if (min != -1) {
+      heap_remove(action);
       heap_insert(action, min, max_dur_flag ? MAX_DURATION : NORMAL);
       XBT_DEBUG("Insert at heap action(%p) min %lf now %lf", action, min,
                 now);
-    }
+    } else DIE_IMPOSSIBLE;
   }
 
   //hereafter must have already the min value for this resource model
@@ -599,7 +596,6 @@ static void cpu_action_set_max_duration(surf_action_t action,
   XBT_IN("(%p,%g)", action, duration);
 
   action->max_duration = duration;
-  /* insert cpu in modified_cpu set to notice the max duration change */
   if (cpu_update_mechanism == UM_LAZY)
     heap_remove((surf_action_cpu_Cas01_t) action);
   XBT_OUT();