MCPcopy Create free account
hub / github.com/Tencent/TAD_Sim / AlmostEqual

Function AlmostEqual

simcore/excel2asam/map_sdk_py/python_api/utils.cpp:9–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7const double EPSILON = 1e-2;
8
9bool AlmostEqual(double a) { return std::fabs(a) < EPSILON; }
10
11bool AlmostEqual(double a, double b) { return std::fabs(a - b) < EPSILON; }
12

Callers 11

operator==Method · 0.85
operator!Method · 0.85
operator/Method · 0.85
operator==Method · 0.85
operator!Method · 0.85
operator/Method · 0.85
operator==Method · 0.85
operator!Method · 0.85
operator/Method · 0.85
operator/Method · 0.85
operator/Method · 0.85

Calls 1

fabsFunction · 0.85

Tested by

no test coverage detected