Will: thanks very much for the careful reading! It was very
helpful.
> ---
> This message is a formal comment which was submitted to formal-comment at r6rs.org, following the requirements described at: http://www.r6rs.org/process.html
> ---
> Submitter: William D Clinger
> Email address: will at ccs.neu.edu
> Issue type: Defect
> Priority: Critical
> Component: Formal Syntax
> Report version: 5.92
> Summary: the formal semantics should be a non-normative appendix
>
> Full description of issue:
>
> 1. The summary says that "Appendix 10 provides a formal
> semantics for a core of Scheme", but there is no
> appendix 10. There is only a chapter 10, giving
> the impression that chapter 10 is supposed to be
> normative.
It is fine with us to move the semantics to an appendix and
for it to be non-normative.
> 2. Chapter 10 describes a rewriting system, not a formal
> semantics.
This has now been fixed.
> 3. That rewriting system is incomplete and also contains
> several errors. If the rewriting system is taken as
> normative, then it must be completed, its errors
> repaired, and its semantic import clarified before
> the R6RS can be ratified.
You described many typos below, which have been fixed. The
two errors you found in the semantics now also fixed (modulo
a question, as below).
The places where the semantics were out of sync with the
informal spec were because we've not yet seen the final
versions of parts of the informal spec. We plan to make
another careful pass before the final version goes out. If
you have the time and the energy for another reading after
we do that, that would be very much appreciated!
> 4. The rewriting system is unnecessarily complicated,
> which reduces its usefulness.
It is our opinion that the semantics can reasonably serve
two purposes. It is a core model of Scheme that researchers
will extend some relevant subset of, when making their own
models of Scheme and simultaneously serve as a tool for
experimentation with small, but complex, Scheme programs in
order to understand their behavior.
These two goals are aligned a little bit, but do conflict,
and we appreciate the possibility that the conflicts may be
unreconcilable. The current semantics represents our best
efforts to find a happy medium.
Of course, the second goal is best served when there are
good tools that come with the semantics, so we offer
'stepper' and 'traces' two ways to visualize reduction
semantics that come with PLT Redex and can be used with our
implementation of the rules. There are some (ready to run)
in the file "show-examples.ss".
As to the specific complaints:
a) the top-level of libraries is where nearly all programs
will actually be run and it has subtle semantics, so we
deem it worthy of inclusion. It also provides a place
to put addition function definitions for Scheme
primitives that can be defined in terms of the existing
features already modeled.
b) function application is naturally thought of as
substitution, so we wanted to make that happen in the
semantics, when possible. We don't consider this an
``optimization'' except possibly in a cognitive sense.
c) one armed if is now gone.
d) we didn't yet drop multiple body expressions from a
lambda, but wouldn't mind this one going away too
(since it is easy to write a begin in, oneself).
We've recently used the semantics ourselves with some code
from Haynes/Friedman's paper _Embedding Continuations in
Procedural Objects_ (TOPLAS 1987). That experience suggests
to us that we should add in a simple form of `let' (no `let
loop') because rewriting lets out of those programs produces
code that is much harder to work with in the reduction
sequence. So, if the editor's concensus agrees with us, then
we'll probably add let to the semantics.
> I will discuss these four issues, and then proceed to a
> tediously detailed list of the errors I happened to spot
> while reading chapter 10.
Thank your for the careful reading! Specific replies below.
> Detailed list of errors
> =======================
>
> Some of these have already been reported, but it is
> easier for me to report them all. They are listed in
> order of occurrence, not in order of importance. I'm
> sure there are other errors I failed to notice.
>
> page 61, paragraph 1: there's a space between the c
> and o of "c ontext-".
Fixed.
> page 61, paragraph 2, last sentence: E[ep] should be
> E[e'].
Fixed.
> page 61, paragraph 3, second display: missing curly
> braces.
Fixed.
> page 62, section 10.1, paragraph 6, first sentence:
> "program" should be plural.
Fixed.
> page 62, bullets: the bullets omit unspecified?,
> raise*, and with-exception-handler.
Fixed.
> page 63, figure 10.2, productions for PG and G:
> these have no restriction on the number of values,
> which may be correct but looked suspect to me.
None of the contexts have restrictions on the number of
values; that's not how the system works. Instead, there are
promotion and demotion rules that only apply in certain
context, and certain rules expect either (values v ...) or
just v in order to reduce.
> page 63, figure 10.3: there are no productions for
> (dot sym) and (dot sqv). If the formal semantics
> is supposed to use the convention that those are
> equivalent to sym and sqv, it needs to say so.
That was a bug in the metafunction definition. Fixed now.
> page 63, last paragraph, first sentence: "are"
> should be "is", since it refers to "a set".
Fixed.
> page 64, last paragraph before 10.2, last sentence:
> "are" should be "is".
Fixed.
> page 64, section 10.4, first sentence: "workhorse"
> should be "workhorses".
Fixed.
> page 64, section 10.4, paragraph 1, sentence 3:
> "is relevant" should be "are relevant".
I've changed "expressions" to "expression" instead.
> boundary between pages 64 and 65: "P and E" should
> be "E and P".
Fixed.
> page 65, first full paragraph, sentence 1:
> [6xuhee] should be [6xunee].
Fixed.
> page 66, second full paragraph, sentence 3:
> "installer" should be "installed".
Fixed.
> page 67, section 10.6, paragraph 2, sentence 2:
> it is misleading to call pp an identifier, since
> the correctness of the rewriting system depends
> upon pair pointers being distinct from identifiers.
Fixed.
> page 68, figure 10.9:
> [6cons] and [6pair?t] refer to pp as an individual,
> but the last three rules refer to pp as a set. The
> last three rules are correct; [6cons] and [6pair?t]
> should refer to a subscripted pp_i.
The [6pair?t] rule is fine, actually. The intro has a
description of the semantics of subscripts.
The use of `fresh' in the [6cons] rule is a little bit
confusing, but correct. I've put an explanation in 10.2,
since that's the first time the phenomenon occurs (I also
mention it at this point and in the description of
[6appN!].)
> page 68, figure 10.10:
> [6eqt] overspecifies; for example, it says that
> (eqv? + +) is true.
I've changed `uproc' to `proc' in the side-conditions of
6eqt, 6eqf, and 6ueqv. Is that all that's required here?
> [6eqf] underspecifies; for example, it does not require
> (eqv? 3 +) to be false.
The rule as written before did require that.
In the current version of the semantics (with the uprocs
replaced by proc), this is explicitly underspecified,
falling under the province of 6ueqv in figure 16 of the
semantics.
> page 69, rule [6appN!]: refers to a mysterious bp,
> which must be fresh but is otherwise unexplained.
> This may be a typo, or bp may have been omitted
> from figure 10.1.
As above.
> page 69, rule [6unarity]: why is this an arity
> mismatch instead of a call to a non-procedure?
Because unspecified is a procedure that takes zero arguments
and returns the unspecified value (at least that was what it
did at the time I wrote this semantics. Things have changed
since, IIUC).
> page 69, right column, line 4: "picks on" should
> be "picks one".
Fixed.
> pages 69 and 70, paragraph that spans those pages:
> The two rules that have a Greek mu in their names
> do not appear in any of the figures. Presumably
> they should refer to [6app] and [6arity].
Fixed.
> page 71, section 10.7, last paragraph: the first
> sentence of that paragraph is not written in English.
Fixed.
> page 72, figure 10.14, rules [6wind] and [6dwerr]:
> both rules mandate premature arity checks. This
> is consistent with the report's prose, but the
> report's prose is apparently in error also and
> should be fixed in the next draft.
I've made a note, but I'll wait until I get the next draft
before fixing this (there will other changes, I suspect...)
> page 72, figure 10.14, typography: I think the
> script letters at the extreme left of the last 9
> lines are intended to be T, S, and R, but it's
> hard to tell because they are in a different
> script from some (but not all) of the T, S, and
> R that appear on the right hand sides of those
> equations.
Fixed.
> page 72, figure 10.14, specification of what I
> think is supposed to be T:
> the fourth of the five lines for T overlaps the
> case covered by the fifth line, creating an
> unintended ambiguity in the rewriting system.
> This is an error, since dropping the fourth line
> would not give the intended semantics. A more
> complete case dispatch is required here, alas.
I've added "otherwise" to the last three cases in the the
dynamic-wind metafunctions. Specifying the cases explicitly
is tricky and seems like it would only distract
readers. (This is also mentioned in the text.)
> page 72, figure 10.14, specification of what I
> think is supposed to be S, first equation:
> E_1 should be F_1.
No, that would certainly be wrong. For example, that would
disallow handler expressions. But disallowing dw expressions
would also be wrong.
Perhaps you have an example in mind that you think wouldn't
work?
> page 72, first full paragraph, last sentence:
> what is the point of guaranteeing that there
> is always some result to a program, since the
> rewriting system (as it stands) does not relate
> said result to any observable meaning of the
> program?
This appears to be a rhetorical question.
> page 72, section 10.9, last paragraph:
> there is no rule named [6setf].
Fixed.
> page 73, figure 10.15, rule [6setd]:
> this rule violates the letrec* restriction.
The top-level semantics were in flux when we made the
semantics; we'll fix that when I learn the correct
semantics.
> page 73, figure 10.15, rules [6refu] and [6setu]:
> what is the point (or meaning) or "format" here?
It was a typesetting-script error. Fixed now.
Robby & Jacob
Received on Wed May 09 2007 - 19:29:09 UTC