diff --git a/branches/ParadisEO-GPU/tutorial/PPP_GPU/testSimpleTS_PPP.cu b/branches/ParadisEO-GPU/tutorial/PPP_GPU/testSimpleTS_PPP.cu index b3fc250ee..dd676f440 100644 --- a/branches/ParadisEO-GPU/tutorial/PPP_GPU/testSimpleTS_PPP.cu +++ b/branches/ParadisEO-GPU/tutorial/PPP_GPU/testSimpleTS_PPP.cu @@ -101,20 +101,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(); - // size tabu list - eoValueParam sizeTabuListParam(7, "sizeTabuList", "size of the tabu list", 'T'); - parser.processParam( sizeTabuListParam, "Search Parameters" ); - unsigned sizeTabuList = sizeTabuListParam.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"); @@ -204,8 +194,8 @@ int main(int argc, char **argv) * * ========================================================= */ - sizeTabuList=sizeMap; - duration=sizeTabuList/8; + unsigned sizeTabuList=sizeMap; + unsigned duration=sizeTabuList/8; // tabu list moIndexedVectorTabuList tl(sizeTabuList,duration);