A team of computer scientists and top-level checkers players have "solved" the game of checkers. Using various heuristics, and on an average of 50 computers a day, the team went through 500,000,000,000,000,000,000 different checkers positions, and has now developed a computer which plays "perfect" checkers. It can not lose. If you play perfectly as well, you can play to a draw. The project is called Chinook, and it has been an ongoing project since 1989.
I doubt the code is all that complex. My guess is once they work out every position there really doesn't need to be any heuristics, all they need is a shortest path algorithm from the current position to mate.
I doubt the code is all that complex. My guess is once they work out every position there really doesn't need to be any heuristics, all they need is a shortest path algorithm from the current position to mate.
This doesn't work because the program has to change its approach as the player does. If you just have shortest-path then it'd be easy to draw against.
This doesn't work because the program has to change its approach as the player does. If you just have shortest-path then it'd be easy to draw against.
That seems to be a very minor complication. You just need to recalculate the shortest path to mate every move your opponent makes, and then play the new shortest path. If your opponent plays perfectly as well, the shortest path should not change. If not, mate should be even simpler. Essentially the idea is still the same. There aren't any heuristic algorithms involved. Unless I'm missing something, here.
Last edited by Demosthenes; 2007-07-21 at 04:53 PM.
No,no, there is simply a table of all the possible positions which holds the best move to make. There is no continuity. If the best move is already pre-computed, the only requirement is lots of storage.
That's pretty absurd, who would actually go about solving a game like checkers, but in theory I suppose they can apply it to about anything.. pretty interesting somehow, I wish they could show the best moves for each position, somewhat similar to how to solve the Rubix cube ..
Quote:
!King_Amazon!: I talked to him while he was getting raped
[quote][16:04] jamer123: GRRR firefox just like quit on me now on internet exploder[quote]
...
[quote=!King_Amazon!]notices he's 3 inches shorter than her son and he's circumcised [quote]
No,no, there is simply a table of all the possible positions which holds the best move to make. There is no continuity. If the best move is already pre-computed, the only requirement is lots of storage.
I believe how current endgame databases work is that they store every possible position by the pieces currently on the board. They then calculate the shortest possible path from the current position to mate move by move, because the best move may change in the situation that your opponent doesn't play perfect chess. I don't believe that they have the best move stored for every position, though. I assume that if Chess could be "solved" they would simply extend this principle to all the pieces on the board instead of limiting it to 6 like it is now.