aboutsummaryrefslogtreecommitdiff
path: root/documentation/bookmark/floating_point.md
diff options
context:
space:
mode:
authorEduardo Julian2021-07-10 03:10:43 -0400
committerEduardo Julian2021-07-10 03:10:43 -0400
commit4610968193df10af12c91f699fec39aeb3ef703a (patch)
tree27d1578548ad49f5aefe76fb696a7af10361c9cf /documentation/bookmark/floating_point.md
parentf3e869d0246e956399ec31a074c6c6299ff73602 (diff)
Made the "try" macro into a common one, instead of a host-specific one.
Diffstat (limited to 'documentation/bookmark/floating_point.md')
-rw-r--r--documentation/bookmark/floating_point.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/documentation/bookmark/floating_point.md b/documentation/bookmark/floating_point.md
new file mode 100644
index 000000000..55c84d2f2
--- /dev/null
+++ b/documentation/bookmark/floating_point.md
@@ -0,0 +1,20 @@
+# Random generation
+
+1. [Uniform random floats: How to generate a double-precision floating-point number in [0, 1] uniformly at random given a uniform random source of bits](https://mumble.net/~campbell/2014/04/28/uniform-random-float)
+
+# Correctness
+
+1. [Herbie: Find and fix floating-point problems.](https://herbie.uwplse.org/)
+
+# Format
+
+1. [decimal128 floating-point format](https://en.wikipedia.org/wiki/Decimal128_floating-point_format)
+
+# Reference
+
+1. [What aspect of portable floating point did Java back down on?](https://retrocomputing.stackexchange.com/questions/18143/what-aspect-of-portable-floating-point-did-java-back-down-on)
+
+# Algorithm
+
+1. [Kahan summation algorithm](https://en.wikipedia.org/wiki/Kahan_summation_algorithm)
+