Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics: cpu_load is not supposed to be >1 anymore
[simgrid.git] / src / plugins / host_energy.cpp
index a6e0d76aaf91adca5d1ed87681b12d9e2966a7e8..5b3cfca1f0bca2b7df40d4279cbc60cbd3a9651f 100644 (file)
@@ -261,9 +261,8 @@ double HostEnergy::get_current_watts_value()
 
     /* Divide by the number of cores here to have a value between 0 and 1 */
     cpu_load /= host_->pimpl_cpu->get_core_count();
+    xbt_assert(not(cpu_load > 1), "The impossible did happen, as usual.");
 
-    if (cpu_load > 1) // A machine with a load > 1 consumes as much as a fully loaded machine, not more
-      cpu_load = 1;
     if (cpu_load > 0)
       host_was_used_ = true;
   }