Lines Matching full:lb
102 def get_bounds(self, lb, ub, error, alias={}, ridx: int = 0) -> list: argument
104 Get bounds and tolerance from lb, ub, and error.
105 If missing lb, use 0.0; missing ub, use float('inf); missing error, use self.tolerance.
107 @param lb: str/float, lower bound
135 lbv = get_bound_value(lb, float('inf'), ridx)
163 def check_bound(self, val, lb, ub, err): argument
164 return True if val <= ub + err and val >= lb - err else False
269 lb = rule['RangeLower']
271 if isinstance(lb, str):
272 if lb in alias:
273 lb = alias[lb]
280 lb, ub, rule['Description']))
283 lb, ub, rule['Description']))