From 3c8e902155017f66366f3f58874521ab0ff9919b Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Thu, 21 Jun 2012 17:23:25 +0200 Subject: [PATCH] Removing useless comments in parallelApply. --- eo/test/mpi/parallelApply.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/eo/test/mpi/parallelApply.cpp b/eo/test/mpi/parallelApply.cpp index 82686bf7..605f3911 100644 --- a/eo/test/mpi/parallelApply.cpp +++ b/eo/test/mpi/parallelApply.cpp @@ -44,29 +44,6 @@ int main(int argc, char** argv) } cout << endl; } - /* - cout << "Création de l'instance..." << endl; - MpiNode* instance = MpiNodeStore::instance(); - if( dynamic_cast( instance ) != 0 ) - { - cout << "[Master] Algorithme d'assignation" << endl; - static_cast( instance )->setAssignmentAlgorithm( &algo ); - cout << "[Master] Lancement." << endl; - static_cast( instance )->run( job ); - - for (int i = 0; i < v.size(); ++i ) - { - cout << v[i] << endl; - } - } else if ( dynamic_cast( instance ) != 0 ) - { - cout << "[Worker] Lancement." << endl; - static_cast( instance )->run( job ); - } else - { - cout << "Nothing to be done;" << endl; - } - */ return 0; }