Skip to content
Snippets Groups Projects
Commit 1cc198f3 authored by rtoy's avatar rtoy
Browse files

Update for REAL and FLOAT type specifier changes.

parent 7e02e0d2
No related branches found
No related tags found
No related merge requests found
...@@ -107,6 +107,15 @@ New in this release: ...@@ -107,6 +107,15 @@ New in this release:
- Tracing should now be working on Darwin/x86. Previously, - Tracing should now be working on Darwin/x86. Previously,
certain cases would cause Lisp to segfault in bad ways where you certain cases would cause Lisp to segfault in bad ways where you
could not return to the repl. could not return to the repl.
- The bounds for type (REAL lo hi) are computed better now. The
REAL type is a union of SINGLE-FLOAT, DOUBLE-FLOAT, and
DOUBLE-DOUBLE-FLOAT. The computed bounds for
DOUBLE-DOUBLE-FLOAT only had double-float accuracy if the bound
for REAL was a rational.
- The FLOAT type now requires that the bounds, if given, are
floats. Previously, any real type would be accepted. This
makes FLOAT behave like SINGLE-FLOAT and DOUBLE-FLOAT which
required the bounds to be a float of the appropriate type.
* Trac Tickets: * Trac Tickets:
- #16: Read-time hash-table issue - #16: Read-time hash-table issue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment