erasing comments
This commit is contained in:
parent
8ee0ae0e3a
commit
c22047df11
1 changed files with 0 additions and 2 deletions
|
|
@ -152,7 +152,6 @@ class eoChromMutation: public eoMonOp<Chrom>
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
{
|
{
|
||||||
cout << "mutation" << endl;
|
|
||||||
// gene change
|
// gene change
|
||||||
uniform_generator<int> color(0, num_colors);
|
uniform_generator<int> color(0, num_colors);
|
||||||
chrom[position()] = color();
|
chrom[position()] = color();
|
||||||
|
|
@ -160,7 +159,6 @@ class eoChromMutation: public eoMonOp<Chrom>
|
||||||
}
|
}
|
||||||
case 1:
|
case 1:
|
||||||
{
|
{
|
||||||
cout << "transposition" << endl;
|
|
||||||
// transposition
|
// transposition
|
||||||
swap(chrom[position()], chrom[position()]);
|
swap(chrom[position()], chrom[position()]);
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Reference in a new issue