runs:		 10			! Number of runs
evaluations:	 2000			! Number of solutions evaluated
population:	 100			! Population size
crossover rate:	 0.75			! Crossover rate	
blx_alpha:	 0.5			! Parameter for BLX-alpha crossover	
mutation rate:	 0.1			! mutation rate
elitism:	 1			! Elitism: (0:No; 1:Yes)
tournament size: 5			! Tourney size for tournament selection
crossover:       3			! Crossover operator (see list below)
mutation:        1			! Mutation operator (see list below)	
sigma:		 0.1			! Sigma mutation standard deviation
N:               15			! Number of particles in the cluster (see details below) 
direction:	 -1			! Optimization direction (-1: Minimization; 1: Maximization)
min:            -6.0			! Domain limits for the first 6 variables (Min, Max); 1-3 correspond to center-of-mass, while 4-6 are the Euler angles
max:		 6.0
min:	        -6.0
max:		 6.0
min:	        -6.0
max:		 6.0
min:	         0.0
max:		 6.2831853	
min: 		 0.0
max:		 3.14159265
min:	         0.0
max:		 6.2831853	

-------------------------------------------------
Crossover Operators:
0: Single point crossover
1: Double point Crossover
2: BLX-alpha crossover
3: SBX (Simulated Binary Crossover - proposed by Deb)

Mutation Operators:
0: Random mutation
1: Sigma mutation

Solution Vector:
It contains N*6 real variables, corresponding to N molecules.
The position of each molecule is specified by 6 values: the cartesian coordinates of the center of mass and the 3 Euler angles. The domains for each one of these variables are specified in the parameters.txt file.


