aboutsummaryrefslogtreecommitdiff
path: root/double.c
diff options
context:
space:
mode:
authorJulian Weigt <juw@posteo.de>2026-02-23 16:46:13 +0000
committerJulian Weigt <juw@posteo.de>2026-02-23 16:46:13 +0000
commite1dc1ede438c49a56f649026e95be807c95a1c54 (patch)
tree13d63065b1384ae8e26d8ce10c35010965e96032 /double.c
parenta85b22476d2b7147667caa440aa593d1309cbc55 (diff)
Add case of generating the function 11100100 which seems to be the smallest for which ||Mf^(k)||/||f^(k)|| goes to infinity with k.HEADmain
Diffstat (limited to 'double.c')
-rw-r--r--double.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/double.c b/double.c
index 5ab6178..89ebd87 100644
--- a/double.c
+++ b/double.c
@@ -44,6 +44,7 @@ double valuetype_to_double(vtype d){ return (double)d; }
int valuetype_to_string(char* s, vtype d){
if( d == 0.0 || d == 1.0 || d == 2.0 || d == 4.0 || d == 8.0 || d == 16.0 ) sprintf(s,"%d", (int)d);
//else sprintf(s,"%4.3f",d);
+ //else sprintf(s,"%+4.3Le",d);
else sprintf(s,"%4.3Lf",d);
return 0;
}