Searched defs:ErrorSpec (Results 1 – 3 of 3) sorted by relevance
34 struct ErrorSpec { struct44 ErrorSpec(float a, float r) : abs_err(a), rel_err(r) {} in ErrorSpec() argument
22 struct ErrorSpec { struct24 : abs(aabs), rel(arel), relaxed_nans(relaxed_nans) {} in abs()26 float abs; // Absolute error bound.27 float rel; // Relative error bound.32 bool relaxed_nans;45 bool fewer_infs_ok = false;
82 ErrorSpec = collections.namedtuple("ErrorSpec", ["rtol", "atol"]) variable