We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5039401 commit 3e62eeeCopy full SHA for 3e62eee
tests/t354-basis.c
@@ -85,7 +85,7 @@ int main(int argc, char **argv) {
85
CeedBasisApplyAtPoints(basis_u, 1, num_point, CEED_TRANSPOSE, CEED_EVAL_INTERP, x_point, v_point, u_point);
86
CeedVectorGetArrayRead(u_point, CEED_MEM_HOST, &u_point_array);
87
for (CeedInt j = 0; j < p_dim; j++) fx += u_array[j] * u_point_array[j];
88
- if (fabs(v_array[i] - fx) > 100. * CEED_EPSILON) {
+ if (fabs(v_array[i] - fx) > 500. * CEED_EPSILON) {
89
// LCOV_EXCL_START
90
printf("[%" CeedInt_FMT "] %f != %f = f(%f", dim, v_array[i], fx, coord[0]);
91
for (CeedInt d = 1; d < dim; d++) printf(", %f", coord[d]);
0 commit comments