changed erronuous classname() to className()
This commit is contained in:
parent
a2457cf126
commit
5467df160c
2 changed files with 2 additions and 2 deletions
|
|
@ -101,7 +101,7 @@ template<class Chrom> class eoBreeder: public eoMonPopOp<Chrom>
|
||||||
};
|
};
|
||||||
|
|
||||||
/// The class name.
|
/// The class name.
|
||||||
string classname() const { return "eoBreeder"; }
|
string className() const { return "eoBreeder"; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
eoOpSelector<Chrom>& opSel;
|
eoOpSelector<Chrom>& opSel;
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ class eoGOpBreeder: public eoMonPopOp<EOT>
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The class name.
|
/// The class name.
|
||||||
string classname() const { return "eoGOpBreeder"; }
|
string className() const { return "eoGOpBreeder"; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
eoGOpSelector<EOT>& opSel;
|
eoGOpSelector<EOT>& opSel;
|
||||||
|
|
|
||||||
Reference in a new issue