Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 643 Bytes

File metadata and controls

30 lines (18 loc) · 643 Bytes

Magic Square: AI approach

Multiple AI algorithms which solve Magic Square.

What algorithms can I find here?

Greedy Search

Simulated Annealing

Local Beam Search

Genetic Algorithm

How to run these algorithms?

To run test script simply type the following command from the root directory in a terminal:

  python -m source.test.test

If you want to see statistics for the methods, simply type the following command(s) from the root directory in a terminal:

  python -m source.test.test_stats
  python -m source.test.test_statsplot

Have fun!