fr.lifl.jedi.controllersCore
Interface AgentOrderingPolicy

All Known Implementing Classes:
RandomAgentOrderingPolicy

public interface AgentOrderingPolicy

The interface is the parent interface for all policies used to order an agent set.

Such policies are used by the simulation core in order to sort the list of agents at the beginning of every time step.

Version:
JEDI V 2.2
Created the 10th nov. 2008
Modified the 5th may 2009
Author:
Yoann Kubera
SMAC Team (Systèmes Multi-Agents et Comportement)
LIFL (Laboratoire d'Informatique Fondamentale de Lille)
University of Lille, France

Method Summary
 void reorder(java.util.List<Agent> list)
          Reorders the list of agents according to the policy.
 

Method Detail

reorder

void reorder(java.util.List<Agent> list)
Reorders the list of agents according to the policy.

Parameters:
list - the list of agents to reorder.