From 840d294a4a1e0c4286b162007f49a8233350a9c2 Mon Sep 17 00:00:00 2001 From: Julian Weigt Date: Fri, 20 Feb 2026 15:23:26 +0100 Subject: Change double to long double because numbers get too big for high derivatives. --- charf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'charf.c') diff --git a/charf.c b/charf.c index d2a42c8..0028dc5 100644 --- a/charf.c +++ b/charf.c @@ -34,8 +34,8 @@ Floating point without error bounds are the default. #define EXPTYPE unsigned int #else #include "double.h" -#define VALUETYPE double -#define EXPTYPE double +#define VALUETYPE long double +#define EXPTYPE long double #endif #define STRING_SIZE 65536 -- cgit v1.2.3