├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── Rules ├── config.yaml ├── content ├── basic.md ├── errors │ ├── NearlyEqualsTest.java │ ├── comparison.md │ ├── propagation.md │ └── rounding.md ├── es.png ├── favicon.ico ├── formats │ ├── binary.md │ ├── exact.md │ ├── fp.md │ └── integer.md ├── index.md ├── languages │ ├── csharp.md │ ├── java.md │ ├── javascript.md │ ├── perl.md │ ├── php.md │ ├── python.md │ ├── ruby.md │ └── sql.md ├── logo.png ├── references.md ├── robots.txt ├── style.css └── xkcd.md ├── layouts └── default.html └── lib └── default.rb /.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | tmp 3 | .ruby-version 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'nanoc3/tasks' -------------------------------------------------------------------------------- /Rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/Rules -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/config.yaml -------------------------------------------------------------------------------- /content/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/basic.md -------------------------------------------------------------------------------- /content/errors/NearlyEqualsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/errors/NearlyEqualsTest.java -------------------------------------------------------------------------------- /content/errors/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/errors/comparison.md -------------------------------------------------------------------------------- /content/errors/propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/errors/propagation.md -------------------------------------------------------------------------------- /content/errors/rounding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/errors/rounding.md -------------------------------------------------------------------------------- /content/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/es.png -------------------------------------------------------------------------------- /content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/favicon.ico -------------------------------------------------------------------------------- /content/formats/binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/formats/binary.md -------------------------------------------------------------------------------- /content/formats/exact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/formats/exact.md -------------------------------------------------------------------------------- /content/formats/fp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/formats/fp.md -------------------------------------------------------------------------------- /content/formats/integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/formats/integer.md -------------------------------------------------------------------------------- /content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/index.md -------------------------------------------------------------------------------- /content/languages/csharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/languages/csharp.md -------------------------------------------------------------------------------- /content/languages/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/languages/java.md -------------------------------------------------------------------------------- /content/languages/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/languages/javascript.md -------------------------------------------------------------------------------- /content/languages/perl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/languages/perl.md -------------------------------------------------------------------------------- /content/languages/php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/languages/php.md -------------------------------------------------------------------------------- /content/languages/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/languages/python.md -------------------------------------------------------------------------------- /content/languages/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/languages/ruby.md -------------------------------------------------------------------------------- /content/languages/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/languages/sql.md -------------------------------------------------------------------------------- /content/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/logo.png -------------------------------------------------------------------------------- /content/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/references.md -------------------------------------------------------------------------------- /content/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/robots.txt -------------------------------------------------------------------------------- /content/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/style.css -------------------------------------------------------------------------------- /content/xkcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/content/xkcd.md -------------------------------------------------------------------------------- /layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/layouts/default.html -------------------------------------------------------------------------------- /lib/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrv/floating-point-guide/HEAD/lib/default.rb --------------------------------------------------------------------------------