GRALESHELL

graleshellgeneticalgorithm.h

00001 /*
00002 
00003   This file is a part of GRALESHELL, a program to facilitate the simulation
00004   and inversion of gravitational lenses, based on the GRALE library.
00005 
00006   Copyright (C) 2008-2012 Jori Liesenborgs
00007 
00008   Contact: jori.liesenborgs@gmail.com
00009   
00010   This program is free software; you can redistribute it and/or modify
00011   it under the terms of the GNU General Public License as published by
00012   the Free Software Foundation; either version 2 of the License, or
00013   (at your option) any later version.
00014   
00015   This program is distributed in the hope that it will be useful,
00016   but WITHOUT ANY WARRANTY; without even the implied warranty of
00017   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018   GNU General Public License for more details.
00019   
00020   You should have received a copy of the GNU General Public License
00021   along with this program; if not, write to the Free Software
00022   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00023   
00024 */
00025 
00026 #ifndef GRALESHELLGENETICALGORITHM_H
00027 
00028 #define GRALESHELLGENETICALGORITHM_H
00029 
00030 #include <mogal/geneticalgorithm.h>
00031 #include <list>
00032 
00033 namespace shellp
00034 {
00035         class IOSystem;
00036 }
00037 
00038 class GraleShellGeneticAlgorithm : public mogal::GeneticAlgorithm
00039 {
00040 public:
00041         GraleShellGeneticAlgorithm();
00042         GraleShellGeneticAlgorithm(const std::string &prefix);
00043         ~GraleShellGeneticAlgorithm();
00044 private:
00045         void feedbackStatus(const std::string &str) const;
00046         void onCurrentBest(const std::list<mogal::Genome *> &bestgenomes) const;
00047         bool stopRemoteAlgorithm();
00048         bool onAlgorithmLoop(mogal::GAFactory &factory, bool generationInfoChanged);
00049         
00050         bool saveintermediate;
00051         
00052         std::string prefix;
00053         mutable int count;
00054 
00055         mutable shellp::IOSystem *iosys;
00056 };
00057 
00058 #endif // GRALESHELLGENETICALGORITHM_H