GRALESHELL

graleshellmpigeneticalgorithm.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 GRALESHELLMPIGENETICALGORITHM_H
00027 
00028 #define GRALESHELLMPIGENETICALGORITHM_H
00029 
00030 #include <mogal/mpigeneticalgorithm.h>
00031 #include <list>
00032 
00033 namespace shellp
00034 {
00035         class IOSystem;
00036 }
00037 
00038 class GraleShellMPIGeneticAlgorithm : public mogal::MPIGeneticAlgorithm
00039 {
00040 public:
00041         GraleShellMPIGeneticAlgorithm();
00042         GraleShellMPIGeneticAlgorithm(const std::string &prefix);
00043         ~GraleShellMPIGeneticAlgorithm();
00044 private:
00045         void feedbackStatus(const std::string &str) const;
00046         void onCurrentBest(const std::list<mogal::Genome *> &bestgenomes) const;
00047         bool onAlgorithmLoop(mogal::GAFactory &factory, bool generationInfoChanged);
00048         
00049         bool saveintermediate;
00050         
00051         std::string prefix;
00052         mutable int count;
00053 
00054         mutable shellp::IOSystem *iosys;
00055 };
00056 
00057 #endif // GRALESHELLGENETICALGORITHM_H