Skip to content

Commit

Permalink
fixing typo from resolving merge conflict to ensure inverse term of l…
Browse files Browse the repository at this point in the history
…og_delta_q is calculated when points_per_decade is specified
  • Loading branch information
Caitlyn Wolf authored and Caitlyn Wolf committed Jun 27, 2023
1 parent 23b05a9 commit f07dc5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sasmodels/resolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ def geometric_extrapolation(q, q_min, q_max, points_per_decade=None):
else:
log_delta_q = DEFAULT_POINTS_PER_DECADE / log(10.)
else:
points_per_decade / log_delta_q = log(10.)
log_delta_q = points_per_decade / log(10.)
if q_min < data_min:
if q_min < 0:
q_min = data_min*MINIMUM_ABSOLUTE_Q
Expand Down

0 comments on commit f07dc5d

Please sign in to comment.