From 5157e6043d7664df29e940d5ffc13adad93c0677 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Wed, 20 Feb 2019 17:13:28 -0800 Subject: [PATCH] print to see and gitignore --- .gitignore | 1 + multiAgents.py | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 .gitignore 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()