From 0f4c497ea39955b5e9b7763d15dd331a9bdf83a3 Mon Sep 17 00:00:00 2001 From: boufaras Date: Thu, 12 Jan 2012 10:13:04 +0000 Subject: [PATCH] renaming the classes and update the src git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2631 331e1502-861f-0410-8da2-ba01fb791d7f --- .../types/{PPPSolution.h => moGPUPPPSolution.h} | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) rename branches/ParadisEO-GPU/paradiseo-gpu/src/problems/types/{PPPSolution.h => moGPUPPPSolution.h} (91%) diff --git a/branches/ParadisEO-GPU/paradiseo-gpu/src/problems/types/PPPSolution.h b/branches/ParadisEO-GPU/paradiseo-gpu/src/problems/types/moGPUPPPSolution.h similarity index 91% rename from branches/ParadisEO-GPU/paradiseo-gpu/src/problems/types/PPPSolution.h rename to branches/ParadisEO-GPU/paradiseo-gpu/src/problems/types/moGPUPPPSolution.h index f04995c51..2920c280c 100644 --- a/branches/ParadisEO-GPU/paradiseo-gpu/src/problems/types/PPPSolution.h +++ b/branches/ParadisEO-GPU/paradiseo-gpu/src/problems/types/moGPUPPPSolution.h @@ -1,5 +1,5 @@ /* - + Copyright (C) DOLPHIN Project-Team, INRIA Lille - Nord Europe, 2006-2010 Karima Boufaras, Thé Van LUONG @@ -32,8 +32,8 @@ Contact: paradiseo-help@lists.gforge.inria.fr */ -#ifndef __PPPSolution_H_ -#define __PPPSolution_H_ +#ifndef __moGPUPPPSolution_H_ +#define __moGPUPPPSolution_H_ #include @@ -43,7 +43,7 @@ template -class PPPSolution: public moGPUVector { +class moGPUPPPSolution: public moGPUVector { public: @@ -54,7 +54,7 @@ public: * Default constructor. */ - PPPSolution() : + moGPUPPPSolution() : moGPUVector () { } @@ -64,7 +64,7 @@ public: *@param _size The neighborhood size. */ - PPPSolution(unsigned _size) { + moGPUPPPSolution(unsigned _size) { N = _size; @@ -79,7 +79,7 @@ public: *@return a new vector. */ - PPPSolution& operator=(const PPPSolution & _vector) { + moGPUPPPSolution& operator=(const moGPUPPPSolution & _vector) { N = _vector.N; vect = new int[N];