Evo-EA

 view release on metacpan or  search on metacpan

lib/Evo/EA/Agent.pm  view on Meta::CPAN

sub new {
	my ($class) = @_;

	my $self = {};

	$class = ref($class) || $class;

	bless $self, $class;
}

sub update_with_agent {
	my ($self, $agent) = @_;

	$agent->update_once($self);
}

sub update_once {
	my ($self, $agent) = @_;

	$agent->interprete;
}

### do agent's main logic
sub interprete {
	my ($self) = @_;

}



( run in 0.319 second using v1.01-cache-2.11-cpan-4d4bc49f3ae )