Skip to content

0mar/antennae

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

antennae

Python implementation of pheromone-based routing of ants.

Requirements

This module is written in Python 3. External dependencies are

  • NumPy
  • NetworkX (2.0 or later)
  • Matplotlib (optional)

Running

Clone the repository with

git clone https://github.com/0mar/antennae.git
cd antennae
python3 simulation.py

If you want to change the number of ants, the number of nodes, pheromone decay rate or other parameters, edit params.py.

What am I looking at?

Ants have limited individual capacities but work very well together in colonies. In spite of their limited sensory and deductive capabilities, they are able to find and communicate a food source and an optimal path towards that source based on pheromone signals.

Basically, as soon as an ant finds a source of food, he returns to the nest and marks his path with a chemical that the other ants can interpret as a guide towards the food. When more ants go looking for this food, they try to follow the pheromone and if they are succesful, they return as well, leaving a trail of their own.

Meanwhile, the pheromone trails slowly decay. This results in the shorter paths being more popular than the longer ones, and over time the colony discovers the optimal route towards the food.

What is happening?

The program generates a random graph with a certain number of edges. Within this graph, it picks a nest node and a food node. Subsequently, all ants are released from the nest node and move randomly throughout the graph, looking for the food node. At each node, an ant chooses a random direction based on the amount of pheromone present on each of the edges. Initially, all edges carry the same amount of pheromone. But when an ant reaches the food node, they backtrace their path towards the nest node, leaving a trail of pheromone along the edges they pass. When the ants return to the nest node, they dump the food, forget about their trip, and try to find the food node again, guided by the pheromone trails.

The visualisation shows the ant as circles (orange if they carry food, brown if they don't) traversing the network. The nest node is shown in red, the food node in yellow. The thickness of the lines represents the pheromone on those edges. Over time, the shortest path should be showing the thickest lines and the most ants traversing it.

Who thought of this?

Not me. There is a lot of research done in this area, check for instance here, or here, or here. But my research is slightly related, and I like experimenting with these types of models. Also, my buddy Lloyd wrote a nice essay about swarm intelligence which inspired this little project.

Releases

No releases published

Packages

 
 
 

Languages