4inline int dot_compare_3d_filter(
const double* p0,
const double* p1,
const double* p2) {
6 d1 = (((p0[0] * p1[0]) + (p0[1] * p1[1])) + (p0[2] * p1[2]));
8 d2 = (((p0[0] * p2[0]) + (p0[1] * p2[1])) + (p0[2] * p2[2]));
10 double double_tmp_result;
12 double_tmp_result = (d1 - d2);
13 double max1 = fabs(p0[0]);
14 if( (max1 < fabs(p0[1])) )
18 if( (max1 < fabs(p0[2])) )
22 double max2 = fabs(p1[0]);
23 if( (max2 < fabs(p1[1])) )
27 if( (max2 < fabs(p1[2])) )
31 if( (max2 < fabs(p2[0])) )
35 if( (max2 < fabs(p2[1])) )
39 if( (max2 < fabs(p2[2])) )
47 if( (max2 < lower_bound_1) )
53 if( (max2 > upper_bound_1) )
58 if( (lower_bound_1 < 3.01698158319050667656e-147) )
60 return FPG_UNCERTAIN_VALUE;
64 if( (upper_bound_1 > 1.67597599124282407923e+153) )
66 return FPG_UNCERTAIN_VALUE;
68 eps = (2.44455106181954323552e-15 * (max1 * max2));
69 if( (double_tmp_result > eps) )
75 if( (double_tmp_result < -eps) )
81 return FPG_UNCERTAIN_VALUE;
85 return int_tmp_result;