Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics in AsCluster and friends
[simgrid.git] / src / surf / xml / surfxml_parseplatf.cpp
index d87f73c..a637287 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "src/surf/xml/platf.hpp"
 
-#ifdef HAVE_LUA
+#if HAVE_LUA
 extern "C" {
 #include "src/bindings/lua/simgrid_lua.h"
 
@@ -128,14 +128,14 @@ void parse_after_config() {
 /* This function acts as a main in the parsing area. */
 void parse_platform_file(const char *file)
 {
-#ifdef HAVE_LUA
+#if HAVE_LUA
   int is_lua = (file != NULL && strlen(file) > 3 && file[strlen(file)-3] == 'l' && file[strlen(file)-2] == 'u'
         && file[strlen(file)-1] == 'a');
 #endif
 
   sg_platf_init();
 
-#ifdef HAVE_LUA
+#if HAVE_LUA
   /* Check if file extension is "lua". If so, we will use
    * the lua bindings to parse the platform file (since it is
    * written in lua). If not, we will use the (old?) XML parser
@@ -190,7 +190,7 @@ void parse_platform_file(const char *file)
       xbt_assert(host, "Host %s undefined", elm);
       simgrid::surf::Cpu *cpu = host->pimpl_cpu;
 
-      cpu->set_state_trace(trace);
+      cpu->setStateTrace(trace);
     }
     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);
@@ -200,7 +200,7 @@ void parse_platform_file(const char *file)
       xbt_assert(host, "Host %s undefined", elm);
       simgrid::surf::Cpu *cpu = host->pimpl_cpu;
 
-      cpu->set_speed_trace(trace);
+      cpu->setSpeedTrace(trace);
     }
     xbt_dict_foreach(trace_connect_list_link_avail, cursor, trace_name, elm) {
       tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);