# 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.lec03.lecture_03_dotsearch_dp import singledot from irlc.lectures.chapter4search.yield_version.pacman_yield import DFSAgentYield if __name__ == "__main__": # agent_args = dict(heuristic=manhattanHeuristic,N=30) singledot(SAgent=DFSAgentYield) # singledot(SAgent=BFSAgentYield)