adding const... leaving as is
This commit is contained in:
parent
28219fcc12
commit
c7eccdbe13
2 changed files with 2 additions and 3 deletions
|
|
@ -55,7 +55,7 @@ template<class Chrom> class eoInclusion: public eoMerge<Chrom>
|
|||
/** Inherited from eoObject. Returns the class name.
|
||||
@see eoObject
|
||||
*/
|
||||
virtual string className() const {return "eoMerge";};
|
||||
virtual string className() const {return "eoInclusion";};
|
||||
//@}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -92,8 +92,7 @@ class eoBinPopOp: public eoObject{
|
|||
@param _parents the initial generation. Will be kept constant
|
||||
@param _siblings the created offspring. Will be usually an empty population
|
||||
*/
|
||||
virtual void operator () (const eoPop<EOT>& _parents,
|
||||
eoPop<EOT>& _siblings ) = 0;
|
||||
virtual void operator () (eoPop<EOT>& _parents, eoPop<EOT>& _siblings ) = 0;
|
||||
|
||||
/** @name Methods from eoObject */
|
||||
//@{
|
||||
|
|
|
|||
Reference in a new issue