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) = @_;

}

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.216 second using v1.00-cache-2.02-grep-82fe00e-cpan-4673cadbf75 )