E.V.E
v2023.02.15
Loading...
Searching...
No Matches

◆ definitely

auto eve::definitely = {}
inlineconstexpr

Header file

#include <eve/module/core.hpp>

Mirror image of almost: where almost widens a test so that near misses pass, definitely narrows it so that near misses fail. is_greater[definitely = tol](x, y) holds when \(x > y + \mbox{tol}\cdot\max(|x|, |y|)\) for a floating tol, or when x exceeds the tol-th representable value after y for an integral one. Omitting tol uses 3*eps(as(x)).

Note
Only defined for floating point values.