From 30ea38e59f79a32ed85bb43a6cdab3181fa3ae63 Mon Sep 17 00:00:00 2001 From: Mohamed Naji Aboo <42766301+NajiAboo@users.noreply.github.com> Date: Wed, 14 Jul 2021 08:11:13 +0530 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ca595c1..f7b8818 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# 8QueensProblem \ No newline at end of file +# 8QueensProblem +Used Evolutionary Algorithm to find the 8 queens problem. Population is initialized with a random unique number between 1 to 8. High quality parents are selected for crossover. +Here lower checks count is considered as high quality parent. We used Partially Mapped Crossover and Swap mutate. Once the children are created we add them with the parents and low quality parents are removed from the list. Same process is repeated unit we get a high quality ( number of checks zero ) or if its reaches 10k iterations