00001 #ifndef CTESTOBJECTIVE_H 00002 #define CTESTOBJECTIVE_H 00003 00004 #include "GeneralObjective.h" 00005 00006 namespace gplib 00007 { 00008 /** \addtogroup gainv Genetic algorithm optimization */ 00009 /* @{ */ 00010 class TestObjective: public GeneralObjective 00011 { 00012 public: 00013 virtual TestObjective *clone() const 00014 { 00015 return new TestObjective(*this); 00016 } 00017 virtual double PostParallel(const ttranscribed &member); 00018 TestObjective(); 00019 00020 virtual ~TestObjective(); 00021 }; 00022 /* @} */ 00023 } 00024 #endif // CTESTOBJECTIVE_H
1.5.8