Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
snake_case some easy parts of s4u::Host
[simgrid.git] / examples / s4u / exec-dvfs / s4u-exec-dvfs.cpp
index 2c44125..81abcf6 100644 (file)
@@ -12,7 +12,7 @@ static int dvfs()
   double workload = 100E6;
   simgrid::s4u::Host* host = simgrid::s4u::this_actor::get_host();
 
-  int nb = host->getPstatesCount();
+  int nb = host->get_pstate_count();
   XBT_INFO("Count of Processor states=%d", nb);
 
   XBT_INFO("Current power peak=%f", host->getSpeed());
@@ -20,7 +20,7 @@ static int dvfs()
   // Run a task
   simgrid::s4u::this_actor::execute(workload);
 
-  double task_time = simgrid::s4u::Engine::getClock();
+  double task_time = simgrid::s4u::Engine::get_clock();
   XBT_INFO("Task1 simulation time: %e", task_time);
 
   // Change power peak
@@ -28,19 +28,19 @@ static int dvfs()
 
   XBT_INFO("Changing power peak value to %f (at index %d)", host->getPstateSpeed(new_pstate), new_pstate);
 
-  host->setPstate(new_pstate);
+  host->set_pstate(new_pstate);
 
   XBT_INFO("Current power peak=%f", host->getSpeed());
 
   // Run a second task
   simgrid::s4u::this_actor::execute(workload);
 
-  task_time = simgrid::s4u::Engine::getClock() - task_time;
+  task_time = simgrid::s4u::Engine::get_clock() - task_time;
   XBT_INFO("Task2 simulation time: %e", task_time);
 
   // Verify that the default pstate is set to 0
   host = simgrid::s4u::Host::by_name_or_null("MyHost2");
-  XBT_INFO("Count of Processor states=%d", host->getPstatesCount());
+  XBT_INFO("Count of Processor states=%d", host->get_pstate_count());
 
   XBT_INFO("Current power peak=%f", host->getSpeed());
   return 0;
@@ -52,14 +52,14 @@ int main(int argc, char* argv[])
 
   xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
 
-  e.loadPlatform(argv[1]);
+  e.load_platform(argv[1]);
 
   simgrid::s4u::Actor::create("dvfs_test", simgrid::s4u::Host::by_name("MyHost1"), dvfs);
   simgrid::s4u::Actor::create("dvfs_test", simgrid::s4u::Host::by_name("MyHost2"), dvfs);
 
   e.run();
 
-  XBT_INFO("Total simulation time: %e", e.getClock());
+  XBT_INFO("Total simulation time: %e", e.get_clock());
 
   return 0;
 }