This readme file contains only basic information. Detailed explanation 
will be supplied soon in a new version of this file.

To compile the sources:
  make
To run the application:
  ./circlesii

The results of the simulation are stored in a table in file stat.dat.  
Each time you run it a new row is created in the table with the new results.

Files:
  random-agent.h   : Code for the agent, I recomend you change its name 
                     after you make it a not-random agent. The agents controls 
                     the player's actions in the simulation. 
  circle.h         : The circle class. Routines for moving and bouncing. 
  env.h            : The circles environment class. It merges virtual player 
                     and circles in a square field where they're in competition.
  simulation.h     : The simulation class. It's responsible of the interaction 
                     of both: agent and environment. It provides to the agent 
                     information about the state of the environment and waits 
                     for it to take an action, then  passes the action to the 
                     environment and waits for next state.
  params.h         : Parameters for environment sizes and for the simulation
  main.cpp         : Creates the environment, the agent and simulation objects.
                     Then runs the smulation and store results in stat.dat.
  stat.dat         : Contains simulation results
  makefile         : The makefile
  
