Encore du nettoyage

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1814 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jhumeau 2010-05-17 15:11:48 +00:00
commit 02e5cfb6c0
66 changed files with 987 additions and 1785 deletions

View file

@ -37,15 +37,15 @@ Contact: paradiseo-help@lists.gforge.inria.fr
void wait ( int seconds )
{
clock_t endwait;
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() < endwait) {}
clock_t endwait;
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() < endwait) {}
}
int main(){
int main() {
std::cout << "[t-moTimeContinuator] => START" << std::endl;
std::cout << "[t-moTimeContinuator] => START" << std::endl;
moTimeContinuator<moDummyNeighborTest> test(2, false);
moTimeContinuator<moDummyNeighborTest> test2(3);
@ -64,8 +64,8 @@ int main(){
assert(test.className()=="moTimeContinuator");
std::cout << "[t-moTimeContinuator] => OK" << std::endl;
std::cout << "[t-moTimeContinuator] => OK" << std::endl;
return EXIT_SUCCESS;
return EXIT_SUCCESS;
}