Skip to content

Commit 3e62eee

Browse files
committed
test - slightly loosen t354 tol
1 parent 5039401 commit 3e62eee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/t354-basis.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ int main(int argc, char **argv) {
8585
CeedBasisApplyAtPoints(basis_u, 1, num_point, CEED_TRANSPOSE, CEED_EVAL_INTERP, x_point, v_point, u_point);
8686
CeedVectorGetArrayRead(u_point, CEED_MEM_HOST, &u_point_array);
8787
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) {
88+
if (fabs(v_array[i] - fx) > 500. * CEED_EPSILON) {
8989
// LCOV_EXCL_START
9090
printf("[%" CeedInt_FMT "] %f != %f = f(%f", dim, v_array[i], fx, coord[0]);
9191
for (CeedInt d = 1; d < dim; d++) printf(", %f", coord[d]);

0 commit comments

Comments
 (0)