From 9facc16e1a5387533a6a043c353de13e7a2ffdb8 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Sun, 2 Nov 2025 21:42:19 +0100 Subject: [PATCH] test.c updated to catch large number sqrt issues early before running pytests --- stencils/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stencils/test.c b/stencils/test.c index 38664f8..2d1253a 100644 --- a/stencils/test.c +++ b/stencils/test.c @@ -4,7 +4,7 @@ int main() { // Test aux functions float a = 16.0f; - float sqrt_a = aux_sqrt(a); + float sqrt_a = aux_sqrt(100000.0f); float pow_a = fast_pow_float(a, 0.5f); float div_result = (float)floor_div(-7.0f, 3.0f); float sin_30 = aux_sin(30.0f);