Removing useless comments in parallelApply.
This commit is contained in:
parent
92bd4eec1b
commit
3c8e902155
1 changed files with 0 additions and 23 deletions
|
|
@ -44,29 +44,6 @@ int main(int argc, char** argv)
|
||||||
}
|
}
|
||||||
cout << endl;
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue