You are viewing a single comment's thread from:

RE: Evolutionary Computation as a Form of Organization

in #crypto-news8 years ago

Let me offer you a simple example of evolutionary computation.

This particular one is called Ant colony optimization.
Imagine having 10x10 field. On 10 of those fields imagine "food" or dots for "ants" to collect. You have 10 "ants". Ants know nothing about whats food or whats a map. They know only left and forward (3 lefts is a right).

And then you "let" those ants to walk freely across the map. In total randomness. After a while, you "collect" ants and pick the best ones, the ones that managed to collect more food by random actions. They become "parents" of the new generation of ants which will be very similar to parents and changed only slighty according to the mutation or crossover techniques used.
The process is repeated until you have a generation of ants that picks the food in an optimal way.

You did not program your ants to do anything but to move randomly and yet they learn how to pick up the food through evolution.