Removing unused print statements

This commit is contained in:
Patrick Shriwise 2023-03-27 16:50:18 -05:00
parent ab403b2fc8
commit 63fa42843b
2 changed files with 0 additions and 3 deletions

View file

@ -98,7 +98,6 @@ def test_offset_mesh(model, estimator, origin):
centroids = mesh.centroids
for ijk in mesh.indices:
i, j, k = np.array(ijk) - 1
print(centroids[:, i, j, k])
if model.geometry.find(centroids[:, i, j, k]):
mean[i, j, k] == 0.0
else:
@ -152,7 +151,6 @@ def _check_void_cylindrical_tally(statepoint_filename):
neutron_flux = flux_tally.get_reshaped_data().squeeze()
# we expect the tally results to be the same as the mesh grid width
# for these cases
print(neutron_flux)
d_r = mesh.r_grid[1] - mesh.r_grid[0]
assert neutron_flux == pytest.approx(d_r)

View file

@ -102,7 +102,6 @@ def test_offset_mesh(model, estimator, origin):
centroids = mesh.centroids
for ijk in mesh.indices:
i, j, k = np.array(ijk) - 1
print(centroids[:, i, j, k])
if model.geometry.find(centroids[:, i, j, k]):
mean[i, j, k] == 0.0
else: