Skip to content
Snippets Groups Projects
lecture_03_expectimax.py 391 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.ex03multisearch.multisearch_agents import GymExpectimaxAgent
    from irlc.lectures.lec03.lecture_03_minimax import gminmax
    
    if __name__ == "__main__":
        d = 3
        gminmax(Agent=GymExpectimaxAgent,depth=d)