Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
elehcim committed Mar 12, 2021
1 parent c7067dd commit 824bb2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simulation/sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def get_traj(self):
# self.trace should be monotonic here
# locations = np.digitize(self.times.in_units(gadget_time_units), self.trace.t, right=True)
locations = np.digitize(self.times_header, self.trace.t, right=True)
print(locations)
# print(locations)
x = self.trace.x[locations]
y = self.trace.y[locations]
z = self.trace.z[locations]
Expand Down

0 comments on commit 824bb2a

Please sign in to comment.