Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in AI and Deep Learning by (50.2k points)

I'm looking to try and write a chess AI. Is there something I can use on the .NET framework (or maybe even a chess program scripted in Lua) that will let me write and test a chess AI without worrying about actually making a chess game?

1 Answer

0 votes
by (108k points)

Here are some basic concepts that will help us create a simple chess AI in .NET :

  • move-generation

  • board evaluation

  • minimax

  • alpha-beta pruning.

At each step, we will improve our AI algorithm with one of these time-tested chess-programming techniques. it will demonstrate how each affects the algorithm’s playing style.

You can view the final AI algorithm here on GitHub.

For the complete knowledge of the above-mentioned concepts, you can refer the following link:https://www.codeproject.com/Articles/36112/Chess-Program-in-C

Browse Categories

...