1 / 6

Relentless Logic

Minesweeper, circa 2000. Relentless Logic. Minesweeper of the future.

scansler
Télécharger la présentation

Relentless Logic

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Minesweeper, circa 2000 Relentless Logic Minesweeper of the future Minesweeper is a game of logic. It originated from “Relentless Logic,” which was written by Conway, Hong, and Smith around 1985. In Relentless Logic, the player is a soldier trying to crawl back to the Command Center, avoiding any mines. The player knows only the number of mines adjacent to his/her current position. The modern form of Minesweeper was developed by Robert Donner and was released with Windows in 1989. The player can click on any square to reveal it. If the square has a mine on it, the player loses. If it doesn’t have a mine, the square is replaced with a number indicating how many adjacent squares are mined. Using this information, the player must uncover all safe squares on the board.

  2. Our goals are to… Promote our courses on Constraint Processing (CP), and motivate the students for the study of CP. Minesweeper is perfect to this end because it allows us to visualize the operation of CP algorithms. Understand and demystify humans’ fascination with puzzles. Discourage graduate students from losing too much time playing by making a program to play games for them. Our approach is to… Model Minesweeper as a Constraint Satisfaction Problem & explore the application of constraint propagation techniques to interactively determine safe and mined squares. • Every square is a variable with two possible values: safe or mined. • Every safe square gives a “sum” constraint over its 8 neighbors. For example, a square labeled 3 yields a constraint stating the square be surrounded by 3 mines. Constraint C1: Scope = {A,B,C,D,E,I,J} Exactly 2 must have mines Constraint C2: Scope = {D,E,F,G,H,I,J} Exactly 3 must have mines

  3. We use the same rules as the Windows version of Minesweeper. The player left-clicks on squares to reveal them, or right-clicks on them to mark them as mines. • The player can choose a pre-defined level of difficulty or specify the board size and number of mines. • The player can also load a predefined game stored in an xml file. • The player can trigger constraint propagation at the following consistency levels: GAC, 2-relational consistency, and 3-relational consistency. • The player can execute each consistency algorithm either to proceed step-by-step or to run in a loop until quiescence.

  4. GAC 2-RC 3-RC GAC, 2-RC, and 3-RC are of increasing complexity: GAC ensures the consistency of each single constraint, 2-RC (respectively 3-RC) ensures the consistency of every combination of 2 (respectively 3) constraints with overlapping scopes. Higher levels of consistency are more costly, but can infer more information. Given the computational cost, one always applies GAC first, then 2-RC, followed by 3-RC.

  5. In his paper “Some Minesweeper Configurations,” Richard Kayementions twoparticularly challenging configurations. In the first configuration the player needs to examine the entire board in order to solve the problem, which Kaye claims to be difficult to do. Note here that 2-RC is sufficient to solve the problem. Another interesting configuration is the circle of 2’s, which is quite complex: neither GAC nor 2-RC yield any filtering. However, 3-RC is strong enough to solve this puzzle!

  6. While increasing the level consistency allows one to eventually find all possible solutions, constraint propagation cannot enable the player to win every game… … because of situations such as the one pictured here where two possible solutions exist. In such situations, the player can only guess…

More Related