Skip to content
Snippets Groups Projects
lecture_03_squaresearch_bfs.py 794 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.lectures.chapter4search.yield_version.pacman_yield import BFSAgentYield
    from irlc.lectures.chapter4search.search_tables import s_large
    
    # def tricksearchdot(layout='trickySearch', SAgent=None, agent_args=None, layout_str=None):
    #     stest(layout_str=layout_str, SAgent=SAgent, prob=GymFoodSearchProblem(), agent_args=agent_args, zoom=2, **dargs, fps=1000)  # part 3
    
    from irlc.lectures.lec03.lecture_03_tricksearch_bfs import tricksearchdot
    
    if __name__ == "__main__":
        # agent_args = dict(heuristic=manhattanHeuristic,N=30)
        tricksearchdot(SAgent=BFSAgentYield, agent_args=None, layout_str=s_large)