Lines Matching defs:float
11 def __init__(self, metric: list[str], wl: str, value: list[float], low: float, up=float('nan'), description=str()):
105 If missing lb, use 0.0; missing ub, use float('inf); missing error, use self.tolerance.
107 @param lb: str/float, lower bound
108 @param ub: str/float, upper bound
109 @param error: float/str, error tolerance
117 if isinstance(bound, int) or isinstance(bound, float):
121 val = float("inf")
127 val = float(bound)
135 lbv = get_bound_value(lb, float('inf'), ridx)
158 results.append(float(name))
375 metricvalues[name.lower()] = float(result["metric-value"])