Created by Scott Robert Ladd at Coyote Gulch Productions.
An abstract interface defining a listener. More...
#include <listener.h>
Evocosm reports its activities through a listener object derived from this abstract class. Some events state that a given event has occurred (e.g., the beginning of a new generation), while others provide text for display.
virtual void libevocosm::listener< OrganismType >::ping_fitness_test_begin | ( | const OrganismType & | a_organism_number | ) | [pure virtual] |
Ping that fitness testing of an organism begins.
a_organism_number | One-based number of the organism |
Implemented in libevocosm::null_listener< OrganismType >, and libevocosm::null_listener< function_solution >.
virtual void libevocosm::listener< OrganismType >::ping_fitness_test_end | ( | const OrganismType & | a_organism_number | ) | [pure virtual] |
Ping that processing a generation has ended.
a_organism_number | One-based number of the organism |
Implemented in libevocosm::null_listener< OrganismType >, and libevocosm::null_listener< function_solution >.
virtual void libevocosm::listener< OrganismType >::ping_generation_begin | ( | const std::vector< OrganismType > & | a_population, |
size_t | a_iteration | ||
) | [pure virtual] |
Ping that processing a generation begins.
a_population | Population before this generation's evolution |
a_iteration | One-based number of the generation begun |
Implemented in libevocosm::null_listener< OrganismType >, and libevocosm::null_listener< function_solution >.
virtual void libevocosm::listener< OrganismType >::ping_generation_end | ( | const std::vector< OrganismType > & | a_population, |
size_t | a_iteration | ||
) | [pure virtual] |
Ping that processing a generation has ended.
a_population | Population for which processing has ended |
a_iteration | One-based number of the generation ended |
Implemented in libevocosm::null_listener< OrganismType >, and libevocosm::null_listener< function_solution >.
virtual void libevocosm::listener< OrganismType >::report | ( | const std::string & | a_text | ) | [pure virtual] |
This event provide status text specific to a given type of evocosm. The base evocosm
class does not call this function. The intention is that this function will be called from classes derived from evocosm
to report progress, statistics, or other useful information.
a_text | Application-specific text |
Implemented in libevocosm::null_listener< OrganismType >, and libevocosm::null_listener< function_solution >.
virtual void libevocosm::listener< OrganismType >::report_error | ( | const std::string & | a_text | ) | [pure virtual] |
This event provides error text specific to a given type of evocosm. The base evocosm
class does not call this function. The intention is that this function will be called from classes derived from evocosm
to report problems.
a_text | Application-specific error text |
Implemented in libevocosm::null_listener< OrganismType >, and libevocosm::null_listener< function_solution >.
virtual void libevocosm::listener< OrganismType >::run_complete | ( | const std::vector< OrganismType > & | a_population | ) | [pure virtual] |
Invoked when an evocosm finishes all processing. This way God can rest on the seventh day.
Implemented in libevocosm::null_listener< OrganismType >, and libevocosm::null_listener< function_solution >.
© 1996-2005 Scott Robert Ladd. All rights reserved.
HTML documentation generated by Dimitri van Heesch's excellent Doxygen tool.