Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AI Minesweeper project

I need to implement Minesweeper solver. I have started to implement rule based agent. I have implemented certain rules. I have a heuristic function for choosing best matching rule for current cell (with info about surrounding cells) being treated. So for each chosen cell it can decide for 8 surroundings cells to open them, to mark them or to do nothing. I mean. at the moment, the agent gets as an input some revealed cell and decides what to do with surrounding cells (at the moment, the agent do not know, how to decide which cell to treat).

My question is, what algorithm to implement for deciding which cell to treat?

Suppose, for, the first move, the agent will reveal a corner cell (or some other, according to some rule for the first move). What to do after that?

I understand that I need to implement some kind of search. I know many search algorithms (BFS, DFS, A-STAR and others), that is not the problem, I just do not understand how can I use here these searches.

I need to implement it in a principles of Artificial Intelligence: A modern approach.

like image 424
Nikita Avatar asked Jul 06 '12 20:07

Nikita


People also ask

Can you win Minesweeper?

Note that it is possible to win always but it will take some time. Minesweeper is a very popular single player strategy game. In this article, we're going to look at the all the rules of this game and few strategies to win against it.


1 Answers

BFS, DFS, and A* are probably not appropriate here. Those algorithms are good if you are trying to plan out a course of action when you have complete knowledge of the world. In Minesweeper, you don't have such knowledge.

Instead, I would suggest trying to use some of the logical inference techniques from Section III of the book, particularly using SAT or the techniques from Chapter 10. This will let you draw conclusions about where the mines are using facts like "one of the following eight squares is a mine, and exactly two of the following eight squares is a mine." Doing this at each step will help you identify where the mines are, or realize that you must guess before continuing.

Hope this helps!

like image 80
templatetypedef Avatar answered Nov 11 '22 09:11

templatetypedef