diff --git a/smp/src/abstractIsland.h b/smp/src/abstractIsland.h index 00317a485..9ecbf7216 100644 --- a/smp/src/abstractIsland.h +++ b/smp/src/abstractIsland.h @@ -51,7 +51,7 @@ The abstract island is used to manipulate island pointers wihout the knowledge o @see smp::Island */ -template +template class AIsland { public: @@ -61,9 +61,7 @@ public: /** * Check if there is population to receive */ - virtual void setModel(IslandModel* _model) = 0; - - + virtual void setModel(IslandModel* _model) = 0; /** * Check if there is population to receive or to emigrate @@ -73,7 +71,7 @@ public: /** * Update the island by adding population to send in the imigrants list. */ - virtual void update(eoPop _data) = 0; + virtual void update(eoPop _data) = 0; /** * Check if the algorithm is stopped. diff --git a/smp/src/island.cpp b/smp/src/island.cpp index 889ade6eb..6bd865ee4 100644 --- a/smp/src/island.cpp +++ b/smp/src/island.cpp @@ -29,7 +29,7 @@ Contact: paradiseo-help@lists.gforge.inria.fr template