+ 7
How To Code Chess?
Chess Has Over 1 Million Possible Moves After The 3 moves, How does one even start to program it?
5 Réponses
+ 11
Using game trees for the AI.
https://chessprogramming.wikispaces.com/Search+Tree
+ 9
Not really that complicated, you just need to learn a bit about graph theory.
+ 8
Yea, Must be a really complicated set of algorithms
+ 6
1 million possible moves, but very simple rules to move 😀
+ 2
It depends on whether you want an AI for chess and how good you want that AI. The easiest thing to do for AI would be to just randomly choose a move, but it won't play very well.