Skip to content

Commit

Permalink
test - slightly loosen t354 tol
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylt committed Nov 19, 2024
1 parent 20dc375 commit d2f8704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/t354-basis.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ int main(int argc, char **argv) {
CeedBasisApplyAtPoints(basis_u, 1, num_point, CEED_TRANSPOSE, CEED_EVAL_INTERP, x_point, v_point, u_point);
CeedVectorGetArrayRead(u_point, CEED_MEM_HOST, &u_point_array);
for (CeedInt j = 0; j < p_dim; j++) fx += u_array[j] * u_point_array[j];
if (fabs(v_array[i] - fx) > 100. * CEED_EPSILON) {
if (fabs(v_array[i] - fx) > 500. * CEED_EPSILON) {
// LCOV_EXCL_START
printf("[%" CeedInt_FMT "] %f != %f = f(%f", dim, v_array[i], fx, coord[0]);
for (CeedInt d = 1; d < dim; d++) printf(", %f", coord[d]);
Expand Down

0 comments on commit d2f8704

Please sign in to comment.