Skip to content

Commit

Permalink
Remove superfluous print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewpaulreeves authored Feb 27, 2020
1 parent f7e56cc commit 2c32e15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aotools/turbulence/slopecovariance.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(
self.layer_altitudes = layer_altitudes
self.layer_r0s = layer_r0s
self.layer_L0s = layer_L0s
print("n_layers: {}".format(n_layers))
# print("n_layers: {}".format(n_layers))

self.n_subaps = []
self.total_subaps = 0
Expand Down Expand Up @@ -147,7 +147,7 @@ def _make_covariance_matrix(self):
# Now compile the covariance matrix
self.covariance_matrix = numpy.zeros((2 * self.total_subaps, 2 * self.total_subaps)).astype("float32")
for layer_n in range(self.n_layers):
print("Compute Layer {}".format(layer_n))
# print("Compute Layer {}".format(layer_n))

subap_ni = 0
for wfs_i in range(self.n_wfs):
Expand Down

0 comments on commit 2c32e15

Please sign in to comment.