I've read (for example, http://radagast.se/othello/Help/order.html) that searching on the best moves at each level first (which can be found using iterative deepening) makes the search go much faster.

How would one go about searching on the best moves possible without using too much additional memory and cpu time?

link|improve this question

75% accept rate
feedback

1 Answer

If you know, a priori, how to search on the best moves, you wouldn't need to do the search in the first place. What you can do often requires some expertise in the game you are trying to solve. For instance, in checkers, you might try evaluating all moves that result in a king before moves that don't.

link|improve this answer
Ok, well how would you exactly go about "evaluating all moves that result in a king before moves that don't". – Felix Jan 18 at 18:12
Well, the full development of the idea I've described is called a board evaluation function, meaning, there is some function (in the mathematical sense as well as the computer sense) that takes a board position as input, and returns a number as the ouptut. Say, a high number for a suspected "good" move, like a king, and a low number for an expected bad move. You might think about evaluating to a depth of n, and using a priority queue or some such similar structure to choose the order of the next level of evaluation. – Novak Jan 18 at 19:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.