Skip to content

Commit

Permalink
Remove left-over print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
mstimberg committed Oct 4, 2022
1 parent eed8476 commit f544d98
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion brian2/devices/cpp_standalone/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,6 @@ def run(self, directory=None, results_directory=None, with_output=True, run_args
if hasattr(var.owner, 'name') and var.owner.name + '.' + var.name == s[0]:
self.array_cache[var] = None
run_args = ['--results_dir', self.results_dir] + run_args
print(run_args)
# Invalidate the cached end time of the clock and network, to deal with stopped simulations
for clock in self.clocks:
self.array_cache[clock.variables['t']] = None
Expand Down
1 change: 0 additions & 1 deletion brian2/tests/test_cpp_standalone.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,6 @@ def run_sim(self, idx):
self.G.w: np.arange(10), # Same values for all processes
self.G.x: np.arange(10)*idx # Different values
})
print(device.results_dir)
return self.G.v[:], self.G.w[:], self.G.x[:]


Expand Down

0 comments on commit f544d98

Please sign in to comment.