In model mapper, this function:
def assert_within_limits(self, value):
if not (self.lower_limit <= value <= self.upper_limit):
raise exc.PriorLimitException(
"The physical value {} for a prior was not within its limits {}, {}".format(value, self.lower_limit,
self.upper_limit))
Does not return the error. Thus, the error is not used in non_linear to resample a model outside the physical limits :(.
In model mapper, this function:
Does not return the error. Thus, the error is not used in non_linear to resample a model outside the physical limits :(.