The absolute tolerance for approximate comparisons of floating-point values.
| 84 | |
| 85 | /// The absolute tolerance for approximate comparisons of floating-point values. |
| 86 | std::optional<double> atol() const { return atol_; } |
| 87 | |
| 88 | /// Return a new EqualOptions object with the "atol" property changed. |
| 89 | /// If both "ulp_distance" and "atol" are specified, the comparison |