Removing useless comments in parallelApply.

This commit is contained in:
Benjamin Bouvier 2012-06-21 17:23:25 +02:00
commit 3c8e902155

View file

@ -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<MasterNode*>( instance ) != 0 )
{
cout << "[Master] Algorithme d'assignation" << endl;
static_cast<MasterNode*>( instance )->setAssignmentAlgorithm( &algo );
cout << "[Master] Lancement." << endl;
static_cast<MasterNode*>( instance )->run( job );
for (int i = 0; i < v.size(); ++i )
{
cout << v[i] << endl;
}
} else if ( dynamic_cast<WorkerNode*>( instance ) != 0 )
{
cout << "[Worker] Lancement." << endl;
static_cast<WorkerNode*>( instance )->run( job );
} else
{
cout << "Nothing to be done;" << endl;
}
*/
return 0;
}