Skip to content

Commit 7b0f77a

Browse files
committed
remove debug print statements from SeedList
1 parent 67a3258 commit 7b0f77a

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file.
66
The format is based on `Keep a Changelog`_,
77
and this project adheres to `Semantic Versioning`_.
88

9+
`1.3.4`_ - 2020-08-31
10+
--------------------------
11+
Removed
12+
'''''''
13+
- Debug print statements from SeedList population fractions method.
14+
915
`1.3.3`_ - 2020-08-31
1016
--------------------------
1117
Added
@@ -141,7 +147,8 @@ Added
141147

142148
.. LINKS
143149
144-
.. _`Unreleased`: https://github.com/kip-hart/MicroStructPy/compare/v1.3.3...HEAD
150+
.. _`Unreleased`: https://github.com/kip-hart/MicroStructPy/compare/v1.3.4...HEAD
151+
.. _`1.3.4`: https://github.com/kip-hart/MicroStructPy/compare/v1.3.3...v1.3.4
145152
.. _`1.3.3`: https://github.com/kip-hart/MicroStructPy/compare/v1.3.2...v1.3.3
146153
.. _`1.3.2`: https://github.com/kip-hart/MicroStructPy/compare/v1.3.1...v1.3.2
147154
.. _`1.3.1`: https://github.com/kip-hart/MicroStructPy/compare/v1.3.0...v1.3.1

src/microstructpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
import microstructpy.seeding
55
import microstructpy.verification
66

7-
__version__ = '1.3.3'
7+
__version__ = '1.3.4'

src/microstructpy/seeding/seedlist.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -996,8 +996,6 @@ def _calc_pop_fracs(n_dim, phases, sample_rng_seeds, max_int):
996996
# Compute the average grain volume of each phase
997997
if n_dim == 2:
998998
shape0 = geometry.factory(phases[0]['shape'])
999-
print('shape', shape0)
1000-
print('p0', phases[0])
1001999
avg_vols = [geometry.factory(p['shape']).area_expectation(**p)
10021000
for p in phases]
10031001
else:

0 commit comments

Comments
 (0)