Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 555 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 555 Bytes
  • 8 Queens Puzzle in C#

Write a program that uses the genetic algorithm to solve 8 queens problem.

Implement:

8-digit, integer-value genome,

the fitness function of the form:

*f(configuration) = 28􀀀number_of_attacks(configuration);

-the genetic operators

} roulette wheel selection,

} two-site crossover,

} mutation

Experiment with the size of population and the probability of mutation (roughly speaking that probability should be low).

In order to have working application genomes amount should be even number.

/More explenation on pdf