EvolvingObjects
|
Definition of an object that allows an external struct to be inserted in EO. More...
#include <eoExternalEO.h>
Public Member Functions | |
eoExternalEO (const External &ext) | |
Init externalEo with the struct itself and set fitness to zero. | |
eoExternalEO (std::istream &is, const External &ext) | |
virtual void | readFrom (std::istream &_is) |
Read object, the external struct needs to have an operator>> defined. | |
virtual void | printOn (std::ostream &_os) const |
Write object. |
Definition of an object that allows an external struct to be inserted in EO.
This struct or class can be of any form, the only thing this class does is attach a fitness value to it and makes it the appropriate type (derives it from EO).
Definition at line 40 of file eoExternalEO.h.
virtual void eoExternalEO< Fit, External >::printOn | ( | std::ostream & | _os | ) | const [inline, virtual] |
Write object.
Called printOn since it prints the object _on_ a stream.
_os | A std::ostream. |
Reimplemented from EO< Fit >.
Definition at line 70 of file eoExternalEO.h.