Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kip-hart committed Jul 8, 2020
1 parent 36549d1 commit 8b4c901
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/microstructpy/seeding/seedlist.py
Expand Up @@ -545,7 +545,10 @@ def position(self, domain, pos_dists=None, rng_seed=0, hold=None,
i_position = i_sort[~positioned[i_sort]]

# allowable overlap, relative to radius
rtol = kwargs.get('rtol', calc_rtol(self))
if kwargs.get('rtol', 'fit') == 'fit':
rtol = calc_rtol(self)
else:
rtol = kwargs['rtol']

# position the remaining seeds
i_reject = []
Expand Down

0 comments on commit 8b4c901

Please sign in to comment.