dded the className method for eoMon, eoBin and eoQuad classes

This commit is contained in:
evomarc 2000-11-17 17:06:53 +00:00
commit 683bc2e44f

View file

@ -85,6 +85,7 @@ public:
/// Ctor
eoMonOp()
: eoOp<EOType>( eoOp<EOType>::unary ) {};
virtual string className() const {return "eoMonOp";};
};
@ -98,6 +99,7 @@ public:
/// Ctor
eoBinOp()
:eoOp<EOType>( eoOp<EOType>::binary ) {};
virtual string className() const {return "eoBinOp";};
};
/** Quadratic genetic operator: subclasses eoOp, and defines basically the
@ -110,6 +112,7 @@ public:
/// Ctor
eoQuadraticOp()
:eoOp<EOType>( eoOp<EOType>::quadratic ) {};
virtual string className() const {return "eoQuadOp";};
};