X-Git-Url: https://git.dlugolecki.net.pl/?p=genetic.git;a=blobdiff_plain;f=src%2Fgenerator%2FbitGenerator.h;fp=src%2Fgenerator%2Fbit.h;h=8e92521a608e7c553f1689600dd0d622f1828232;hp=7bd50073a412fbee8c6b145e96f271301b727a64;hb=c9db29f895be287471f280bbed6cfb5271de3803;hpb=163f79b65bceabd30470a7e317dd7f18a8df5e95 diff --git a/src/generator/bit.h b/src/generator/bitGenerator.h similarity index 92% rename from src/generator/bit.h rename to src/generator/bitGenerator.h index 7bd5007..8e92521 100644 --- a/src/generator/bit.h +++ b/src/generator/bitGenerator.h @@ -18,7 +18,7 @@ namespace genetic { * Generator for generating entire Generation of Chromosomes (individuals) */ template < typename _Chromosome > - class Bit : public Generator<_Chromosome> { + class BitGenerator : public Generator<_Chromosome> { public: /** * Type representing Chromosome Gene @@ -52,7 +52,7 @@ namespace genetic { * @param generationSize Indicates size of the generation * @param chromosomeSize Indicates size of the chromosome */ - Bit(unsigned int generationSize, unsigned int chromosomeSize) + BitGenerator(unsigned int generationSize, unsigned int chromosomeSize) : Generator<_Chromosome>(generationSize, chromosomeSize) { } };