<< Previous exercise (4.22) | Index | Next exercise (4.24) >>
This finally seems to be at least a vague reference to interpreters as iterating down a tree structure. It seems pretty clear from comparison that the version of analyze-sequence presented in the text cdrs down *two* branches of a procedure's environment for every run through its "loop" procedure, whereas Alyssa's only cdrs to the end of one possible sequence and executes. Thus its efficiency gains over the original eval grow quadratically with the complexity of the procedure it analyzes.
I think the Alyssa's version is less efficient than the text's when there are function calls. In the text's version, the analyze-sequence will return a lambda procedure like
(lambda (env)
((lambda (env) (proc1 env) (proc2 env))
env)
(proc3 env))
It's already sequentialized. When it is applied to a env argument, it will apply all the procs to the env.
In the Alyssa's version, the result would be like
(lambda (env (executive-sequence procs env)))
The sequential procedure is inside of the executive-sequence, which means there will be extra work whenever there is a function call.
I agree with poly. I think the overhead of Alyssa's version are
1. Cost of traversing the list of procedures.
2. Cost of condition checking when executing each procedure
meteorgan