Skip to content

Commit 62d2b42

Browse files
committed
Merge branch 'rparnas-tweaks'
2 parents 66b14bf + 874694a commit 62d2b42

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

src/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*.aux
22
*.cp*
33
*.fn
4+
*.fls
45
*.ky
56
*.log
67
*.pg

src/sicp.texi

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3250,6 +3250,17 @@ linearly with the input. See @ref{Exercise 3.27}.}
32503250
@quotation
32513251
@strong{@anchor{Exercise 1.11}Exercise 1.11:} A function @math{f} is defined by
32523252
the rule that
3253+
@ifinfo
3254+
3255+
@example
3256+
/
3257+
| n if n < 3
3258+
f(n) = < f(n-1) + 2f(n-2) + 3f(n-3) if n >= 3
3259+
|
3260+
\
3261+
@end example
3262+
3263+
@end ifinfo
32533264
@tex
32543265
$$
32553266
f(n) =
@@ -24444,8 +24455,9 @@ count
2444424455
@code{actual-value} rather than @code{eval} to evaluate the operator before
2444524456
passing it to @code{apply}, in order to force the value of the operator. Give
2444624457
an example that demonstrates the need for this forcing.
24458+
@end quotation
2444724459

24448-
@noindent
24460+
@quotation
2444924461
@strong{@anchor{Exercise 4.29}Exercise 4.29:} Exhibit a program that you would
2445024462
expect to run much more slowly without memoization than with memoization.
2445124463
Also, consider the following interaction, where the @code{id} procedure is

0 commit comments

Comments
 (0)