diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed8ebf5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__ \ No newline at end of file diff --git a/multiAgents.py b/multiAgents.py index 02b0a94..94c2997 100644 --- a/multiAgents.py +++ b/multiAgents.py @@ -72,6 +72,10 @@ class ReflexAgent(Agent): newFood = successorGameState.getFood() newGhostStates = successorGameState.getGhostStates() newScaredTimes = [ghostState.scaredTimer for ghostState in newGhostStates] + print(newPos) + print(newFood) + print(newGhostStates) + print(newScaredTimes) "*** YOUR CODE HERE ***" return successorGameState.getScore()