fixed fit parameter ignore boundary problems; fixes #128

This commit is contained in:
Dominik Demuth 2023-11-01 18:33:52 +01:00
parent 661ab81d7e
commit 5116622e42
2 changed files with 2 additions and 2 deletions

View File

@ -243,7 +243,7 @@ class QFitParameterWidget(QtWidgets.QWidget, Ui_FormFit):
else:
lb, ub = bds[i]
try:
if not (lb < p_i < ub):
if not ((lb < p_i < ub) or (not is_fixed[i])):
raise ValueError(f'Parameter {g.name} is outside bounds ({lb}, {ub})')
except TypeError:
pass

View File

@ -222,7 +222,7 @@ class Parameter:
self.var = False
else:
if isinstance(self.lb, (int, float)) and isinstance(self.ub, (int, float)):
if self.lb <= value <= self.ub:
if (self.lb <= value <= self.ub) or (not self.var):
self._value = value
else:
raise ValueError('Value of parameter is outside bounds')