1 / 9

search

search. exploring the consequences of possible actions. search context. good for simple problem solving leads to... game playing planning expert-systems ...etc. jargon. state (node) a static problem state state space all possible problem states operator/move

fox
Download Presentation

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. search exploring the consequences of possible actions

  2. search context • good for simple problem solving • leads to... game playing planning expert-systems ...etc...

  3. jargon state (node) a static problem state state space all possible problem states operator/move Fn to generate one state from another legal move generator Fn to generate all successor states from a given state search strategy approach to exploring state space

  4. a basic search algorithm search( start, goal ) put the start state onto ready until goal is found or ready is empty do select a state S from ready remove S from ready if S is a goal then finished ! else add all unvisited successor states of S to ready add S to visited

  5. issues what kind of result is result preferred? how can paths between states be represented? what is the strategy for state selection? how is the legal move generator specified? can it be of a standard form? what about different search strategies? efficiency / costs / etc

  6. strategies 1 breadth-first • layer by layer through search tree • ready is a queue depth first • exhausting one limb of tree before going to next • ready is a stack best first • explore from least cost (maps.google.co.uk)

  7. strategies 2 heuristic (?) • explore from closest to goal heuristic (ok) • explore from least (cost + closeness to goal) admissible searches • will find solutions if they exist optimal searches • will find solutions with minimal effort

  8. trad. game playing • based on search • assumes 2 players, trying to win basics • static evaluation fn (+/- numeric value) • minimax search routine • alpha-beta pruning

  9. add-ons (mostly to minimax) • heuristic growth • heuristic pruning • use different eval fns at different stages • library moves (open game / end game)

More Related