1 / 6

Island driven search

Island driven search. As presented by shawn murry. What is Island driven search. Breadth first search that breaks a problem into smaller islands which are then solved individually in order to reach the main goal state. Using Island driven search for sudoku.

saburo
Download Presentation

Island driven search

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. Island driven search As presented by shawnmurry

  2. What is Island driven search • Breadth first search that breaks a problem into smaller islands which are then solved individually in order to reach the main goal state

  3. Using Island driven search for sudoku • The islands of the sudoku problem are the individual numbers 1-9 used to solve a sudoku • The way that island driven search would try to solve this problem would be to try to fill in all the blanks that coincide to one number then move to solve the next number islands until the problem is solved

  4. Heuristic for island driven • Cost of a move = 9-X+Z • X= number of a particular number already on a board • Z= the number of conflicts of where you can legally place a number but could also maybe place another number

  5. Heuristic evaluation function • Total move to solve= (Y*K)-F • Y= total number of blanks on the board • K is the total number of conflicts in each square • F is the total number of solved islands + number of already filled in blanks

  6. Example sudoku

More Related