Lines Matching refs:tol
28 CeedScalar tol; in GetTolerance() local
30 if (dim == 3) tol = 1.e-4; in GetTolerance()
31 else tol = 1.e-5; in GetTolerance()
33 tol = 1.e-11; in GetTolerance()
35 return tol; in GetTolerance()
40 CeedScalar tol; in VerifyProjectedBasis() local
46 tol = GetTolerance(scalar_type, dim); in VerifyProjectedBasis()
77 …if (fabs(u - u_array[i]) > tol) printf("[%" CeedInt_FMT ", %" CeedInt_FMT "] %f != %f\n", dim, i, … in VerifyProjectedBasis()
99 if (fabs(du - du_array[p_to_dim * d + i]) > tol) { in VerifyProjectedBasis()
224 CeedScalar tol = 100 * CEED_EPSILON; in main() local
227 if (fabs(interp_proj[i] - ((CeedScalar *)interp_proj_ref)[i]) > tol) { in main()
235 if (fabs(grad_proj[i] - ((CeedScalar *)grad_proj_ref)[i]) > tol) { in main()