├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── cmake ├── FindDoubleConversion.cmake └── FindGMP.cmake ├── grisu ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── Changelog ├── LICENSE ├── Makefile ├── README ├── SConstruct ├── double-conversionBuildTreeSettings.cmake.in ├── double-conversionConfig.cmake.in ├── double-conversionConfigVersion.cmake.in └── src │ ├── CMakeLists.txt │ ├── SConscript │ ├── bignum-dtoa.cc │ ├── bignum-dtoa.h │ ├── bignum.cc │ ├── bignum.h │ ├── cached-powers.cc │ ├── cached-powers.h │ ├── diy-fp.cc │ ├── diy-fp.h │ ├── double-conversion.cc │ ├── double-conversion.h │ ├── fast-dtoa.cc │ ├── fast-dtoa.h │ ├── fixed-dtoa.cc │ ├── fixed-dtoa.h │ ├── ieee.h │ ├── strtod.cc │ ├── strtod.h │ └── utils.h ├── lib ├── Makefile ├── enum3.h ├── enum4.h ├── errol.c ├── errol.h ├── itoa_c.h └── lookup.h └── test ├── Makefile ├── dragon4.c ├── dragon4.h ├── interop.cpp ├── main.c └── proof.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindDoubleConversion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/cmake/FindDoubleConversion.cmake -------------------------------------------------------------------------------- /cmake/FindGMP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/cmake/FindGMP.cmake -------------------------------------------------------------------------------- /grisu/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/AUTHORS -------------------------------------------------------------------------------- /grisu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/CMakeLists.txt -------------------------------------------------------------------------------- /grisu/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/COPYING -------------------------------------------------------------------------------- /grisu/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/Changelog -------------------------------------------------------------------------------- /grisu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/LICENSE -------------------------------------------------------------------------------- /grisu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/Makefile -------------------------------------------------------------------------------- /grisu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/README -------------------------------------------------------------------------------- /grisu/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/SConstruct -------------------------------------------------------------------------------- /grisu/double-conversionBuildTreeSettings.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/double-conversionBuildTreeSettings.cmake.in -------------------------------------------------------------------------------- /grisu/double-conversionConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/double-conversionConfig.cmake.in -------------------------------------------------------------------------------- /grisu/double-conversionConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/double-conversionConfigVersion.cmake.in -------------------------------------------------------------------------------- /grisu/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/CMakeLists.txt -------------------------------------------------------------------------------- /grisu/src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/SConscript -------------------------------------------------------------------------------- /grisu/src/bignum-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/bignum-dtoa.cc -------------------------------------------------------------------------------- /grisu/src/bignum-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/bignum-dtoa.h -------------------------------------------------------------------------------- /grisu/src/bignum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/bignum.cc -------------------------------------------------------------------------------- /grisu/src/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/bignum.h -------------------------------------------------------------------------------- /grisu/src/cached-powers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/cached-powers.cc -------------------------------------------------------------------------------- /grisu/src/cached-powers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/cached-powers.h -------------------------------------------------------------------------------- /grisu/src/diy-fp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/diy-fp.cc -------------------------------------------------------------------------------- /grisu/src/diy-fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/diy-fp.h -------------------------------------------------------------------------------- /grisu/src/double-conversion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/double-conversion.cc -------------------------------------------------------------------------------- /grisu/src/double-conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/double-conversion.h -------------------------------------------------------------------------------- /grisu/src/fast-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/fast-dtoa.cc -------------------------------------------------------------------------------- /grisu/src/fast-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/fast-dtoa.h -------------------------------------------------------------------------------- /grisu/src/fixed-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/fixed-dtoa.cc -------------------------------------------------------------------------------- /grisu/src/fixed-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/fixed-dtoa.h -------------------------------------------------------------------------------- /grisu/src/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/ieee.h -------------------------------------------------------------------------------- /grisu/src/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/strtod.cc -------------------------------------------------------------------------------- /grisu/src/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/strtod.h -------------------------------------------------------------------------------- /grisu/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/grisu/src/utils.h -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/enum3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/lib/enum3.h -------------------------------------------------------------------------------- /lib/enum4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/lib/enum4.h -------------------------------------------------------------------------------- /lib/errol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/lib/errol.c -------------------------------------------------------------------------------- /lib/errol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/lib/errol.h -------------------------------------------------------------------------------- /lib/itoa_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/lib/itoa_c.h -------------------------------------------------------------------------------- /lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/lib/lookup.h -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/dragon4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/test/dragon4.c -------------------------------------------------------------------------------- /test/dragon4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/test/dragon4.h -------------------------------------------------------------------------------- /test/interop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/test/interop.cpp -------------------------------------------------------------------------------- /test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/test/main.c -------------------------------------------------------------------------------- /test/proof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcandrysco/Errol/HEAD/test/proof.c --------------------------------------------------------------------------------