From f600f0486592c0e1324c6801481b8e691a581bcc Mon Sep 17 00:00:00 2001 From: boufaras Date: Thu, 29 Sep 2011 15:32:02 +0000 Subject: [PATCH] updated git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2467 331e1502-861f-0410-8da2-ba01fb791d7f --- branches/ParadisEO-GPU/tutorial/QAP_GPU/testSimpleTS.cu | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/branches/ParadisEO-GPU/tutorial/QAP_GPU/testSimpleTS.cu b/branches/ParadisEO-GPU/tutorial/QAP_GPU/testSimpleTS.cu index b9c0e9ede..016122c61 100644 --- a/branches/ParadisEO-GPU/tutorial/QAP_GPU/testSimpleTS.cu +++ b/branches/ParadisEO-GPU/tutorial/QAP_GPU/testSimpleTS.cu @@ -104,15 +104,10 @@ int main(int argc, char **argv) unsigned seed = seedParam.value(); // Iteration number - eoValueParam nbIterationParam(1, "nbIteration", "TS Iteration number", 'I'); + eoValueParam nbIterationParam(100, "nbIteration", "TS Iteration number", 'I'); parser.processParam( nbIterationParam, "TS Iteration number" ); unsigned nbIteration = nbIterationParam.value(); - // duration tabu list - eoValueParam durationParam(7, "duration", "duration of the tabu list", 'D'); - parser.processParam( durationParam, "Search Parameters" ); - unsigned duration = durationParam.value(); - // the name of the "status" file where all actual parameter values will be saved string str_status = parser.ProgramName() + ".status"; // default value eoValueParam statusParam(str_status.c_str(), "status", "Status file");