Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
clang don't like the register modifer in c++
[simgrid.git] / src / surf / cpu_cas01.cpp
index 0523018..79d0c91 100644 (file)
@@ -115,17 +115,7 @@ void CpuCas01Model::addTraces()
     return;
   called = 1;
 
-  /* connect all traces relative to hosts */
-  xbt_dict_foreach(trace_connect_list_host_avail, cursor, trace_name, elm) {
-    tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
-    Cpu *cpu = sg_host_by_name(elm)->pimpl_cpu;
-
-    xbt_assert(cpu, "Host %s undefined", elm);
-    xbt_assert(trace, "Trace %s undefined", trace_name);
-
-    cpu->set_state_trace(trace);
-  }
-
+  /* connect host speed traces */
   xbt_dict_foreach(trace_connect_list_host_speed, cursor, trace_name, elm) {
     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
     Cpu *cpu = sg_host_by_name(elm)->pimpl_cpu;