OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:relativeerror
(Results
1 - 3
of
3
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
ContinuedFraction.java
135
double
relativeError
= Double.MAX_VALUE;
136
while (n < maxIterations &&
relativeError
> epsilon) {
190
relativeError
= FastMath.abs(r / c - 1.0);
/external/opencv3/modules/core/test/ocl/
test_arithm.cpp
1215
static bool
relativeError
(double actual, double expected, double eps)
1257
EXPECT_PRED3(
relativeError
, cpuRes, gpuRes, 1e-6);
[
all
...]
/external/skia/tests/
MathTest.cpp
392
float
relativeError
= sk_float_abs(exact - estimate)/exact;
393
REPORTER_ASSERT(reporter,
relativeError
<= maxRelativeError);
402
float
relativeError
= sk_float_abs(exact - estimate)/exact;
403
REPORTER_ASSERT(reporter,
relativeError
<= maxRelativeError);
412
float
relativeError
= sk_float_abs(exact - estimate)/exact;
413
REPORTER_ASSERT(reporter,
relativeError
<= maxRelativeError);
Completed in 682 milliseconds