X-Git-Url: https://git.dlugolecki.net.pl/?p=genetic.git;a=blobdiff_plain;f=include%2Fgeneration.h;h=5dab37c2d5ae070fe210e20e4a8d0896e45339a2;hp=f460a7fbe62cc408a6034b8ad42bf84420d9f78d;hb=1e175fb658e55f4cc8b894fff288be22998e78af;hpb=0c268e96035b65112e449c1c0df49f2be3eb184f diff --git a/include/generation.h b/include/generation.h index f460a7f..5dab37c 100644 --- a/include/generation.h +++ b/include/generation.h @@ -3,10 +3,8 @@ #include -#include -#include - -using namespace std; +#include "gene.h" +#include "chromosome.h" namespace genetic { /** @@ -18,7 +16,7 @@ namespace genetic { /** * Chromosomes in the given Generation */ - vector<_Chromosome> chromosomes; + std::vector<_Chromosome> chromosomes; template friend class Generation; public: