This is an analysis of the R5RS provision that the full numeric tower may be subsetted. Five boolean feature settings characterize different kinds of numeric towers: exactness-preserving, ratios, inexact, and complex, and exact-complex. These refer respectively to the closure of exact numbers under rational operations (except /), exact non-integer values, inexact rationals, non-real numbers, and exact non-real numbers. Of course, exact-complex can only be true if complex is true.
So here are some numeric towers that have implementations. I use + if a feature is present and - if it is absent, and give a general description of the resulting tower.
||exactness-preserving||ratios||inexact||complex||exact-complex||Description||Examples
- |
- |
- |
- |
- |
A "toy" tower with fixnums (bounded exact integers) only. Possibly appropriate where no numerical work will be done. |
SigScheme |
- |
- |
+ |
- |
- |
A Scheme where all numbers are real and all arithmetic happens in essentially constant time. |
Chicken (default), RScheme, Oaklisp, VX, Sixx, Sizzle |
- |
- |
+ |
+ |
- |
The complex-number equivalent of the preceding. |
Stalin |
- |
+ |
+ |
+ |
- |
Limited-range exact and inexact numbers. |
Scheme 7 |
- |
+ |
+ |
+ |
+ |
Limited-range exact and inexact numbers, including exact non-reals. |
Wraith |
+ |
- |
+ |
- |
- |
A good all-round compromise, providing exact integers and inexact real numbers. |
Bigloo, Scheme 9, Elk (also ISLisp) |
+ |
- |
+ |
+ |
- |
The same as the preceding, but with inexact complex numbers as well. |
SCM |
+ |
+ |
- |
- |
- |
Exact rational numbers only. Reasonable for some purposes, but will often run very slowly without inexact support, so unsuitable for scientific-type work. |
Dream, Owl Lisp |
+ |
+ |
+ |
- |
- |
Full numeric tower with real numbers only. |
Psyche, Ikarus (also Clojure) |
+ |
+ |
+ |
+ |
- |
Full numeric tower with inexact non-reals only. |
Gauche, Guile, SISC, KSi, UMB |
+ |
+ |
+ |
+ |
+ |
Full numeric tower with both exact and inexact non-reals. |
Racket, MIT, Gambit, Chicken with the numbers egg, Scheme48/scsh, Kawa, Chibi, Chez, Vicare, Ypsilon, Mosh, IronScheme, STklos (also Common Lisp) |
[These comments refer to an earlier version of this page. --cowan]
I'd prefer to couch my reply in terms of what data types are provided by an implementation. That maps pretty well onto John's four characteristics, but it seems easier for me to think about. I'll try to match my responses to John's ++-- strings.
Of the towers John lists, the following seem worth standardizing.
The others don't seem of much interest, even though some implementors have chosen among them.
Adding complex numbers to an implementation that doesn't support them can be done almost entirely as a library module, apart from issues such as read and write syntax. Similarly, adding ratios to an implementation that supports bignums again can be done almost entirely as a library module. (Proof: Chicken's numbers library, which John references.)
I therefore think that there are three defensible core towers, namely (a) ----, (b) --+-, and (c) +-+-, along with two library modules (ratios and complexes) that may or may not happen to be imported automatically. With careful design, it ought to be possible to provide reference implementations of these modules that would work on any implementation that supports bignums/ratios or inexact reals, respectively. This would allow the implementor to have his/her cake (smaller implementation, less work), and eat it (supporting a fuller tower).
I hope that the Report can be written in such a way that this smaller number of towers is either preferred or required. This maximizes code portability, while still making it possible to build small implementations. [That basically rules out bignums without flonums. --jcowan]
If the Report does allow multiple towers (which I think is a foregone conclusion), a built-in procedure with a name something like numeric-features should be required, this will allow portable code to verify that it is running on a sufficiently-capable system. numeric-features could return a list of tower criteria that the system supports. The criteria, and their symbol names, should be defined by the Report. [cond-expand now provides this at compile time rather than run time. --jcowan]