MCPcopy Create free account
hub / github.com/BVLC/caffe / DoubleLE

Function DoubleLE

src/gtest/gtest-all.cpp:2405–2408  ·  view source on GitHub ↗

Asserts that val1 is less than, or almost equal to, val2. Fails otherwise. In particular, it fails if either val1 or val2 is NaN.

Source from the content-addressed store, hash-verified

2403// Asserts that val1 is less than, or almost equal to, val2. Fails
2404// otherwise. In particular, it fails if either val1 or val2 is NaN.
2405AssertionResult DoubleLE(const char* expr1, const char* expr2,
2406 double val1, double val2) {
2407 return internal::FloatingPointLE<double>(expr1, expr2, val1, val2);
2408}
2409
2410namespace internal {
2411

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected