Skip to content
Snippets Groups Projects
lecture_03_tricksearch_dfs.py 665 B
Newer Older
  • Learn to ignore specific revisions
  • tuhe's avatar
    tuhe committed
    # This file may not be shared/redistributed without permission. Please read copyright notice in the git repo. If this file contains other copyright notices disregard this text.
    # from irlc.ex03.pacsearch_agents import GymPositionSearchProblem, manhattanHeuristic, GymCornersProblem, cornersHeuristic, foodHeuristic, GymFoodSearchProblem, GymAnyFoodSearchProblem
    
    from irlc.lectures.chapter4search.yield_version.pacman_yield import DFSAgentYield
    from irlc.lectures.lec03.lecture_03_tricksearch_bfs import tricksearchdot
    
    
    if __name__ == "__main__":
        # agent_args = dict(heuristic=manhattanHeuristic,N=30)
        tricksearchdot(SAgent=DFSAgentYield, agent_args=None)