openModeller  Version 1.4.0
garp_best_subsets.hh
Go to the documentation of this file.
00001 
00030 #ifndef _GARP_BEST_SUBSETS_HH_
00031 #define _GARP_BEST_SUBSETS_HH_
00032 
00033 #include <openmodeller/om.hh>
00034 
00035 #include "garp.hh"
00036 #include "best_subsets.hh"
00037 
00038 
00039 /****************************************************************/
00040 /************************* GARP Algorithm ***********************/
00041 
00053 class GarpBestSubsets : public BestSubsets
00054 {
00055 public:
00056   GarpBestSubsets();
00057   virtual ~GarpBestSubsets();
00058 
00059 private:
00060   // AlgorithmRun object factory
00061   AlgorithmImpl * getBSAlgorithm();
00062   int transferParametersToAlgorithm();
00063 
00064   //
00065   // GARP parameters
00066   //
00067 
00069   int _max_gen;
00070 
00072   int _popsize;
00073 
00075   int _resamples;
00076 
00078   double _conv_limit;
00079 };
00080 
00081 
00082 #endif
00083