Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start snake_casing s4u::Engine
[simgrid.git] / examples / s4u / app-masterworker / s4u-app-masterworker.cpp
index e21badf..47420c8 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010-2017. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2010-2018. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -37,7 +37,7 @@ public:
 
       if (number_of_tasks < 10000 || i % 10000 == 0)
         XBT_INFO("Sending \"%s\" (of %ld) to mailbox \"%s\"", (std::string("Task_") + std::to_string(i)).c_str(),
-                 number_of_tasks, mailbox->getName());
+                 number_of_tasks, mailbox->get_cname());
 
       /* - Send the computation amount to the @ref worker */
       mailbox->put(new double(comp_size), comm_size);
@@ -89,10 +89,10 @@ int main(int argc, char* argv[])
                        "\tExample: %s msg_platform.xml msg_deployment.xml\n",
              argv[0], argv[0]);
 
-  e.loadPlatform(argv[1]); /** - Load the platform description */
-  e.registerFunction<Master>("master");
-  e.registerFunction<Worker>("worker"); /** - Register the function to be executed by the processes */
-  e.loadDeployment(argv[2]);            /** - Deploy the application */
+  e.load_platform(argv[1]); /** - Load the platform description */
+  e.register_function<Master>("master");
+  e.register_function<Worker>("worker"); /** - Register the function to be executed by the processes */
+  e.load_deployment(argv[2]);            /** - Deploy the application */
 
   e.run(); /** - Run the simulation */