22 using Range = std::pair<double, double>;
46 double oneMin = oneExt.
min(bValue);
47 double oneMax = oneExt.max(bValue);
49 double otherMin = otherExt.min(bValue);
50 double otherMax = otherExt.max(bValue);
52 return (std::abs(oneMin - otherMin) <=
tolerances[bValue].first and
53 std::abs(oneMax - otherMax) <=
tolerances[bValue].second);