Lines Matching full:float
11 …def __init__(self, metric: list[str], wl: str, value: list[float], low: float, up=float('nan'), de… argument
103 If missing lb, use 0.0; missing ub, use float('inf); missing error, use self.tolerance.
105 @param lb: str/float, lower bound
106 @param ub: str/float, upper bound
107 @param error: float/str, error tolerance
115 if isinstance(bound, int) or isinstance(bound, float):
119 val = float("inf")
125 val = float(bound)
133 lbv = get_bound_value(lb, float('inf'), ridx)
156 results.append(float(name))
373 metricvalues[name.lower()] = float(result["metric-value"])