From 623a48b310ede30d98e1f12de5fb099c9d49bdb0 Mon Sep 17 00:00:00 2001 From: boufaras Date: Wed, 14 Sep 2011 15:46:45 +0000 Subject: [PATCH] update doc for doxygen git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2396 331e1502-861f-0410-8da2-ba01fb791d7f --- .../ParadisEO-GPU/src/problems/eval/QAPIncrEval.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/branches/ParadisEO-GPU/src/problems/eval/QAPIncrEval.h b/branches/ParadisEO-GPU/src/problems/eval/QAPIncrEval.h index 48637a668..71a316e32 100644 --- a/branches/ParadisEO-GPU/src/problems/eval/QAPIncrEval.h +++ b/branches/ParadisEO-GPU/src/problems/eval/QAPIncrEval.h @@ -76,7 +76,7 @@ inline __host__ __device__ Fitness operator() (T * _sol,Fitness _fitness, unsign Fitness tmp=_fitness; T tmp_sol[1]; - /** + /* * dev_a & dev_b are global device variable, data specific to QAP problem (flow & distance matices) * _index[i] the first position of swap * _index[i+1] the second position of swap @@ -93,12 +93,11 @@ inline __host__ __device__ Fitness operator() (T * _sol,Fitness _fitness, unsign /** * compute the new fitness of the solution after permutation of pair(i,j)(function inline called from host device) - * @param _a the flow matrix of size*size (specific data of QAP problem must be declared as global device variable) - * @param _b the distance matrix of size*size (specific data of QAP problem must be declared as global device variable) + * @param a the flow matrix of size*size (specific data of QAP problem must be declared as global device variable) + * @param b the distance matrix of size*size (specific data of QAP problem must be declared as global device variable) * @param _sol the solution to evaluate - * @param _i the first position of swap - * @param _j the second position of swap - * @param _id the neighbor identifier + * @param i the first position of swap + * @param j the second position of swap */ inline __host__ __device__ int compute_delta(int * a,int * b,T * _sol, int i, int j) {