Skip to content

Commit 6a49ded

Browse files
committed
reduce eps
1 parent aec4816 commit 6a49ded

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_lookup_tables.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int table_compare(const fluid_real_t *actual, const fluid_real_t *expected, int
2323
int i, res = FLUID_OK;
2424
for (i = 0; i < size; i++)
2525
{
26-
static const fluid_real_t EPS = 1e-3;
26+
static const fluid_real_t EPS = 1e-4;
2727
fluid_real_t x = actual[i];
2828
fluid_real_t y = expected[i];
2929
fluid_real_t diff = (x - y);

0 commit comments

Comments
 (0)