Skip to content

Commit

Permalink
fix bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
rutgerfick committed Mar 13, 2018
1 parent e5e052c commit 72da0f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dmipy/core/modeling_framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ def bounds_for_optimization(self):
bounds.append(range_)
else:
for i in range(card):
bounds.append((range_[i][0], range_[i][0]))
bounds.append((range_[i][0], range_[i][1]))
return bounds

@property
Expand Down

0 comments on commit 72da0f4

Please sign in to comment.