mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23:38 +01:00
14 lines
682 B
Text
14 lines
682 B
Text
Grisu is an algorithm by Florian Loitsch to print the decimal representation of
|
||
floating-point numbers.
|
||
|
||
The original code from which this folder is extracted can be found at
|
||
<https://drive.google.com/open?id=0BwvYOx00EwKmejFIMjRORTFLcTA>.
|
||
|
||
Only a minimal variation, the Grisu2 rounding algorithm with α=-59 and γ=-56,
|
||
is present here. The code has been adapted to fit the limited runtime as well
|
||
as the use of OpenLibm.
|
||
|
||
See the original paper at <https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf>
|
||
and Florian Loitsch's home page at <https://florian.loitsch.com/publications>.
|
||
|
||
The files are licensed under the permissive conditions of the attached LICENSE.
|