00001 #ifndef OPTFRAME_INITIALPOPULATION_H_ 00002 #define OPTFRAME_INITIALPOPULATION_H_ 00003 00004 #include "Population.hpp" 00005 00006 using namespace std; 00007 00008 template<class R> 00009 class InitialPopulation 00010 { 00011 public: 00012 virtual Population<R>& generatePopulation(unsigned populationSize) = 0; 00013 }; 00014 00015 #endif /*OPTFRAME_INITIALPOPULATION_H_*/
1.7.1