Skip to content

Commit

Permalink
removes print-debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Vemundss committed Dec 4, 2021
1 parent 815f164 commit e4f8c60
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ratsimulator/Agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,6 @@ def step(self, record_step=True):
self.hds = np.append(self.hds, new_hd)
self.turns = np.append(self.turns, new_turn)

if not self.environment.inside_environment(self.positions[-1]) and False:
print(self.speeds[-2:], self.hds[-2:], self.turns[-2:])
print(self.positions[-2:])
print(self.velocities[-2:])

return new_speed, new_hd

def avoid_walls(self, *args, **kwargs):
Expand Down

0 comments on commit e4f8c60

Please sign in to comment.