#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <map>
#include <algorithm>
#include "Util.h"
#include "Chromosome.h"
#include "Problem.h"
Include dependency graph for Population.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
namespace | gal |
Classes | |
class | gal::Population< T > |
Population is the center of an optimisation run: it contains all Chromosome members, the Problem at hand, and evolves the population through many generations. More... | |
Defines | |
#define | DOUBLE_MAX 1.7E+308 |
#define | PRINTINTERP 1 |
#define | PRINTBITSTRING 2 |
#define | PRINTVALUE 4 |
#define | PRINTOBJECTIVE 8 |
#define | PRINTFITNESS 16 |
#define | PRINTALL 1 |
#define | PRINTBEST 2 |
#define | PRINTWORST 4 |
#define | PRINTAVG 8 |
#define | ONLYIFBETTER 16 |