Prefix guards with SMP_ to avoid conflicts

This commit is contained in:
quemy 2012-12-09 20:48:49 +01:00
commit ea2b71e7de
19 changed files with 38 additions and 38 deletions

View file

@ -27,8 +27,8 @@ ParadisEO WebSite : http://paradiseo.gforge.inria.fr
Contact: paradiseo-help@lists.gforge.inria.fr
*/
#ifndef HOMOGENEOUS_ISLAND_MODEL_H_
#define HOMOGENEOUS_ISLAND_MODEL_H_
#ifndef SMP_HOMOGENEOUS_ISLAND_MODEL_H_
#define SMP_HOMOGENEOUS_ISLAND_MODEL_H_
#include <queue>
#include <algorithm>
@ -54,6 +54,8 @@ public:
HomogeneousIslandModel(unsigned _islandNumber, AbstractTopology& _topo, unsigned _popSize, eoInit<EOT> &_chromInit, IslandInit... args);
~HomogeneousIslandModel();
void operator()();
std::vector<eoPop<EOT>>& getPop();