Record Case Detail

Notes

This function is in beta test. Please help improve it in the issues here.

Stderr

Traceback (most recent call last):
  File "autograder.py", line 358, in <module>
    display=getDisplay(True, options))
  File "autograder.py", line 221, in runTest
    testCase.execute(grades, moduleDict, solutionDict)
  File "multiagentTestClasses.py", line 435, in execute
    action, generated = self.solveProblem(multiAgents)
  File "multiagentTestClasses.py", line 422, in solveProblem
    action = studentAgent.getAction(self.problem.startState)
  File "multiAgents.py", line 230, in getAction
    v.append(self.minvalue(successor,alpha,beta,self.depth-1,1))
  File "multiAgents.py", line 201, in minvalue
    return self.evaluationFunction(state)
  File "multiAgents.py", line 104, in scoreEvaluationFunction
    return currentGameState.getScore()
  File "multiagentTestClasses.py", line 65, in getScore
    'getScore() called on non-terminal state or before maximum depth achieved.')
Exception: getScore() called on non-terminal state or before maximum depth achieved.

Hints

Your answer may be identical to the JOJ answer in the first several lines.

However, the main problem you meet now is Runtime Error. And the exit code of your program is 1, which should be 0.

Please double check your code to solve this problem and try again.

Your Answer


        

JOJ Answer

*** PASS: ./test_cases/q3/2-2a-vary-depth.test