Truncated history

This commit is contained in:
Igal Tabachnik 2017-09-22 21:31:49 +03:00
commit 949e20fd44
106 changed files with 81043 additions and 0 deletions

74
README.md Normal file
View File

@ -0,0 +1,74 @@
SICP
====
<img src="http://sicpebook.files.wordpress.com/2013/09/dreamsmile3.png"
alt="Par dreaming and smiling" align="right" />
<b>Direct link: [sicp.pdf](https://github.com/sarabander/sicp-pdf/raw/master/sicp.pdf)</b>
This is a PDF version of "Structure and Interpretation of Computer Programs" by Harold Abelson, Gerald Jay Sussman, and Julie Sussman. It is a further development of the [Unofficial Texinfo Format](http://www.neilvandyke.org/sicp-texi/) (UTF), which was originally derived from the [HTML version](http://mitpress.mit.edu/sicp/) at The MIT Press.
Biggest change in this revision (2.andresraba5) is the conversion to LaTeX, which opens the door to design and customization possibilities that the massive CTAN archive enables. Also, the latest typesetting engine XeTeX can be used, along with the Unicode and OpenType goodness it brings.
Source
------
*For macOS Users:* The Inconsolata LGC and Linux Libertine fonts are not included in MacTex. You need to install them separately. Download the Inconsolata LGC fonts [here](https://github.com/MihailJP/Inconsolata-LGC/downloads) and the Linux Libertine fonts [here](http://sourceforge.net/projects/linuxlibertine/files/linuxlibertine/5.3.0/LinLibertineOTF_5.3.0_2012_07_02.tgz/download). To install the fonts system-wide, move all the downloaded `.otf` files into the `/Library/Fonts` folder. After completing these tasks, continue with the instructions below.
The `src` directory contains both Texinfo and LaTeX sources. To recompile the book, go there and enter:
```bash
$ make
```
The file `preamble.tex` contains all the configuration and style declarations. Note that the LaTeX file `sicp.tex` will be generated on the fly, overwriting the previous version. To keep `sicp.texi` and `sicp.tex` in sync, I make changes to `sicp.texi,` which is already a hybrid of Texinfo and LaTeX code. This is fine, because all non-Texinfo content remains unchanged by the script.
Chances for successful compilation are increased if you have almost complete installation of recent TeX Live distribution (the pdf here is compiled with 2012 release). The needed OpenType fonts must be installed in the operating system. You also need Inkscape to recreate image PDFs from SVGs.
If compilation stops with "LaTeX Error: Too many unprocessed floats.", you could try to increase the width and height of text area in [preamble](https://github.com/sarabander/sicp-pdf/blob/master/src/preamble.tex#L70-L71). Newer TeX Live or updated fonts could result in different character metrics, so that some figures no longer fit. The problem is reported in issue [#5](https://github.com/sarabander/sicp-pdf/issues/5).
To clean up after the build:
```bash
$ make clean
```
This deletes the temporary files written during sicp.pdf creation, including sicp.pdf itself. Move it up to root directory if you want to keep it.
To remove all the generated PDFs and auxiliary files in the whole `src` tree:
```bash
$ make clean-all
```
Acknowledgements
----------------
* Lytha Ayth
* Neil Van Dyke
* Gavrie Philipson
* J. E. Johnson
* Mingshen Sun
* holomorph
* Narumi Katoh
* tfgit
* Brian Wignall
* dine2014
License
-------
The files `sicp.texi, sicp.pdf,` and diagrams in directory `src/fig` are licensed under Creative Commons Attribution-ShareAlike 4.0 International License ([cc by-sa](http://creativecommons.org/licenses/by-sa/4.0/)).
The script files `ex-fig-ref.pl, survey.rb,` and `texi-to-latex.pl` are licensed under GNU General Public License version 3 (for details, see src/LICENSE).
Sister project
--------------
A new [HTML5 version](https://github.com/sarabander/sicp) is out, bringing the advantages of adjustable font size and reflowable text to mobile reading.
Translation
-----------
There is a new [Japanese translation](https://github.com/minghai/sicp-pdf/) of the PDF by Narumi Katoh. Great to see new languages joining the collection!

3
sicp.pdf Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:08709a87567d8311d6fd29c4f4a5386801153e71450e628c4a5a5d7e85feda8b
size 7416886

23
src/.gitignore vendored Normal file
View File

@ -0,0 +1,23 @@
*.aux
*.cp*
*.fn
*.ky
*.log
*.pg
*.toc
*.tp
*.vr
*.vim
*.idx
*.ilg
*.ind
*.out
*.swp
*~
fig/chap*/Fig*.pdf
fig/icons/*_chess_queen.pdf
coverpage.pdf
sicp.tex
sicp.fdb_latexmk
exercises.tex
figures.tex

685
src/LICENSE Normal file
View File

@ -0,0 +1,685 @@
LICENSING TERMS
1. sicp.texi, sicp.pdf, and diagrams in directory 'fig' are licensed
under Creative Commons Attribution-ShareAlike 4.0 International License
(http://creativecommons.org/licenses/by-sa/4.0/).
2. The script files ex-fig-ref.pl, survey.rb, and texi-to-latex.pl
are under GNU GPL v.3:
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.

29
src/Makefile Normal file
View File

@ -0,0 +1,29 @@
# Contributed by holomorph, 2013.
# Added to by Andres Raba, 2013-2015.
FIG := $(patsubst %.svg,%.pdf,$(wildcard fig/*/*.svg))
DIR := $(shell pwd)
all: sicp.pdf
sicp.pdf: sicp.tex exercises.tex figures.tex coverpage.pdf ${FIG}
latexmk -pdflatex="xelatex %O %S" -pdf -dvi- -ps- $<; \
mv sicp.pdf ..
sicp.tex: sicp.texi preamble.tex postamble.tex texi-to-latex.pl
./texi-to-latex.pl $<
exercises.tex figures.tex: ex-fig-ref.pl
./ex-fig-ref.pl -e > exercises.tex; \
./ex-fig-ref.pl -f > figures.tex
%.pdf: %.svg
inkscape -f ${DIR}/$< -C -A ${DIR}/$@
clean:
latexmk -CA
clean-all: clean
${RM} ${FIG} sicp.tex exercises.tex figures.tex coverpage.pdf
.PHONY: all clean clean-all

BIN
src/bookwheel.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 KiB

273
src/coverpage.svg Normal file
View File

@ -0,0 +1,273 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
style="display:inline;enable-background:new"
sodipodi:docname="coverpage.svg"
inkscape:version="0.48.3.1 r9886"
version="1.1"
id="svg2"
height="853"
width="640">
<defs
id="defs4">
<filter
id="filter4141"
inkscape:label="Desaturate"
x="0"
y="0"
width="1"
height="1"
inkscape:menu="Color"
inkscape:menu-tooltip="Render in shades of gray by reducing saturation to zero"
color-interpolation-filters="sRGB">
<feColorMatrix
id="feColorMatrix4143"
type="saturate"
values="0" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#f8f8f8"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994951"
inkscape:cx="472.66589"
inkscape:cy="421.26271"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
height="1020px"
width="600px">
<inkscape:grid
type="xygrid"
id="grid4033"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="kolmjaotus"
style="display:none">
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new"
d="m 20,3 0,850"
id="path7396"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(0,-199.36211)"
style="fill:none;stroke:#000000;stroke-width:0.76005882px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new"
d="m 36.211155,202.36211 0,283.66628"
id="path7396-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(0,-199.36211)"
style="fill:none;stroke:#000000;stroke-width:0.76005882px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new"
d="m 35.714289,769.10039 0,283.66631"
id="path7396-4-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:label="tekst"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(0,-199.36211)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="397.85715"
y="278"
id="text3058"
sodipodi:linespacing="125%"
transform="translate(0,199.36211)"><tspan
sodipodi:role="line"
id="tspan3060" /></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="880.85303"
y="248.92879"
id="text3081"
sodipodi:linespacing="125%"
transform="translate(0,199.36211)"><tspan
sodipodi:role="line"
id="tspan3083" /></text>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="pilt"
style="opacity:1;display:inline"
transform="translate(0,-199.36211)">
<text
xml:space="preserve"
style="font-size:36.18788528px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Alegreya;-inkscape-font-specification:Alegreya"
x="319.11899"
y="329.89368"
id="text2985"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
x="319.11899"
y="329.89368"
style="font-size:52.5px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:110.00000238%;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
id="tspan3056"><tspan
dx="0 0 0 0 0 0 0 0"
id="tspan3091"
style="font-size:52.5px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:110.00000238%;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya">Structure and</tspan></tspan><tspan
sodipodi:role="line"
x="319.11899"
y="387.64368"
style="font-size:52.5px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:110.00000238%;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
id="tspan3267"><tspan
dx="0 0 0 0 0 0 0 0 0 0 0 0 0 0"
style="font-size:52.5px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:110.00000238%;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
id="tspan3278">Interpretation</tspan></tspan><tspan
sodipodi:role="line"
x="324.39975"
y="445.39368"
style="font-size:52.5px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:110.00000238%;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
id="tspan3288"><tspan
id="tspan3305"
style="font-size:52.50000000000000000px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:110.00000238000001218%;word-spacing:5px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya Italic">of </tspan><tspan
style="font-size:52.5px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:110.00000238%;word-spacing:5px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
dx="0 0 0 0 0 0 0 0"
id="tspan3292">Computer </tspan></tspan><tspan
sodipodi:role="line"
x="319.11899"
y="503.14368"
style="font-size:52.5px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:110.00000238%;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
dx="0 0 0 0 0 0 0 -0.50260949"
id="tspan3294">Programs</tspan></text>
<text
xml:space="preserve"
style="font-size:24.12525558px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:110.00000238%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Alegreya;-inkscape-font-specification:Alegreya"
x="218.10582"
y="901.53918"
id="text4059"
sodipodi:linespacing="140%"><tspan
sodipodi:role="line"
x="218.10582"
y="901.53918"
id="tspan4063"
style="font-size:25.20000076000000178px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:120%;word-spacing:0px;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
dx="-1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0.2 0 0 -0.2">Harold Abelson and </tspan><tspan
sodipodi:role="line"
x="218.10582"
y="929.25922"
style="font-size:25.20000076000000178px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:120%;word-spacing:0px;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
id="tspan7238"
dx="0 0 0 0 0 0 0 0 0 0 0">Gerald Jay Sussman</tspan><tspan
sodipodi:role="line"
x="218.10582"
y="956.97919"
id="tspan4069"
style="font-size:25.20000076px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:120.00000477%;word-spacing:3.77119613px;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
dx="0 0 0 0 0">with Julie Sussman </tspan><tspan
sodipodi:role="line"
x="218.10582"
y="980.34705"
style="font-size:19.89999961999999911px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:140%;word-spacing:0px;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
id="tspan7240"
dx="0 0 0 0 0 0 0 0 0">foreword by Alan J. Perlis</tspan></text>
<text
xml:space="preserve"
style="font-size:26.1356945px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:120.00000477%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Alegreya;-inkscape-font-specification:Alegreya"
x="320.07907"
y="867.31512"
id="text5884"
sodipodi:linespacing="120%"><tspan
sodipodi:role="line"
x="320.07907"
y="867.31512"
style="font-size:11.72px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:120.00000476999998966%;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
id="tspan7192"
dx="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"><tspan
dx="0 0 0 0 0 0 0 0 0 0"
dy="0 0 0 0 0 0 0 0 0 0"
id="tspan3066"
style="font-size:11.72px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:120.00000476999998966%;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"><tspan
style="font-size:11.72px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Alegreya;-inkscape-font-specification:Alegreya"
id="tspan3026"
dx="0">Unofficial Texinfo Format </tspan></tspan>2.andresraba5.6</tspan></text>
<text
xml:space="preserve"
style="font-size:26.1356945px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Alegreya;-inkscape-font-specification:Alegreya"
x="320.09695"
y="853.24207"
id="text5896"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5898"
x="320.09695"
y="853.24207"
style="font-size:27.9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;word-spacing:0px;text-anchor:middle;fill:#a02c2c;fill-opacity:1;font-family:Alegreya SC;-inkscape-font-specification:Alegreya SC"
dx="0 1.005219 1.005219 1.005219 1.005219 1.005219 0 1.005219 1.005219 1.005219 1.005219 1.005219 1.005219 1.005219">second edition</tspan></text>
<image
sodipodi:absref="/home/andres/Programmid/Texinfo/sicp-pdf/src/bookwheel.jpg"
xlink:href="bookwheel.jpg"
style="display:inline;enable-background:new"
width="208.05521"
height="301.99292"
id="image7052"
x="215.96559"
y="522.66858" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="abijooned"
style="display:none"
transform="translate(0,-199.36211)">
<path
style="fill:none;stroke:#000000;stroke-width:0.35433072;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
d="m 220.04398,162.73874 0,950.83926"
id="path3020"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.35433072;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
d="m 420.31316,162.73874 0,950.83926"
id="path3020-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.35433072;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;enable-background:new"
d="m 385,984.75497 55,0 0,-27.82143 -55,0"
id="path4185"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

65
src/ex-fig-ref.pl Executable file
View File

@ -0,0 +1,65 @@
#! /usr/bin/perl -w
#################################################
# #
# Generates tabulated cross references #
# pointing to all exercises or figures in SICP. #
# Usage: ./ex-fig-ref.pl -e > exercises.tex #
# or ./ex-fig-ref.pl -f > figures.tex #
# (both of which will be read in by sicp.tex). #
# #
# © 2013 Andres Raba / License: GNU GPL v.3 #
# #
#################################################
$columns = 10; # no. of columns in the table
%ex_per_chap = ( # how many exercises per chapter
1 => 46,
2 => 97,
3 => 82,
4 => 79,
5 => 52
);
%fig_per_chap = ( # how many figures per chapter
1 => 5,
2 => 26,
3 => 38,
4 => 6,
5 => 18
);
if (defined($ARGV[0]) and $ARGV[0] eq "-e") {
$reftype = "Exercise";
%ref_per_chap = %ex_per_chap;
} elsif (defined($ARGV[0]) and $ARGV[0] eq "-f") {
$reftype = "Figure";
%ref_per_chap = %fig_per_chap;
} else {
print "Choose '-e' for list of exercises or '-f' for list of figures.\n";
}
foreach $chap_no (sort keys(%ref_per_chap)) {
print "\\subsubsection*\{Chapter $chap_no\} \n\n";
print "\\begin\{tabular\}\{" . 'l' x $columns . "\}\n";
for ($ref_no = 1; $ref_no <= $ref_per_chap{$chap_no}; $ref_no++) {
if ($ref_no != 1 and (($ref_no - 1) % $columns) == 0) {
print "\n\\\\ \n";
}
print "\\hyperref[$reftype $chap_no.$ref_no]{$chap_no.$ref_no}";
if (($ref_no % $columns) != 0) {
print " \&\n";
}
}
print "\\end\{tabular\} \n\n";
}

493
src/fig/chap1/Fig1.1g.svg Normal file
View File

@ -0,0 +1,493 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="307.34595"
height="309.52383"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
style="display:inline"
sodipodi:docname="Fig1.1g.svg">
<title
id="title4043">SICP Figure 1.1</title>
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
id="path3842"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="220.35691"
inkscape:cy="155.63545"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:snap-global="true"
showguides="true"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3909"
originx="-147.50545px"
originy="-594.52084px" />
</sodipodi:namedview>
<metadata
id="metadata_1.1">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 1.1</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-10.html#%_fig_1.1</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>tree</rdf:li>
<rdf:li>accumulation</rdf:li>
<rdf:li>node</rdf:li>
<rdf:li>branch</rdf:li>
<rdf:li>terminal</rdf:li>
<rdf:li>operator</rdf:li>
<rdf:li>operand</rdf:li>
<rdf:li>multiplication</rdf:li>
<rdf:li>addition</rdf:li>
<rdf:li>combination</rdf:li>
<rdf:li>subcombination</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-147.50545,-148.31749)">
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="513.57141"
y="283.07648"
id="text3021"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3023"
x="513.57141"
y="283.07648" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New"
x="405.71429"
y="258.79074"
id="text3025"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3027"
x="405.71429"
y="258.79074" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono"
x="425"
y="258.79074"
id="text3029"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3031"
x="425"
y="258.79074" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:FreeMono;-inkscape-font-specification:FreeMono"
x="432.14285"
y="250.93361"
id="text3033"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3035"
x="432.14285"
y="250.93361" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:FreeMono;-inkscape-font-specification:FreeMono"
x="422.85715"
y="254.50504"
id="text3037"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3039"
x="422.85715"
y="254.50504" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Liberation Mono;-inkscape-font-specification:Liberation Mono"
x="420.71429"
y="258.79074"
id="text3041"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3043"
x="420.71429"
y="258.79074"
style="font-size:22px" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Liberation Mono;-inkscape-font-specification:Liberation Mono"
x="235"
y="259.50504"
id="text3045"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3047"
x="235"
y="259.50504"
style="font-size:22px" /></text>
<text
xml:space="preserve"
style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Liberation Mono;-inkscape-font-specification:Liberation Mono"
x="281.42856"
y="347.36218"
id="text3049"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3051"
x="281.42856"
y="347.36218" /></text>
<text
xml:space="preserve"
style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="285"
y="258.07648"
id="text3053"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3055"
x="285"
y="258.07648"
style="font-size:24px" /></text>
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="473.57144"
y="380.93362"
id="text3057"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3059"
x="473.57144"
y="380.93362" /></text>
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="397.14285"
y="221.6479"
id="text3061"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3063"
x="397.14285"
y="221.6479" /></text>
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="420.71429"
y="396.64789"
id="text3065"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3067"
x="420.71429"
y="396.64789" /></text>
<flowRoot
xml:space="preserve"
id="flowRoot3073"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"><flowRegion
id="flowRegion3075"><rect
id="rect3077"
width="88.571426"
height="63.57143"
x="492.85715"
y="255.93361" /></flowRegion><flowPara
id="flowPara3079" /></flowRoot> <path
style="fill:none;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 155,237.36218 c 4,-25 15,-45 35,-60 7,19 9,40 10,60"
id="path3911"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 190,177.36218 c 110,0 175,15 190,60"
id="path3913"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 170,334.50508 c 4,-25 15,-45 32,-60 3,20 3,41.96429 3,60"
id="path3915"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 202,274.50508 c 23,8 41,32 48,60"
id="path3917"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 337,364.50508 c 2,-35 16,-70 45,-90 -8,30 -10,60 -10,90"
id="path3919"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-mid:none"
d="m 412,364.50508 c -3,-35 -12,-65 -30,-90 40,15 62,55 65,90"
id="path3921"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 220,427.36227 c 5,-25 17,-45 32,-55 2,20 3,37 3,55"
id="path3923"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 252,372.36227 c 23,10 36,27 43,55"
id="path3925"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="Text"
style="display:inline"
transform="translate(-147.50545,-148.31749)">
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="364.42853"
y="267.15308"
id="text3081"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3083"
x="364.42853"
y="267.15308"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">15</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="183.71432"
y="266.94385"
id="text3089"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3091"
x="183.71432"
y="266.94385"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">26</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="232.28577"
y="364.50522"
id="text3093"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3095"
x="232.28577"
y="364.50522"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">24</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="196.4286"
y="364.50522"
id="text3097"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3099"
x="196.4286"
y="364.50522"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">2</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="164.28577"
y="168.72949"
id="text3101"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3103"
x="164.28577"
y="168.72949"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">390</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="440.57141"
y="394.36237"
id="text3105"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3107"
x="440.57141"
y="394.36237"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">7</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="403.85712"
y="394.71948"
id="text3109"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3111"
x="403.85712"
y="394.71948"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">5</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="363.85712"
y="394.71951"
id="text3113"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3115"
x="363.85712"
y="394.71951"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">3</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="287.14282"
y="457.50534"
id="text3117"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3119"
x="287.14282"
y="457.50534"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">6</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="246.85716"
y="457.50531"
id="text3121"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3123"
x="246.85716"
y="457.50531"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">4</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="160.85716"
y="363.72705"
id="text3125"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3127"
x="160.85716"
y="363.72705"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">+</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="211.07143"
y="454.02313"
id="text3129"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3131"
x="211.07143"
y="454.02313"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="4">*</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="145.88145"
y="263.30865"
id="text3133"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3135"
x="145.88145"
y="263.30865"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="4">*</tspan></text>
<text
xml:space="preserve"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="327.85712"
y="393.71954"
id="text3137"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3139"
x="327.85712"
y="393.71954"
style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">+</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

95
src/fig/chap1/Fig1.2.svg Normal file
View File

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="372.34161"
height="201.24001"
id="svg3165"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig1.2.svg">
<defs
id="defs3167" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="290.71429"
inkscape:cy="84.47299"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata3170">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-85.714287,-78.755322)">
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="85.714287"
y="95.219322"
id="text3173"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3175"
x="85.714287"
y="95.219322"> sqrt</tspan><tspan
sodipodi:role="line"
x="85.714287"
y="125.21932"
id="tspan3177"> |</tspan><tspan
sodipodi:role="line"
x="85.714287"
y="155.21933"
id="tspan3179"> sqrt-iter</tspan><tspan
sodipodi:role="line"
x="85.714287"
y="185.21933"
id="tspan3181"> / \</tspan><tspan
sodipodi:role="line"
x="85.714287"
y="215.21933"
id="tspan3183"> good-enough improve</tspan><tspan
sodipodi:role="line"
x="85.714287"
y="245.21933"
id="tspan3185"> / \ \</tspan><tspan
sodipodi:role="line"
x="85.714287"
y="275.21933"
id="tspan3187">square abs average</tspan><tspan
sodipodi:role="line"
x="85.714287"
y="305.21933"
id="tspan3189" /></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

304
src/fig/chap1/Fig1.3c.svg Normal file
View File

@ -0,0 +1,304 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="578.8866"
height="345.82001"
id="svg4079"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig1.3c.svg">
<defs
id="defs4081">
<marker
inkscape:stockid="EmptyTriangleOutL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleOutL"
style="overflow:visible">
<path
id="path4792"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,-4.8,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Tail"
orient="auto"
refY="0"
refX="0"
id="Tail"
style="overflow:visible">
<g
id="g4667"
transform="scale(-1.2,-1.2)">
<path
id="path4669"
d="M -3.8048674,-3.9585227 0.54352094,0"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;marker-start:none;marker-end:none"
inkscape:connector-curvature="0" />
<path
id="path4671"
d="M -1.2866832,-3.9585227 3.0617053,0"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;marker-start:none;marker-end:none"
inkscape:connector-curvature="0" />
<path
id="path4673"
d="M 1.3053582,-3.9585227 5.6537466,0"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;marker-start:none;marker-end:none"
inkscape:connector-curvature="0" />
<path
id="path4675"
d="M -3.8048674,4.1775838 0.54352094,0.21974226"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;marker-start:none;marker-end:none"
inkscape:connector-curvature="0" />
<path
id="path4677"
d="M -1.2866832,4.1775838 3.0617053,0.21974226"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;marker-start:none;marker-end:none"
inkscape:connector-curvature="0" />
<path
id="path4679"
d="M 1.3053582,4.1775838 5.6537466,0.21974226"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;marker-start:none;marker-end:none"
inkscape:connector-curvature="0" />
</g>
</marker>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path4649"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path4631"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible">
<path
id="path4634"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend"
style="overflow:visible">
<path
id="path4652"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="321.25993"
inkscape:cy="179.82077"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:snap-global="true"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4116"
originx="-81.822048px"
originy="-630.37507px" />
</sodipodi:namedview>
<metadata
id="metadata_1.3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 1.3</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-11.html#%_fig_1.3</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>factorial</rdf:li>
<rdf:li>linear</rdf:li>
<rdf:li>recursive</rdf:li>
<rdf:li>process</rdf:li>
<rdf:li>deferred</rdf:li>
<rdf:li>operation</rdf:li>
<rdf:li>substitution</rdf:li>
<rdf:li>model</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Text"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(-81.822048,-76.167115)">
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="79.802048"
y="91.707115"
id="text4087"
sodipodi:linespacing="150%"><tspan
sodipodi:role="line"
id="tspan4089"
x="79.802048"
y="91.707115"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">(factorial 6)</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="121.70712"
id="tspan4091"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0 0 0">(* 6 (factorial 5))</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="151.70712"
id="tspan4093"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0 0 0 0 0 0 0 0">(* 6 (* 5 (factorial 4)))</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="181.70712"
id="tspan4095"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0 0 0 0 0 0 0 0 0 0 0 0 0">(* 6 (* 5 (* 4 (factorial 3))))</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="211.70712"
id="tspan4097"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0">(* 6 (* 5 (* 4 (* 3 (factorial 2)))))</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="241.70712"
id="tspan4099"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0">(* 6 (* 5 (* 4 (* 3 (* 2 (factorial 1))))))</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="271.70712"
id="tspan4101"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0">(* 6 (* 5 (* 4 (* 3 (* 2 1)))))</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="301.70712"
id="tspan4103"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0">(* 6 (* 5 (* 4 (* 3 2))))</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="331.70712"
id="tspan4105"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0 0 0 0 0 0 0 0 0 0 0 0 0">(* 6 (* 5 (* 4 6)))</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="361.70712"
id="tspan4107"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0 0 0 0 0 0 0 0">(* 6 (* 5 24))</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="391.70712"
id="tspan4109"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0 0 0">(* 6 120)</tspan><tspan
sodipodi:role="line"
x="79.802048"
y="421.70712"
id="tspan4111"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">720 </tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Lines"
style="display:inline"
transform="translate(-81.822048,-76.167115)">
<path
style="fill:none;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#EmptyTriangleOutL);marker-end:url(#EmptyTriangleOutL)"
d="m 280,84.362183 25,0 c 20,0 35,5 45.625,8.125 96.25,37.916667 183.125,71.958327 279.375,109.874997 25,10 30,20 30,35 0,15 -5,26.51523 -30,35 -131.25,43.75 -260.625,88.875 -391.875,132.625 -23.125,7.375 -40.86142,9.375 -63.125,9.375 l -35,0"
id="path4118"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

196
src/fig/chap1/Fig1.4c.svg Normal file
View File

@ -0,0 +1,196 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="257.92722"
height="255.82001"
id="svg7997"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig1.4c.svg">
<defs
id="defs7999">
<marker
inkscape:stockid="EmptyTriangleOutL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleOutL"
style="overflow:visible">
<path
id="path4792"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,-4.8,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL"
style="overflow:visible">
<path
id="path4783"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="174.05466"
inkscape:cy="132.41616"
inkscape:document-units="px"
inkscape:current-layer="layer4"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid8025"
originx="-77.781444px"
originy="-723.38522px" />
</sodipodi:namedview>
<metadata
id="metadata_1.4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 1.4</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-11.html#%_fig_1.4</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>factorial</rdf:li>
<rdf:li>fact-iter</rdf:li>
<rdf:li>linear</rdf:li>
<rdf:li>iterative</rdf:li>
<rdf:li>process</rdf:li>
<rdf:li>state</rdf:li>
<rdf:li>variable</rdf:li>
<rdf:li>substitution</rdf:li>
<rdf:li>model</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Text"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(-77.781444,-73.15696)">
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="75.761444"
y="88.69696"
id="text8005"
sodipodi:linespacing="150%"><tspan
sodipodi:role="line"
id="tspan8007"
x="75.761444"
y="88.69696"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">(factorial 6)</tspan><tspan
sodipodi:role="line"
x="75.761444"
y="118.69696"
id="tspan8009"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dy="0">(fact-iter 1 1 6)</tspan><tspan
sodipodi:role="line"
x="75.761444"
y="148.69696"
id="tspan8011"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">(fact-iter 1 2 6)</tspan><tspan
sodipodi:role="line"
x="75.761444"
y="178.69696"
id="tspan8013"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">(fact-iter 2 3 6)</tspan><tspan
sodipodi:role="line"
x="75.761444"
y="208.69696"
id="tspan8015"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">(fact-iter 6 4 6)</tspan><tspan
sodipodi:role="line"
x="75.761444"
y="238.69696"
id="tspan8017"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">(fact-iter 24 5 6)</tspan><tspan
sodipodi:role="line"
x="75.761444"
y="268.69696"
id="tspan8019"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">(fact-iter 120 6 6)</tspan><tspan
sodipodi:role="line"
x="75.761444"
y="298.69696"
id="tspan8021"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">(fact-iter 720 7 6)</tspan><tspan
sodipodi:role="line"
x="75.761444"
y="328.69696"
id="tspan8023"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">720</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-77.781444,-73.15696)">
<path
style="fill:none;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#EmptyTriangleOutL);marker-end:url(#EmptyTriangleOutL)"
d="m 270,82.362183 40,0 c 20,0 25,5 25,24.999997 0,40 0,150 0,190 0,20 -5,25 -25,25 l -180,0"
id="path8028"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.1 KiB

569
src/fig/chap1/Fig1.5c.svg Normal file
View File

@ -0,0 +1,569 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="351.27396"
height="219.23442"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig1.5c.svg"
style="display:inline">
<defs
id="defs4">
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL"
style="overflow:visible">
<path
id="path3954"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="EmptyTriangleOutL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleOutL"
style="overflow:visible">
<path
id="path3963"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,-4.8,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="EmptyTriangleOutM"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleOutM"
style="overflow:visible">
<path
id="path3966"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,-1.8,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-0"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-9"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-66"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-1"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-5"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-7"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-13"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-96"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-81"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-75"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-77"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-3"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-89"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-39"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-07"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-6"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
<marker
inkscape:stockid="EmptyTriangleInL"
orient="auto"
refY="0"
refX="0"
id="EmptyTriangleInL-82"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3954-53"
d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,4.8,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="203.92165"
inkscape:cy="107.96912"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4204"
originx="843.49721px"
originy="-791.3839px" />
</sodipodi:namedview>
<metadata
id="metadata_1.5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 1.5</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-11.html#%_fig_1.5</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>fib</rdf:li>
<rdf:li>Fibonacci</rdf:li>
<rdf:li>number</rdf:li>
<rdf:li>sequence</rdf:li>
<rdf:li>tree</rdf:li>
<rdf:li>recursion</rdf:li>
<rdf:li>process</rdf:li>
<rdf:li>branch</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Text"
style="display:inline"
transform="translate(843.49721,-41.743855)">
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="-837.03162"
y="50.290855"
id="text4148"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4150"
x="-837.03162"
y="50.290855"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dx="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.4000001 0 0 3"> fib5</tspan><tspan
sodipodi:role="line"
x="-837.03162"
y="64.040855"
id="tspan4152"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC" /><tspan
sodipodi:role="line"
x="-837.03162"
y="77.790855"
id="tspan4154"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC" /><tspan
sodipodi:role="line"
x="-837.03162"
y="91.540855"
id="tspan4156"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dx="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 3 -4.999999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 3"> fib4 fib3</tspan><tspan
sodipodi:role="line"
x="-837.03162"
y="105.29086"
id="tspan4158"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC" /><tspan
sodipodi:role="line"
x="-837.03162"
y="119.04086"
id="tspan4160"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC" /><tspan
sodipodi:role="line"
x="-837.03162"
y="132.79086"
id="tspan4162"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dx="0 0 0 0 0 0 0 0 -2.5 0 0 3 -0.5 0 0 0 0 0 0 0 0 0 2 0 0 3 -5 0 0 0 0 0 0 0 0 0 1 0 0 3 -4 0 0 0 0 0 0 -1.3 0 0 3"> fib3 fib2 fib2 fib1</tspan><tspan
sodipodi:role="line"
x="-837.03162"
y="146.54086"
id="tspan4166"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC" /><tspan
sodipodi:role="line"
x="-837.03162"
y="160.29086"
id="tspan4200"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dx="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.7"> 1</tspan><tspan
sodipodi:role="line"
x="-837.03162"
y="174.04086"
id="tspan4172"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dx="0 0 0 3 0 0 3 -6 0 0 0 3.2 0 0 3 -6.1999998 0 0 3 0 0 3 -6 0 0 2 0 0 3 -5 0 0 1.5 0 0 3 -4.5 0 0 0 -1 0 0 3"> fib2 fib1 fib1 fib0 fib1 fib0</tspan><tspan
sodipodi:role="line"
x="-837.03162"
y="187.79086"
id="tspan4196"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC" /><tspan
sodipodi:role="line"
x="-837.03162"
y="201.54086"
id="tspan4192"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dx="0 0 0 0 0 0 0 0 0 0 0 0 0 1.7 -1.7 0 0 0 0 0 1.4 -1.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.3"> 1 1 0 1 0</tspan><tspan
sodipodi:role="line"
x="-837.03162"
y="215.29086"
id="tspan4174"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dx="-3 0 0 3 0 0 0 -4 0 0 3">fib1 fib0</tspan><tspan
sodipodi:role="line"
x="-837.03162"
y="229.04086"
id="tspan4178"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC" /><tspan
sodipodi:role="line"
x="-837.03162"
y="242.79086"
id="tspan4182"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dx="0 1.9 -1.9 0 0 0 0 0 0.80000001"> 1 0</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Lines"
style="display:inline"
transform="translate(843.49721,-41.743855)">
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -799.385,160.7982 c 4.60351,-13.8105 20.91743,-11.50875 27.82268,-23.01738 6.90513,11.50863 23.01739,9.20688 25.31913,23.01738"
id="path5042"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -700.20831,160.7982 c 4.60349,-13.8105 18.41389,-11.50875 25.31913,-23.01738 6.90525,11.50863 18.414,9.20688 20.71574,23.01738"
id="path5044"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -608.1386,160.7982 c 4.60343,-13.8105 18.41393,-11.50875 25.31918,-23.01738 6.90525,11.50863 20.71564,9.20688 25.31914,23.01738"
id="path5046"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -824.50245,202.22958 c 4.6035,-13.8105 18.41397,-11.50876 25.31912,-23.01747 4.60351,11.50871 17.11359,9.20697 19.41533,23.01747"
id="path5048"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -720.92405,77.935431 c 9.207,-18.413948 78.25926,-6.905232 87.46626,-23.017432 9.20699,16.1122 78.25925,4.603484 87.46626,23.017432"
id="path4206"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -771.56232,119.36682 c 9.20688,-18.41398 41.43137,-6.90525 50.63827,-23.017402 9.207,16.112152 36.82788,4.603422 46.03487,23.017402"
id="path4976"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -582.81942,119.36682 c 9.207,-18.41398 27.62088,-6.90525 36.82789,-23.017402 9.20699,16.112152 24.42053,4.603422 33.62753,23.017402"
id="path4978"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -745.78286,179.21211 0,9.20697"
id="path4980-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -699.74798,179.21211 0,9.20697"
id="path4980-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -654.63382,179.21211 0,9.20697"
id="path4980-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -608.599,179.21211 0,9.20697"
id="path4980-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -557.96061,179.21211 0,9.20697"
id="path4980-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -511.92573,137.78082 0,9.20688"
id="path4980"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -824.96278,220.64346 0,9.207"
id="path4980-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5669291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m -779.84867,220.64346 0,9.207"
id="path4980-24"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Arrows"
style="display:inline"
transform="translate(843.49721,-41.743855)">
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 1.48108172;stroke-dashoffset:0;display:inline"
d="m -655.94947,47.004837 c 0,0 -59.72179,12.654006 -78.95447,23.221897 -19.23267,10.567895 -25.13751,21.267626 -37.15504,32.510666 -9.59272,8.97449 -19.81744,17.48464 -27.86626,27.86627 -8.26288,10.65773 -13.14394,27.47991 -20.66313,38.93479 -7.51919,11.45487 -17.67651,17.54242 -20.49191,30.7309 -3.90332,18.28468 -2.96659,44.12161 6.32217,55.73256 3.86844,4.83553 13.72166,3.84288 18.57753,0 16.21547,-12.83275 2.3651,-60.16466 14.25534,-60.37693 12.64314,-0.22571 -2.50159,47.49235 13.61093,60.37693 4.23179,3.384 11.83141,3.12866 16.25533,0 9.38406,-6.63655 10.33159,-24.24682 11.48898,-32.51065 1.15739,-8.26383 0.49796,-11.06492 -1.1,-16.25535 -3.43115,-11.14495 -15.26759,-18.77907 -17.67773,-30.18845 -1.61018,-7.62245 -4.95295,-21.4971 2.64438,-23.22191 5.32548,-1.20903 8.7756,5.38497 9.93314,9.28877 1.97295,12.54782 5.41567,23.89695 8.96656,34.83285 2.24645,6.97393 3.21223,14.67073 8.96657,18.25534 3.28506,2.0464 8.35975,2.09977 11.61095,0 6.25292,-4.03842 8.43716,-19.91589 9.28877,-29.86629 0.66007,-7.71244 2.96221,-16.07049 0,-23.2219 -4.18922,-10.11361 -19.03271,-13.10827 -23.22192,-23.22189 -2.07353,-5.00599 -2.42319,-11.40894 0,-16.25535 2.3222,-4.64437 13.93315,-9.28874 30.18849,-9.28874 8.65429,0 18.67205,4.24915 23.2219,11.61094 2.44169,3.95075 1.49969,9.53756 0,13.93315 -3.15803,9.2562 -15.56105,13.73381 -17.93315,23.22189 -4.18908,16.75574 -4.54785,39.94063 8.64439,51.08819 4.1387,3.49724 12.00381,3.35919 16.25533,0 16.23156,-12.8248 3.27931,-60.37696 14.35532,-60.37696 8.58793,0 2.06628,20.89972 3.691,32.13518 1.37119,9.48221 3.58418,22.60576 12.14214,28.24178 3.71781,2.44844 9.44813,3.02189 13.35486,0 7.76961,-6.00985 8.62638,-17.03219 10.389,-26.28799 2.1257,-11.16239 2.90248,-23.10293 0,-34.08897 -4.09309,-15.49258 -12.65355,-30.23314 -23.74386,-41.79941 -10.10811,-10.54192 -37.15503,-8.61691 -37.15503,-23.2219 0,-18.577516 48.76598,-4.644374 65.02131,-20.899707 16.25533,16.255333 65.02132,0 65.02132,20.899707 0,13.83373 -15.48645,15.73647 -27.86628,23.2219 -12.55778,7.59301 -24.83633,20.78372 -28.34446,37.15504 -2.42674,11.32476 -3.6054,23.25614 -2,34.74554 1.47885,10.58373 1.83393,24.08551 10.545,30.27579 4.11786,2.92624 10.8312,3.26551 15.15508,0 19.04906,-14.3865 1.21637,-60.37696 16.87792,-60.37696 13.91395,0 1.84552,46.30337 18.27712,58.37696 4.36645,3.20837 11.97252,4.32275 16.25532,0 5.11099,-5.15866 7.95793,-13.61555 9.28877,-21.22191 1.73809,-9.93398 1.17572,-20.61665 -2,-30.18847 -3.77487,-11.3777 -19.23012,-18.20502 -19.54409,-30.18847 -0.28014,-10.69214 5.1159,-18.07899 12.57752,-18.57752 8.28106,-0.55328 16.17158,5.32291 16.57752,18.57752 0.48013,15.67687 4.70229,32.45403 13.28875,41.79941 3.66598,3.99 13.05446,4.37195 16.25534,0 7.98037,-10.90003 11.38026,-30.28453 9.28876,-46.44379 -1.82314,-14.08587 -20.58163,-20.13085 -27.5441,-32.510656 -2.39982,-4.267063 -1.78187,-9.961619 -4.64438,-13.933142 -4.52603,-6.279529 -11.64014,-10.499453 -18.57752,-13.933141 -20.38711,-10.090698 -65.66569,-18.577514 -65.66569,-18.577514"
id="path5050"
inkscape:connector-curvature="0"
sodipodi:nodetypes="szassssasaasaasccassaassaaaaassasaaascsssaassasaasassssaaac" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 11.84865369;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -653.47406,46.498881 c -6.17624,1.422442 -5.94585,1.378289 -5.94585,1.378289"
id="path4615-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -766.93747,97.317198 c -4.1331,4.804842 -3.97365,4.632792 -3.97365,4.632792"
id="path4615-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -829.82911,258.99124 c 6.33357,-0.23458 6.09899,-0.23458 6.09899,-0.23458"
id="path4615-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -762.09842,236.71038 c 0.63577,-6.30594 0.60365,-6.07357 0.60365,-6.07357"
id="path4615-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -726.77599,114.53799 c 6.32928,-0.33067 6.09473,-0.3271 6.09473,-0.3271"
id="path4615-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -701.37831,216.76745 c 6.33358,-0.23458 6.09898,-0.23458 6.09898,-0.23458"
id="path4615-37"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -651.56573,122.32522 c -3.96789,-4.94215 -3.82791,-4.75389 -3.82791,-4.75389"
id="path4615-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -602.57639,76.312738 c 6.33064,0.303557 6.09691,0.28365 6.09691,0.28365"
id="path4615-38"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -591.0064,191.32141 c 0.48126,-6.31962 0.4548,-6.08654 0.4548,-6.08654"
id="path4615-46"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -551.69038,112.47516 c 6.33357,-0.23457 6.09899,-0.23457 6.09899,-0.23457"
id="path4615-66"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -521.44964,91.466389 c -1.41562,-6.177802 -1.37172,-5.947366 -1.37172,-5.947366"
id="path4615-68"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.49369389;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.49369391, 5.92432684;stroke-dashoffset:0;marker-end:url(#EmptyTriangleInL);display:inline"
d="m -607.84457,47.187815 c -6.29859,-0.704751 -6.06659,-0.670057 -6.06659,-0.670057"
id="path4615-7"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

289
src/fig/chap2/Fig2.10.svg Normal file
View File

@ -0,0 +1,289 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="593.85712"
height="640.6405"
id="svg3098"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.10.svg"
inkscape:export-filename="/home/andres/SICP-Texinfo/utopia8/fig/chap2/Fig2.9-smaller.png"
inkscape:export-xdpi="25"
inkscape:export-ydpi="25"
style="display:inline">
<defs
id="defs3100" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="658.89413"
inkscape:cy="239.33326"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid3106"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-57.778053px"
originy="-337.83442px" />
</sodipodi:namedview>
<metadata
id="metadata_2.10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.10</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.10</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>wave</rdf:li>
<rdf:li>painter</rdf:li>
<rdf:li>frame</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Drawing"
style="display:inline"
transform="translate(-57.778053,-73.887291)">
<g
transform="translate(140.00005,-59.999972)"
id="g20088-0" />
<g
id="g65857">
<g
transform="matrix(1,0,0,0.96975243,1255,-176.92209)"
id="g21974-0">
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,372.36218 c 0,0 15.1753,45.4316 35,50 16.7212,3.85322 25,-30 45,-25 11.4332,2.85831 5.2834,23.21829 5,35 -1.061,44.11458 -25,130 -25,130"
id="path9780-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,342.36218 c 0,0 19.9867,43.50206 40,45 12.9808,0.97158 19.2503,-19.62516 30,-25 20,-10 24.3937,8.28067 30,0 10.0636,-14.86426 -20,-32.04945 -20,-50 0,-17.95055 20,-50 20,-50"
id="path9782-73"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casaac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1060,262.36218 c 0,0 19.201,32.06724 20,50 0.7745,17.38327 -25.3869,36.03969 -15,50 6.9642,9.36008 15,-10 35,0 28.28427,14.14213 70,90 70,90"
id="path9784-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caasc" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -950,482.36218 c 0,0 -50,-90 -85,-85 -11.6667,1.66667 -5.7131,23.23648 -5,35 2.7155,44.79414 35,130 35,130"
id="path9786-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1100,562.36218 c 0,0 10,-90 30,-90 20,0 35,90 35,90"
id="path9788-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
</g>
<rect
y="78.138878"
x="60"
height="294.2233"
width="243.64734"
id="rect65782"
style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.08661417, 7.08661417;stroke-dashoffset:0" />
</g>
<g
id="g65839"
transform="matrix(0.5000006,0,0,1,29.557051,-20)">
<g
transform="matrix(1,0,0,0.96975243,1252.1429,185.64033)"
id="g21974-0-3">
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,372.36218 c 0,0 15.1753,45.4316 35,50 16.7212,3.85322 25,-30 45,-25 11.4332,2.85831 5.2834,23.21829 5,35 -1.061,44.11458 -25,130 -25,130"
id="path9780-1-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,342.36218 c 0,0 19.9867,43.50206 40,45 12.9808,0.97158 19.2503,-19.62516 30,-25 20,-10 24.3937,8.28067 30,0 10.0636,-14.86426 -20,-32.04945 -20,-50 0,-17.95055 20,-50 20,-50"
id="path9782-73-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casaac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1060,262.36218 c 0,0 19.201,32.06724 20,50 0.7745,17.38327 -25.3869,36.03969 -15,50 6.9642,9.36008 15,-10 35,0 28.28427,14.14213 70,90 70,90"
id="path9784-5-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caasc" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -950,482.36218 c 0,0 -50,-90 -85,-85 -11.6667,1.66667 -5.7131,23.23648 -5,35 2.7155,44.79414 35,130 35,130"
id="path9786-2-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1100,562.36218 c 0,0 10,-90 30,-90 20,0 35,90 35,90"
id="path9788-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
</g>
<rect
y="438.13889"
x="60"
height="294.2233"
width="243.64734"
id="rect65782-8"
style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.08661417, 7.08661417;stroke-dashoffset:0" />
</g>
<g
id="g65848"
transform="matrix(1,0,0,0.49999944,20,346.1815)">
<g
transform="matrix(1,0,0,0.96975243,1552.1429,185.64029)"
id="g21974-0-6">
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,372.36218 c 0,0 15.1753,45.4316 35,50 16.7212,3.85322 25,-30 45,-25 11.4332,2.85831 5.2834,23.21829 5,35 -1.061,44.11458 -25,130 -25,130"
id="path9780-1-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,342.36218 c 0,0 19.9867,43.50206 40,45 12.9808,0.97158 19.2503,-19.62516 30,-25 20,-10 24.3937,8.28067 30,0 10.0636,-14.86426 -20,-32.04945 -20,-50 0,-17.95055 20,-50 20,-50"
id="path9782-73-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casaac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1060,262.36218 c 0,0 19.201,32.06724 20,50 0.7745,17.38327 -25.3869,36.03969 -15,50 6.9642,9.36008 15,-10 35,0 28.28427,14.14213 70,90 70,90"
id="path9784-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caasc" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -950,482.36218 c 0,0 -50,-90 -85,-85 -11.6667,1.66667 -5.7131,23.23648 -5,35 2.7155,44.79414 35,130 35,130"
id="path9786-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1100,562.36218 c 0,0 10,-90 30,-90 20,0 35,90 35,90"
id="path9788-0-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
</g>
<rect
y="438.13885"
x="360"
height="294.2233"
width="243.64734"
id="rect65782-5"
style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.08661417, 7.08661417;stroke-dashoffset:0" />
</g>
<g
transform="matrix(0.76981104,-0.28018713,-0.28018713,0.76981104,438.14243,102.52489)"
id="g65857-2">
<g
transform="matrix(1,0,0,0.96975243,1255,-176.92209)"
id="g21974-0-1">
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,372.36218 c 0,0 15.1753,45.4316 35,50 16.7212,3.85322 25,-30 45,-25 11.4332,2.85831 5.2834,23.21829 5,35 -1.061,44.11458 -25,130 -25,130"
id="path9780-1-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,342.36218 c 0,0 19.9867,43.50206 40,45 12.9808,0.97158 19.2503,-19.62516 30,-25 20,-10 24.3937,8.28067 30,0 10.0636,-14.86426 -20,-32.04945 -20,-50 0,-17.95055 20,-50 20,-50"
id="path9782-73-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casaac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1060,262.36218 c 0,0 19.201,32.06724 20,50 0.7745,17.38327 -25.3869,36.03969 -15,50 6.9642,9.36008 15,-10 35,0 28.28427,14.14213 70,90 70,90"
id="path9784-5-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caasc" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -950,482.36218 c 0,0 -50,-90 -85,-85 -11.6667,1.66667 -5.7131,23.23648 -5,35 2.7155,44.79414 35,130 35,130"
id="path9786-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1100,562.36218 c 0,0 10,-90 30,-90 20,0 35,90 35,90"
id="path9788-0-94"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
</g>
<rect
y="78.138878"
x="60"
height="294.2233"
width="243.64734"
id="rect65782-52"
style="fill:none;stroke:#000000;stroke-width:1.77165353;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.08661417, 7.08661417;stroke-dashoffset:0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

144
src/fig/chap2/Fig2.11.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 89 KiB

328
src/fig/chap2/Fig2.12.svg Normal file
View File

@ -0,0 +1,328 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="620.276"
height="298.17374"
id="svg66402"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.12.svg">
<defs
id="defs66404" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="333.94871"
inkscape:cy="152.08776"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid66410"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-55.84102px"
originy="-699.94996px" />
</sodipodi:namedview>
<metadata
id="metadata_2.12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.12</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.12</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>wave</rdf:li>
<rdf:li>wave2</rdf:li>
<rdf:li>wave4</rdf:li>
<rdf:li>painter</rdf:li>
<rdf:li>complex</rdf:li>
<rdf:li>figure</rdf:li>
<rdf:li>beside</rdf:li>
<rdf:li>below</rdf:li>
<rdf:li>flip-vert</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Drawing"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(-55.84102,-54.238477)">
<g
id="g66478">
<g
transform="matrix(0.50000008,0,0,0.96975243,653.6916,-196.92209)"
id="g21974-0">
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,372.36218 c 0,0 15.1753,45.4316 35,50 16.7212,3.85322 25,-30 45,-25 11.4332,2.85831 5.2834,23.21829 5,35 -1.061,44.11458 -25,130 -25,130"
id="path9780-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,342.36218 c 0,0 19.9867,43.50206 40,45 12.9808,0.97158 19.2503,-19.62516 30,-25 20,-10 24.3937,8.28067 30,0 10.0636,-14.86426 -20,-32.04945 -20,-50 0,-17.95055 20,-50 20,-50"
id="path9782-73"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casaac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1060,262.36218 c 0,0 19.201,32.06724 20,50 0.7745,17.38327 -25.3869,36.03969 -15,50 6.9642,9.36008 15,-10 35,0 28.28427,14.14213 70,90 70,90"
id="path9784-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caasc" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -950,482.36218 c 0,0 -50,-90 -85,-85 -11.6667,1.66667 -5.7131,23.23648 -5,35 2.7155,44.79414 35,130 35,130"
id="path9786-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1100,562.36218 c 0,0 10,-90 30,-90 20,0 35,90 35,90"
id="path9788-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
</g>
<g
transform="matrix(0.50000008,0,0,-0.96975243,775.00009,602.85996)"
id="g21974-0-3">
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,372.36218 c 0,0 15.1753,45.4316 35,50 16.7212,3.85322 25,-30 45,-25 11.4332,2.85831 5.2834,23.21829 5,35 -1.061,44.11458 -25,130 -25,130"
id="path9780-1-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1190,342.36218 c 0,0 19.9867,43.50206 40,45 12.9808,0.97158 19.2503,-19.62516 30,-25 20,-10 24.3937,8.28067 30,0 10.0636,-14.86426 -20,-32.04945 -20,-50 0,-17.95055 20,-50 20,-50"
id="path9782-73-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="casaac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1060,262.36218 c 0,0 19.201,32.06724 20,50 0.7745,17.38327 -25.3869,36.03969 -15,50 6.9642,9.36008 15,-10 35,0 28.28427,14.14213 70,90 70,90"
id="path9784-5-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="caasc" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -950,482.36218 c 0,0 -50,-90 -85,-85 -11.6667,1.66667 -5.7131,23.23648 -5,35 2.7155,44.79414 35,130 35,130"
id="path9786-2-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csac" />
<path
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -1100,562.36218 c 0,0 10,-90 30,-90 20,0 35,90 35,90"
id="path9788-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csc" />
</g>
</g>
<g
id="g66600"
transform="translate(71.071442,0.57142848)">
<g
id="g66478-5"
transform="matrix(1,0,0,0.4999995,302.73705,27.223431)">
<g
id="g21974-0-7"
transform="matrix(0.50000008,0,0,0.96975243,653.6916,-196.92209)">
<path
sodipodi:nodetypes="casac"
inkscape:connector-curvature="0"
id="path9780-1-5"
d="m -1190,372.36218 c 0,0 15.1753,45.4316 35,50 16.7212,3.85322 25,-30 45,-25 11.4332,2.85831 5.2834,23.21829 5,35 -1.061,44.11458 -25,130 -25,130"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="casaac"
inkscape:connector-curvature="0"
id="path9782-73-9"
d="m -1190,342.36218 c 0,0 19.9867,43.50206 40,45 12.9808,0.97158 19.2503,-19.62516 30,-25 20,-10 24.3937,8.28067 30,0 10.0636,-14.86426 -20,-32.04945 -20,-50 0,-17.95055 20,-50 20,-50"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="caasc"
inkscape:connector-curvature="0"
id="path9784-5-4"
d="m -1060,262.36218 c 0,0 19.201,32.06724 20,50 0.7745,17.38327 -25.3869,36.03969 -15,50 6.9642,9.36008 15,-10 35,0 28.28427,14.14213 70,90 70,90"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csac"
inkscape:connector-curvature="0"
id="path9786-2-7"
d="m -950,482.36218 c 0,0 -50,-90 -85,-85 -11.6667,1.66667 -5.7131,23.23648 -5,35 2.7155,44.79414 35,130 35,130"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path9788-0-65"
d="m -1100,562.36218 c 0,0 10,-90 30,-90 20,0 35,90 35,90"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
<g
id="g21974-0-3-8"
transform="matrix(0.50000008,0,0,-0.96975243,775.00009,602.85996)">
<path
sodipodi:nodetypes="casac"
inkscape:connector-curvature="0"
id="path9780-1-2-3"
d="m -1190,372.36218 c 0,0 15.1753,45.4316 35,50 16.7212,3.85322 25,-30 45,-25 11.4332,2.85831 5.2834,23.21829 5,35 -1.061,44.11458 -25,130 -25,130"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="casaac"
inkscape:connector-curvature="0"
id="path9782-73-0-6"
d="m -1190,342.36218 c 0,0 19.9867,43.50206 40,45 12.9808,0.97158 19.2503,-19.62516 30,-25 20,-10 24.3937,8.28067 30,0 10.0636,-14.86426 -20,-32.04945 -20,-50 0,-17.95055 20,-50 20,-50"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="caasc"
inkscape:connector-curvature="0"
id="path9784-5-5-5"
d="m -1060,262.36218 c 0,0 19.201,32.06724 20,50 0.7745,17.38327 -25.3869,36.03969 -15,50 6.9642,9.36008 15,-10 35,0 28.28427,14.14213 70,90 70,90"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csac"
inkscape:connector-curvature="0"
id="path9786-2-4-5"
d="m -950,482.36218 c 0,0 -50,-90 -85,-85 -11.6667,1.66667 -5.7131,23.23648 -5,35 2.7155,44.79414 35,130 35,130"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path9788-0-6-0"
d="m -1100,562.36218 c 0,0 10,-90 30,-90 20,0 35,90 35,90"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
</g>
<g
id="g66478-5-8"
transform="matrix(1,0,0,0.4999995,302.73707,175.31568)">
<g
id="g21974-0-7-4"
transform="matrix(0.50000008,0,0,0.96975243,653.6916,-196.92209)">
<path
sodipodi:nodetypes="casac"
inkscape:connector-curvature="0"
id="path9780-1-5-9"
d="m -1190,372.36218 c 0,0 15.1753,45.4316 35,50 16.7212,3.85322 25,-30 45,-25 11.4332,2.85831 5.2834,23.21829 5,35 -1.061,44.11458 -25,130 -25,130"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="casaac"
inkscape:connector-curvature="0"
id="path9782-73-9-1"
d="m -1190,342.36218 c 0,0 19.9867,43.50206 40,45 12.9808,0.97158 19.2503,-19.62516 30,-25 20,-10 24.3937,8.28067 30,0 10.0636,-14.86426 -20,-32.04945 -20,-50 0,-17.95055 20,-50 20,-50"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="caasc"
inkscape:connector-curvature="0"
id="path9784-5-4-6"
d="m -1060,262.36218 c 0,0 19.201,32.06724 20,50 0.7745,17.38327 -25.3869,36.03969 -15,50 6.9642,9.36008 15,-10 35,0 28.28427,14.14213 70,90 70,90"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csac"
inkscape:connector-curvature="0"
id="path9786-2-7-3"
d="m -950,482.36218 c 0,0 -50,-90 -85,-85 -11.6667,1.66667 -5.7131,23.23648 -5,35 2.7155,44.79414 35,130 35,130"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path9788-0-65-2"
d="m -1100,562.36218 c 0,0 10,-90 30,-90 20,0 35,90 35,90"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
<g
id="g21974-0-3-8-7"
transform="matrix(0.50000008,0,0,-0.96975243,775.00009,602.85996)">
<path
sodipodi:nodetypes="casac"
inkscape:connector-curvature="0"
id="path9780-1-2-3-9"
d="m -1190,372.36218 c 0,0 15.1753,45.4316 35,50 16.7212,3.85322 25,-30 45,-25 11.4332,2.85831 5.2834,23.21829 5,35 -1.061,44.11458 -25,130 -25,130"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="casaac"
inkscape:connector-curvature="0"
id="path9782-73-0-6-3"
d="m -1190,342.36218 c 0,0 19.9867,43.50206 40,45 12.9808,0.97158 19.2503,-19.62516 30,-25 20,-10 24.3937,8.28067 30,0 10.0636,-14.86426 -20,-32.04945 -20,-50 0,-17.95055 20,-50 20,-50"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="caasc"
inkscape:connector-curvature="0"
id="path9784-5-5-5-2"
d="m -1060,262.36218 c 0,0 19.201,32.06724 20,50 0.7745,17.38327 -25.3869,36.03969 -15,50 6.9642,9.36008 15,-10 35,0 28.28427,14.14213 70,90 70,90"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csac"
inkscape:connector-curvature="0"
id="path9786-2-4-5-3"
d="m -950,482.36218 c 0,0 -50,-90 -85,-85 -11.6667,1.66667 -5.7131,23.23648 -5,35 2.7155,44.79414 35,130 35,130"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
sodipodi:nodetypes="csc"
inkscape:connector-curvature="0"
id="path9788-0-6-0-0"
d="m -1100,562.36218 c 0,0 10,-90 30,-90 20,0 35,90 35,90"
style="fill:none;stroke:#000000;stroke-width:5.31496048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

422
src/fig/chap2/Fig2.13a.svg Normal file
View File

@ -0,0 +1,422 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="432.53149"
height="234.45476"
id="svg66714"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.13a.svg">
<defs
id="defs66716" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="240.59549"
inkscape:cy="111.85474"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid66722"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="201.26575px"
originy="-766.811px" />
</sodipodi:namedview>
<metadata
id="metadata_2.13">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.13</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.13</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>recursive</rdf:li>
<rdf:li>right-split</rdf:li>
<rdf:li>corner-split</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Lines"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(201.26575,-51.096431)">
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect66724-4"
width="200"
height="200"
x="-200"
y="52.362183"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -99.999996,52.36219 0,199.99999"
id="path67254-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m -99.999996,152.36218 100,0"
id="path67256-58"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect66724"
width="200"
height="200"
x="30"
y="52.362179"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 130,52.362183 0,199.999997"
id="path67254"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 130,152.36218 100,0"
id="path67256"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 130,202.36218 100,0"
id="path67256-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 80,152.36218 80,52.362183"
id="path67256-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 30,152.36218 100,0"
id="path67256-4-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Text"
style="display:inline"
transform="translate(201.26575,-51.096431)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="-50"
y="96.290771"
id="text67324-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67326-6"
x="-50"
y="96.290771">right-split</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="-150"
y="155.64511"
id="text67517-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67519-8"
x="-150"
y="155.64511">identity</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="-50"
y="196.35205"
id="text67324-0-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67326-6-5"
x="-50"
y="196.35205">right-split</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="-100"
y="282.36218"
id="text67883"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67885"
x="-100"
y="282.36218">right-split <tspan
style="font-style:oblique;-inkscape-font-specification:Inconsolata LGC Oblique"
id="tspan67887">n</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="180"
y="172.36218"
id="text67312"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="180"
y="172.36218"
id="tspan67316">right-split</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="180"
y="96.038223"
id="text67324"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67326"
x="180"
y="96.038223">corner-split</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="88.785683"
y="82.362183"
id="text67350"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67352"
x="88.785683"
y="82.362183">up-</tspan><tspan
sodipodi:role="line"
x="88.785683"
y="96.112183"
id="tspan67354">split</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans Italic"
x="105"
y="117.36218"
id="text67328-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67330-7"
x="105"
y="117.36218"
dx="0 0 0 -0.69999999">n<tspan
style="font-style:normal;letter-spacing:0px;-inkscape-font-specification:Inconsolata LGC"
id="tspan67521"
dx="0 -3.8499999">--</tspan><tspan
style="font-style:normal;-inkscape-font-specification:Inconsolata LGC"
id="tspan95459">1</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="38.737297"
y="82.362183"
id="text67350-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67352-3"
x="38.737297"
y="82.362183">up-</tspan><tspan
sodipodi:role="line"
x="38.737297"
y="96.112183"
id="tspan67354-2">split</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="180"
y="222.36218"
id="text67312-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="180"
y="222.36218"
id="tspan67316-9">right-split</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="80"
y="205.57651"
id="text67517"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67519"
x="80"
y="205.57651">identity</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans Italic"
x="180"
y="117.36218"
id="text67328-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67330-7-3"
x="180"
y="117.36218"
dx="0 0 0 -0.69999999">n<tspan
style="font-style:normal;letter-spacing:0px;-inkscape-font-specification:Inconsolata LGC"
id="tspan67521-5"
dx="0 -3.8499999">--</tspan><tspan
style="font-style:normal;-inkscape-font-specification:Inconsolata LGC"
id="tspan95461">1</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans Italic"
x="55"
y="117.36218"
id="text67328-2-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67330-7-9"
x="55"
y="117.36218"
dx="0 0 0 -0.69999999">n<tspan
style="font-style:normal;letter-spacing:0px;-inkscape-font-specification:Inconsolata LGC"
id="tspan67521-2"
dx="0 -3.8499999">--</tspan><tspan
style="font-style:normal;-inkscape-font-specification:Inconsolata LGC"
id="tspan95457">1</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans Italic"
x="180"
y="192.36218"
id="text67328-2-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67330-7-5"
x="180"
y="192.36218"
dx="0 0 0 -0.69999999">n<tspan
style="font-style:normal;letter-spacing:0px;-inkscape-font-specification:Inconsolata LGC"
id="tspan67521-7"
dx="0 -3.8499999">--</tspan><tspan
style="font-style:normal;-inkscape-font-specification:Inconsolata LGC"
id="tspan95463">1</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans Italic"
x="180"
y="242.36218"
id="text67328-2-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67330-7-7"
x="180"
y="242.36218"
dx="0 0 0 -0.69999999">n<tspan
style="font-style:normal;letter-spacing:0px;-inkscape-font-specification:Inconsolata LGC"
id="tspan67521-6"
dx="0 -3.8499999">--</tspan><tspan
style="font-style:normal;-inkscape-font-specification:Inconsolata LGC"
id="tspan95465">1</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="130"
y="282.36218"
id="text67889"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67891"
x="130"
y="282.36218">corner-split <tspan
style="font-style:oblique;-inkscape-font-specification:Inconsolata LGC Oblique"
id="tspan67893">n</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans Italic"
x="-50"
y="117.36218"
id="text67328-2-9-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67330-7-3-6"
x="-50"
y="117.36218"
dx="0 0 0 -0.69999999">n<tspan
style="font-style:normal;letter-spacing:0px;-inkscape-font-specification:Inconsolata LGC"
id="tspan67521-5-9"
dx="0 -3.8499999">--</tspan><tspan
style="font-style:normal;-inkscape-font-specification:Inconsolata LGC"
id="tspan95453">1</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans Italic"
x="-50"
y="217.42346"
id="text67328-2-9-8-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan67330-7-3-6-1"
x="-50"
y="217.42346"
dx="0 0 0 -0.69999999">n<tspan
style="font-style:normal;letter-spacing:0px;-inkscape-font-specification:Inconsolata LGC"
id="tspan67521-5-9-2"
dx="0 -3.8499999">--</tspan><tspan
style="font-style:normal;-inkscape-font-specification:Inconsolata LGC"
id="tspan95455">1</tspan></tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

229
src/fig/chap2/Fig2.14b.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 738 KiB

362
src/fig/chap2/Fig2.15a.svg Normal file
View File

@ -0,0 +1,362 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="200.49533"
height="195.7562"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.15a.svg"
style="display:inline">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
id="path3843"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path3834"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible">
<path
id="path3837"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path3840"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3834-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3834-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3834-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3834-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-6"
style="overflow:visible">
<path
id="path3840-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="187.63955"
inkscape:cy="62.144598"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-61.247px"
originy="-800.669px" />
</sodipodi:namedview>
<metadata
id="metadata_2.15">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.15</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.15</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>frame</rdf:li>
<rdf:li>vector</rdf:li>
<rdf:li>origin</rdf:li>
<rdf:li>edge</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-61.247,-55.936986)">
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-start:url(#Arrow1Mstart)"
d="M 243.91071,123.18361 130,192.36218"
id="path5021"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-start:url(#Arrow1Mstart)"
d="M 90.732143,128.71933 130,192.36218"
id="path5953"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
d="M 220,212.36218 131.38711,192.97186"
id="path6141"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:none"
id="path6329"
sodipodi:cx="235"
sodipodi:cy="212.36218"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 240,212.36218 c 0,2.76143 -2.23858,5 -5,5 -2.76142,0 -5,-2.23857 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z"
transform="matrix(0.40000028,0,0,0.40000028,125.99993,127.41725)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.85039371;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:5.1023622, 5.1023622;stroke-dashoffset:0;marker-start:none;display:inline"
d="M 205,57.362183 90,127.36218"
id="path5021-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.85039371;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:5.1023622, 5.1023622;stroke-dashoffset:0;marker-start:none;display:inline"
d="m 205,57.362185 40,64.999995"
id="path5953-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-61.247,-55.936986)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="228"
y="152.36218"
id="text3000"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="228"
y="152.36218"
id="tspan3004"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">frame</tspan><tspan
sodipodi:role="line"
x="228"
y="168.61218"
id="tspan3008"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">edge1</tspan><tspan
sodipodi:role="line"
x="228"
y="184.86218"
id="tspan3010"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">vector</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="62"
y="157.36218"
id="text3000-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="62"
y="157.36218"
id="tspan3004-3"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">frame</tspan><tspan
sodipodi:role="line"
x="62"
y="173.61218"
id="tspan3008-3"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">edge2</tspan><tspan
sodipodi:role="line"
x="62"
y="189.86218"
id="tspan3010-9"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">vector</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="130"
y="214.89029"
id="text3039"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="130"
y="214.89029"
id="tspan3043"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">frame</tspan><tspan
sodipodi:role="line"
x="130"
y="231.14029"
id="tspan3045"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">origin</tspan><tspan
sodipodi:role="line"
x="130"
y="247.39029"
id="tspan3053"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">vector</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="185"
y="231.36218"
id="text3055"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="185"
y="231.36218"
id="tspan3059"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">(0, 0) point on </tspan><tspan
sodipodi:role="line"
x="185"
y="247.61218"
id="tspan3994"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">display screen</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

402
src/fig/chap2/Fig2.16b.svg Normal file
View File

@ -0,0 +1,402 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="272.97247"
height="129.96899"
id="svg9530"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.16b.svg"
style="display:inline">
<defs
id="defs9532" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="219.72513"
inkscape:cy="53.120269"
inkscape:document-units="px"
inkscape:current-layer="layer4"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid9538"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-162.38252px"
originy="-823.961px" />
</sodipodi:namedview>
<metadata
id="metadata_2.16">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.16</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-16.html#%_fig_2.16</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>set</rdf:li>
<rdf:li>binary</rdf:li>
<rdf:li>tree</rdf:li>
<rdf:li>node</rdf:li>
<rdf:li>left</rdf:li>
<rdf:li>right</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-162.38252,-98.432183)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 200,112.36218 -10,20"
id="path9625"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 180,152.36218 -10,20"
id="path9625-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 185,152.36218 10,20"
id="path9625-9-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 205,112.36218 10,20"
id="path9625-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 225,152.36218 10,20"
id="path9625-9-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 275,112.36218 -10,20"
id="path9625-99"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 295,152.36218 -10,20"
id="path9625-10"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 280,112.36218 10,20"
id="path9625-9-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 300,152.36218 10,20"
id="path9625-9-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 320,192.36218 10,20"
id="path9625-9-9-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 390,112.36218 -10,20"
id="path9625-99-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 370,152.36218 -10,20"
id="path9625-99-2-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 410,152.36218 -10,20"
id="path9625-99-2-76"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 395,112.36218 10,20"
id="path9625-9-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 415,152.36218 10,20"
id="path9625-9-0-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-162.38252,-98.432183)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="202.64288"
y="107.36218"
id="text9553"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9555"
x="202.64288"
y="107.36218">7</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="277.64282"
y="107.36218"
id="text9581"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9583"
x="277.64282"
y="107.36218">3</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="392.64282"
y="107.36218"
id="text9621"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9623"
x="392.64282"
y="107.36218">5</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="184"
y="147.36218"
id="text9557"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9559"
x="184"
y="147.36218">3</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="220"
y="147.36218"
id="text9561"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9563"
x="220"
y="147.36218">9</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="260"
y="147.36218"
id="text9577"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9579"
x="260"
y="147.36218">1</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="296"
y="147.36218"
id="text9585"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9587"
x="296"
y="147.36218">7</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="411"
y="147.36218"
id="text9613"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9615"
x="411"
y="147.36218">9</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="375"
y="147.36218"
id="text9617"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9619"
x="375"
y="147.36218">3</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="165"
y="187.36218"
id="text9565"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9567"
x="165"
y="187.36218">1</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="240"
y="187.36218"
id="text9573"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9575"
x="240"
y="187.36218">11</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="280"
y="187.36218"
id="text9589"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9591"
x="280"
y="187.36218">5</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="315"
y="187.36218"
id="text9593"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9595"
x="315"
y="187.36218">9</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="355"
y="187.36218"
id="text9601"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9603"
x="355"
y="187.36218">1</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="395"
y="187.36218"
id="text9605"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9607"
x="395"
y="187.36218">7</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="430"
y="187.36218"
id="text9609"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9611"
x="430"
y="187.36218">11</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="335"
y="227.36218"
id="text9597"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9599"
x="335"
y="227.36218">11</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="200"
y="187.36218"
id="text9569"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9571"
x="200"
y="187.36218">5</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

223
src/fig/chap2/Fig2.17a.svg Normal file
View File

@ -0,0 +1,223 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="156.108"
height="160.09897"
id="svg10431"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.17a.svg"
style="display:inline">
<defs
id="defs10433" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="129.79341"
inkscape:cy="78.145955"
inkscape:document-units="px"
inkscape:current-layer="layer6"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid10439"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-159.6464px"
originy="-827.56834px" />
</sodipodi:namedview>
<metadata
id="metadata_2.17">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.17</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-16.html#%_fig_2.17</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>unbalanced</rdf:li>
<rdf:li>tree</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Lines"
style="display:inline"
transform="translate(-159.6464,-64.694886)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 170,77.362183 10,10"
id="path10482"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 195,102.36218 10,10"
id="path10482-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 220,127.36218 10,10"
id="path10482-15"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 245,152.36218 10,10"
id="path10482-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 270,177.36218 10,10"
id="path10482-15-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 295,202.36218 10,10"
id="path10482-15-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Text"
style="display:inline"
transform="translate(-159.6464,-64.694886)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="159.2424"
y="73.624886"
id="text10454"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10456"
x="159.2424"
y="73.624886">1</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="184.2424"
y="98.624886"
id="text10458"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10460"
x="184.2424"
y="98.624886">2</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="209.2424"
y="123.62488"
id="text10462"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10464"
x="209.2424"
y="123.62488">3</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="234.2424"
y="148.62485"
id="text10466"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10468"
x="234.2424"
y="148.62485">4</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="259.2424"
y="173.62485"
id="text10470"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10472"
x="259.2424"
y="173.62485">5</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="284.2424"
y="198.62485"
id="text10474"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10476"
x="284.2424"
y="198.62485">6</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="309.2424"
y="223.62485"
id="text10478"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10480"
x="309.2424"
y="223.62485">7</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

429
src/fig/chap2/Fig2.18a.svg Normal file
View File

@ -0,0 +1,429 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="315.86356"
height="213.261"
id="svg11297"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.18a.svg"
style="display:inline">
<defs
id="defs11299" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="220.7279"
inkscape:cy="89.75576"
inkscape:document-units="px"
inkscape:current-layer="layer8"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid11305"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-155.41967px"
originy="-730.857px" />
</sodipodi:namedview>
<metadata
id="metadata_2.18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.18</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-16.html#%_fig_2.18</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>Huffman</rdf:li>
<rdf:li>encoding</rdf:li>
<rdf:li>code</rdf:li>
<rdf:li>tree</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="Lines"
style="display:inline"
transform="translate(-155.41967,-108.24418)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 275,127.36218 -30,30"
id="path11387-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 275,127.36218 30,30"
id="path11387"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="path11927-6-1"
sodipodi:cx="315"
sodipodi:cy="137.36218"
sodipodi:rx="2"
sodipodi:ry="2"
d="m 317,137.36218 c 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 0,-1.10457 0.89543,-2 2,-2 1.10457,0 2,0.89543 2,2 z"
transform="translate(-10,20)" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="path11927"
sodipodi:cx="315"
sodipodi:cy="137.36218"
sodipodi:rx="2"
sodipodi:ry="2"
d="m 317,137.36218 c 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 0,-1.10457 0.89543,-2 2,-2 1.10457,0 2,0.89543 2,2 z"
transform="translate(-40,-10)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,157.36218 -90,90"
id="path12512"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,157.36218 60,60"
id="path12640"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 365,217.36218 60,60"
id="path12640-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 215,247.36218 -30,30"
id="path11387-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 215,247.36218 30,30"
id="path11387-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 245,277.36218 -30,30"
id="path11387-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 245,277.36218 30,30"
id="path11387-51"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="path11927-6-3"
sodipodi:cx="315"
sodipodi:cy="137.36218"
sodipodi:rx="2"
sodipodi:ry="2"
d="m 317,137.36218 c 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 0,-1.10457 0.89543,-2 2,-2 1.10457,0 2,0.89543 2,2 z"
transform="translate(-70,140)" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="path11927-6-6"
sodipodi:cx="315"
sodipodi:cy="137.36218"
sodipodi:rx="2"
sodipodi:ry="2"
d="m 317,137.36218 c 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 0,-1.10457 0.89543,-2 2,-2 1.10457,0 2,0.89543 2,2 z"
transform="translate(-100,110)"
inkscape:transform-center-y="2" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 365,217.36218 -30,30"
id="path11387-0-25"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 335,247.36218 -30,30"
id="path11387-0-25-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 335,247.36218 30,30"
id="path11387-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="path11927-6-4-0"
sodipodi:cx="315"
sodipodi:cy="137.36218"
sodipodi:rx="2"
sodipodi:ry="2"
d="m 317,137.36218 c 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 0,-1.10457 0.89543,-2 2,-2 1.10457,0 2,0.89543 2,2 z"
transform="translate(20,110)" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="path11927-6-4"
sodipodi:cx="315"
sodipodi:cy="137.36218"
sodipodi:rx="2"
sodipodi:ry="2"
d="m 317,137.36218 c 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 0,-1.10457 0.89543,-2 2,-2 1.10457,0 2,0.89543 2,2 z"
transform="translate(50,80)" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:none;display:inline"
id="path11927-6-4-7"
sodipodi:cx="315"
sodipodi:cy="137.36218"
sodipodi:rx="2"
sodipodi:ry="2"
d="m 317,137.36218 c 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 0,-1.10457 0.89543,-2 2,-2 1.10457,0 2,0.89543 2,2 z"
transform="translate(110,140)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 425,277.36218 -30,30"
id="path11387-0-25-9-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 425,277.36218 30,30"
id="path11387-4-6-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer9"
inkscape:label="Text"
style="display:inline"
transform="translate(-155.41967,-108.24418)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="275"
y="117.36218"
id="text11320"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11322"
x="275"
y="117.36218">{A B C D E F G H} 17</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="305"
y="147.36218"
id="text11320-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11322-9"
x="305"
y="147.36218">{B C D E F G H} 9</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="239"
y="170.00504"
id="text12021"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12023"
x="239"
y="170.00504">A 8</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="215"
y="237.36218"
id="text11320-5-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11322-9-9"
x="215"
y="237.36218">{B C D} 5</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="245"
y="267.36218"
id="text11320-5-6-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11322-9-9-3"
x="245"
y="267.36218">{C D} 2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="281"
y="320.36218"
id="text12175"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12177"
x="281"
y="320.36218">D 1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="209.50508"
y="320.36218"
id="text12179"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12181"
x="209.50508"
y="320.36218">C 1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="179"
y="290.36218"
id="text12183"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12185"
x="179"
y="290.36218">B 3</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="365"
y="207.36218"
id="text11320-5-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11322-9-8"
x="365"
y="207.36218">{E F G H} 4</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="425"
y="267.36218"
id="text11320-5-5-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11322-9-8-3"
x="425"
y="267.36218">{G H} 2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="335"
y="237.36218"
id="text11320-5-5-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11322-9-8-2"
x="335"
y="237.36218">{E F} 2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="299.50507"
y="290.36218"
id="text12368"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12370"
x="299.50507"
y="290.36218">E 1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="371"
y="290.36218"
id="text12372"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12374"
x="371"
y="290.36218">F 1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="461"
y="320.36218"
id="text12462"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12464"
x="461"
y="320.36218">H 1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="389.50507"
y="320.36218"
id="text12466"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12468"
x="389.50507"
y="320.36218">G 1</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

235
src/fig/chap2/Fig2.19a.svg Normal file
View File

@ -0,0 +1,235 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="422.53149"
height="168.129"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.19a.svg"
style="display:inline">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="221.00545"
inkscape:cy="90.75805"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-98.734252px"
originy="-786.945px" />
</sodipodi:namedview>
<metadata
id="metadata_2.19">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.19</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-17.html#%_fig_2.19</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>complex</rdf:li>
<rdf:li>number</rdf:li>
<rdf:li>arithmetic</rdf:li>
<rdf:li>package</rdf:li>
<rdf:li>data</rdf:li>
<rdf:li>structure</rdf:li>
<rdf:li>abstraction</rdf:li>
<rdf:li>barrier</rdf:li>
<rdf:li>level</rdf:li>
<rdf:li>polar</rdf:li>
<rdf:li>rectangular</rdf:li>
<rdf:li>add-complex</rdf:li>
<rdf:li>sub-complex</rdf:li>
<rdf:li>mul-complex</rdf:li>
<rdf:li>div-complex</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-98.734252,-97.288183)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3796"
width="360"
height="30"
x="130"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 130,137.36218 -30,0"
id="path3799"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 100,192.36218 420,0"
id="path3819"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 100,237.36218 420,0"
id="path3819-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 310,192.36218 0,45"
id="path3839"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 520,137.36218 -30,0"
id="path3799-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-98.734252,-97.288183)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="310"
y="141.07648"
id="text3000"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3002"
x="310"
y="141.07648">add-complex sub-complex mul-complex div-complex</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="310"
y="107.36218"
id="text3004"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3006"
x="310"
y="107.36218">Programs that use complex numbers</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="310.35715"
y="176.35202"
id="text3008"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3010"
x="310.35715"
y="176.35202">Complex-arithmetic package</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="220.28572"
y="212.36218"
id="text3012"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3014"
x="220.28572"
y="212.36218">Rectangular</tspan><tspan
sodipodi:role="line"
x="220.28572"
y="228.61218"
id="tspan3016">representation</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="399.71429"
y="211.29076"
id="text3018"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3020"
x="399.71429"
y="211.29076">Polar</tspan><tspan
sodipodi:role="line"
x="399.71429"
y="227.54076"
id="tspan3022">representation</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="310"
y="261.36218"
id="text3024"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3026"
x="310"
y="261.36218">List structure and primitive machine arithmetic</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

312
src/fig/chap2/Fig2.1c.svg Normal file
View File

@ -0,0 +1,312 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="357.53149"
height="231.32076"
id="svg4113"
version="1.1"
inkscape:version="0.48.3.1 r9886"
style="display:inline"
sodipodi:docname="Fig2.1c.svg">
<defs
id="defs4115" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="228.42026"
inkscape:cy="120.33463"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid6964"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-53.734252px"
originy="-774.945px" />
</sodipodi:namedview>
<metadata
id="metadata_2.1">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.1</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-14.html#%_fig_2.1</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>rational</rdf:li>
<rdf:li>number</rdf:li>
<rdf:li>package</rdf:li>
<rdf:li>data</rdf:li>
<rdf:li>structure</rdf:li>
<rdf:li>abstraction</rdf:li>
<rdf:li>barrier</rdf:li>
<rdf:li>level</rdf:li>
<rdf:li>constructor</rdf:li>
<rdf:li>selector</rdf:li>
<rdf:li>pair</rdf:li>
<rdf:li>add-rat</rdf:li>
<rdf:li>sub-rat</rdf:li>
<rdf:li>make-rat</rdf:li>
<rdf:li>numer</rdf:li>
<rdf:li>denom</rdf:li>
<rdf:li>cons</rdf:li>
<rdf:li>car</rdf:li>
<rdf:li>cdr</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Boxes"
style="display:inline"
transform="translate(-53.734252,-46.096435)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4103"
width="255"
height="25"
x="105"
y="47.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4103-6"
width="165"
height="25"
x="150"
y="107.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4103-5"
width="175"
height="25"
x="145"
y="167.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4103-69"
width="125"
height="25"
x="170"
y="227.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-53.734252,-46.096435)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="232.42857"
y="63.451469"
id="text6868"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6870"
x="232.42857"
y="63.451469"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">Programs that use rational numbers</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="232"
y="93.362183"
id="text6872"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6874"
x="232"
y="93.362183"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">Rational numbers in problem domain</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="233"
y="123.36218"
id="text6876"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6878"
x="233"
y="123.36218"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">add-rat sub-rat ...</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="232"
y="153.36218"
id="text6880"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6882"
x="232"
y="153.36218"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">Rational numbers as numerators and denominators</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="232"
y="183.36218"
id="text6884"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6886"
x="232"
y="183.36218"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">make-rat numer denom</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="232"
y="213.36218"
id="text6888"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6890"
x="232"
y="213.36218"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">Rational numbers as pairs</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="232"
y="243.36218"
id="text6892"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6894"
x="232"
y="243.36218"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC">cons car cdr</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="232"
y="273.36218"
id="text6896"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6898"
x="232"
y="273.36218"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">However pairs are implemented</tspan></text>
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Barriers"
style="display:inline"
transform="translate(-53.734252,-46.096435)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 360,59.823931 50,0"
id="path4105"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 55,59.897896 50,0"
id="path4105-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 315,119.89789 95,0"
id="path4105-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 55,119.89789 95,0"
id="path4105-9-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 320,179.89789 90,0"
id="path4105-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 55,179.89789 90,0"
id="path4105-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 295,239.89789 115,0"
id="path4105-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 55,239.89789 115,0"
id="path4105-9-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

343
src/fig/chap2/Fig2.20.svg Normal file
View File

@ -0,0 +1,343 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="309.33572"
height="185.924"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.20.svg"
style="display:inline">
<title
id="title3021">SICP Figure 2.20</title>
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Sstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Sstart"
style="overflow:visible">
<path
id="path14077"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.2,0,0,0.2,1.2,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3840"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3840-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3840-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3843"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="167.28794"
inkscape:cy="90.992367"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid3004"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-188.5px"
originy="-778.5px" />
</sodipodi:namedview>
<metadata
id="metadata_2.20">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.20</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-17.html#%_fig_2.20</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>complex</rdf:li>
<rdf:li>number</rdf:li>
<rdf:li>point</rdf:li>
<rdf:li>plane</rdf:li>
<rdf:li>real</rdf:li>
<rdf:li>imaginary</rdf:li>
<rdf:li>axis</rdf:li>
<rdf:li>magnitude</rdf:li>
<rdf:li>angle</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-188.5,-87.938183)">
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-start:url(#Arrow1Mstart);display:inline"
d="m 430,252.36218 -240,0"
id="path5021"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-start:url(#Arrow1Mstart);display:inline"
d="m 220,112.36218 0,160"
id="path5021-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="214.64285"
y="97.005035"
id="text3911"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3913"
x="214.64285"
y="97.005035" /></text>
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-end:none;display:inline"
d="m 400,147.36218 -180,105"
id="path6141-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:none;marker-end:none;display:inline"
id="path6329-9"
sodipodi:cx="235"
sodipodi:cy="212.36218"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 240,212.36218 c 0,2.76143 -2.23858,5 -5,5 -2.76142,0 -5,-2.23857 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z"
transform="matrix(0.40000028,0,0,0.40000028,305.99993,62.417249)" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.99900001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:none;marker-end:none;display:inline"
id="path4189"
sodipodi:cx="220"
sodipodi:cy="252.36218"
sodipodi:rx="50"
sodipodi:ry="50"
d="m 270,252.36218 c 0,8.77684 -2.31031,17.39904 -6.69873,25"
transform="matrix(0.8660254,-0.5,0.5,0.8660254,-96.70668,143.81012)"
sodipodi:start="0"
sodipodi:end="0.52359878"
sodipodi:open="true" />
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 4;stroke-dashoffset:0;display:inline"
d="m 400,147.36218 0,105"
id="path4197"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2, 4;stroke-dashoffset:0;display:inline"
d="m 400,147.36218 -180,0"
id="path4197-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-188.5,-87.938183)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="220"
y="97.362183"
id="text3915"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3917"
x="220"
y="97.362183">Imaginary</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="457.29443"
y="255.36218"
id="text3919"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3921"
x="457.29443"
y="255.36218">Real</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="415"
y="150.36218"
id="text3923"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3925"
x="415"
y="150.36218"
dx="0 0 0 -0.60000002 0 0 0 -0.60000002 0 0.40000001 0 0 -0.60000002 0 0.80000001">z <tspan
style="font-style:normal;-inkscape-font-specification:Linux Libertine O"
id="tspan3020"
dx="0.60000002">=</tspan> x <tspan
style="font-style:normal;-inkscape-font-specification:Linux Libertine O"
id="tspan3018"
dx="0.60000002">+</tspan> iy <tspan
style="font-style:normal;-inkscape-font-specification:Linux Libertine O"
id="tspan3022"
dx="0.60000002">=</tspan> re<tspan
style="font-size:65.00091553%;baseline-shift:super"
id="tspan3927"
dx="0.40000001 0.40000001">iA</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="255"
y="246.09952"
id="text4191"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4193"
x="255"
y="246.09952">A</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="210"
y="149.36218"
id="text4217"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4219"
x="210"
y="149.36218">y</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="400"
y="267.36218"
id="text4221"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4223"
x="400"
y="267.36218">x</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="305"
y="192.36218"
id="text4225"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4227"
x="305"
y="192.36218">r</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

287
src/fig/chap2/Fig2.21a.svg Normal file
View File

@ -0,0 +1,287 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="422.53149"
height="203.129"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.21a.svg"
style="display:inline">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="226.64895"
inkscape:cy="104.3855"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-98.734252px"
originy="-751.945px" />
</sodipodi:namedview>
<metadata
id="metadata_2.21">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.21</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-17.html#%_fig_2.21</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>generic</rdf:li>
<rdf:li>complex</rdf:li>
<rdf:li>arithmetic</rdf:li>
<rdf:li>system</rdf:li>
<rdf:li>real</rdf:li>
<rdf:li>imaginary</rdf:li>
<rdf:li>magnitude</rdf:li>
<rdf:li>angle</rdf:li>
<rdf:li>rectangular</rdf:li>
<rdf:li>polar</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-98.734252,-97.288183)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3796"
width="360"
height="30"
x="130"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 130,137.36218 -30,0"
id="path3799"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 100,217.36218 125,0 m 170,0 125,0"
id="path3819"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 100,272.36218 420,0"
id="path3819-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 310,242.36218 0,30"
id="path3839"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3796-9"
width="170"
height="50"
x="225"
y="192.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 520,137.36218 -30,0"
id="path3799-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-98.734252,-97.288183)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="310"
y="141.07648"
id="text3000"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3002"
x="310"
y="141.07648">add-complex sub-complex mul-complex div-complex</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="310"
y="107.36218"
id="text3004"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3006"
x="310"
y="107.36218">Programs that use complex numbers</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="310.35715"
y="176.35202"
id="text3008"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3010"
x="310.35715"
y="176.35202">Complex-arithmetic package</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="170"
y="242.36218"
id="text3012"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3014"
x="170"
y="242.36218">Rectangular</tspan><tspan
sodipodi:role="line"
x="170"
y="258.61218"
id="tspan3016">representation</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="450"
y="242.36218"
id="text3018"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3020"
x="450"
y="242.36218">Polar</tspan><tspan
sodipodi:role="line"
x="450"
y="258.61218"
id="tspan3022">representation</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="310"
y="296.36218"
id="text3024"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3026"
x="310"
y="296.36218">List structure and primitive machine arithmetic</tspan></text>
<g
id="g3783">
<text
sodipodi:linespacing="125%"
id="text3104"
y="212.36218"
x="240"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
xml:space="preserve"><tspan
id="tspan3108"
y="212.36218"
x="240"
sodipodi:role="line">real-part</tspan></text>
<text
sodipodi:linespacing="125%"
id="text3112"
y="230.36218"
x="240"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
xml:space="preserve"><tspan
y="230.36218"
x="240"
id="tspan3114"
sodipodi:role="line">imag-part</tspan></text>
<text
sodipodi:linespacing="125%"
id="text3116"
y="212.36218"
x="350"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
xml:space="preserve"><tspan
y="212.36218"
x="350"
id="tspan3118"
sodipodi:role="line">magnitude</tspan></text>
<text
sodipodi:linespacing="125%"
id="text3120"
y="230.36218"
x="350"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
xml:space="preserve"><tspan
y="230.36218"
x="350"
id="tspan3122"
sodipodi:role="line">angle</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

306
src/fig/chap2/Fig2.22.svg Normal file
View File

@ -0,0 +1,306 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="400.81976"
height="125.68974"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.22.svg"
style="display:inline">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="235.01342"
inkscape:cy="47.081555"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-65.446px"
originy="-843.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_2.22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.22</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-17.html#%_fig_2.22</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>complex</rdf:li>
<rdf:li>number</rdf:li>
<rdf:li>system</rdf:li>
<rdf:li>operations</rdf:li>
<rdf:li>table</rdf:li>
<rdf:li>type</rdf:li>
<rdf:li>polar</rdf:li>
<rdf:li>rectangular</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-65.446,-82.938183)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 170,207.36218 0,-85 c 0,-3 2,-5 5,-5 l 290,0"
id="path4543"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 300,102.36218 0,105"
id="path4545"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-65.446,-82.938183)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="95"
y="137.36218"
id="text4432"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4434"
x="95"
y="137.36218">real-part</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="95"
y="157.36218"
id="text4436"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4438"
x="95"
y="157.36218">imag-part</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="95"
y="177.36218"
id="text4440"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4442"
x="95"
y="177.36218">magnitude</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="95"
y="197.36218"
id="text4444"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4446"
x="95"
y="197.36218">angle</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="185"
y="137.36218"
id="text4448"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4450"
x="185"
y="137.36218">real-part-polar</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="185"
y="157.36218"
id="text4452"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4454"
x="185"
y="157.36218">imag-part-polar</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="185"
y="177.36218"
id="text4456"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4458"
x="185"
y="177.36218">magnitude-polar</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="185"
y="197.36218"
id="text4460"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4462"
x="185"
y="197.36218">angle-polar</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="315"
y="137.36218"
id="text4464"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4466"
x="315"
y="137.36218">real-part-rectangular</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="315"
y="157.36218"
id="text4464-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4466-3"
x="315"
y="157.36218">imag-part-rectangular</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="315"
y="177.36218"
id="text4464-2-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4466-3-3"
x="315"
y="177.36218">magnitude-rectangular</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="315"
y="197.36218"
id="text4464-2-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4466-3-1"
x="315"
y="197.36218">angle-rectangular</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="300"
y="92.362183"
id="text4523"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4525"
x="300"
y="92.362183">Types</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="235"
y="107.36218"
id="text4527"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4529"
x="235"
y="107.36218">Polar</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="380"
y="107.36218"
id="text4531"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4533"
x="380"
y="107.36218">Rectangular</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="-164.36218"
y="75"
id="text4535"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"><tspan
sodipodi:role="line"
id="tspan4537"
x="-164.36218"
y="75"
rotate="0 0 0 0 0 0 0 0">Operations</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

426
src/fig/chap2/Fig2.23a.svg Normal file
View File

@ -0,0 +1,426 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="467.53149"
height="254.129"
id="svg2987"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.23a.svg"
style="display:inline">
<defs
id="defs2989" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="278.46416"
inkscape:cy="122.85973"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid2995"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-108.73425px"
originy="-700.945px" />
</sodipodi:namedview>
<metadata
id="metadata_2.23">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.23</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-18.html#%_fig_2.23</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>generic</rdf:li>
<rdf:li>arithmetic</rdf:li>
<rdf:li>system</rdf:li>
<rdf:li>ordinary</rdf:li>
<rdf:li>rational</rdf:li>
<rdf:li>complex</rdf:li>
<rdf:li>add</rdf:li>
<rdf:li>sub</rdf:li>
<rdf:li>mul</rdf:li>
<rdf:li>div</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-108.73425,-97.288183)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3796"
width="150"
height="30"
x="292.64288"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3796-9"
width="185"
height="50"
x="275"
y="192.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3796-9-0"
width="130"
height="50.000008"
x="125"
y="192.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3796-9-1"
width="80"
height="50"
x="480"
y="192.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 255,217.36218 20,0"
id="path6209"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 460,217.36218 20,0"
id="path6209-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 265,217.36218 0,105"
id="path6230"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 470,217.36218 0,105"
id="path6230-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 470,282.36218 -205,0"
id="path6230-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 575,322.36218 -465,0"
id="path6230-7-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 292.64286,137.36218 -182.64286,0"
id="path6230-7-1-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 575,137.36218 -132.35714,0"
id="path6230-7-1-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 110,217.36218 15,0"
id="path6209-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 560,217.36218 15,0"
id="path6209-5-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 367.64286,282.36218 0,40"
id="path6351"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-108.73425,-97.288183)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="367.64288"
y="140.93359"
id="text5873"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5875"
x="367.64288"
y="140.93359">add sub mul div</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="290"
y="212.36218"
id="text5998"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6000"
x="290"
y="212.36218">add-complex</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="290"
y="230.36218"
id="text6002"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6004"
x="290"
y="230.36218">mul-complex</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="445"
y="212.36218"
id="text6006"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6008"
x="445"
y="212.36218">sub-complex</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="445"
y="230.36218"
id="text6010"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6012"
x="445"
y="230.36218">div-complex</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="367.39035"
y="107.36218"
id="text3004"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3006"
x="367.39035"
y="107.36218">Programs that use numbers</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="367.7475"
y="176.35202"
id="text3008"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3010"
x="367.7475"
y="176.35202">Generic arithmetic package</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="367.49493"
y="267.36218"
id="text3008-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3010-3"
x="367.49493"
y="267.36218">Complex arithmetic</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="283"
y="305.36218"
id="text3012"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="283"
y="305.36218"
id="tspan3016">Rectangular</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="432.74747"
y="305.36218"
id="text3018"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="432.74747"
y="305.36218"
id="tspan3022">Polar</tspan></text>
<g
id="g3809">
<text
sodipodi:linespacing="125%"
id="text6151"
y="212.36218"
x="239.64285"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
xml:space="preserve"><tspan
y="212.36218"
x="239.64285"
id="tspan6153"
sodipodi:role="line">sub-rat</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6157"
y="230.00504"
x="240"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
xml:space="preserve"><tspan
y="230.00504"
x="240"
id="tspan6159"
sodipodi:role="line">div-rat</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6161"
y="212.36218"
x="140"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
xml:space="preserve"><tspan
y="212.36218"
x="140"
id="tspan6163"
sodipodi:role="line">add-rat</tspan></text>
<text
sodipodi:linespacing="125%"
id="text6165"
y="230.36218"
x="140"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
xml:space="preserve"><tspan
y="230.36218"
x="140"
id="tspan6167"
sodipodi:role="line">mul-rat</tspan></text>
</g>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="187"
y="277.36218"
id="text6173-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6175-7"
x="187"
y="277.36218">Rational</tspan><tspan
sodipodi:role="line"
x="187"
y="293.61218"
id="tspan6177-5">arithmetic</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="522.50507"
y="277.36218"
id="text6173"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6175"
x="522.50507"
y="277.36218">Ordinary</tspan><tspan
sodipodi:role="line"
x="522.50507"
y="293.61218"
id="tspan6177">arithmetic</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="367.2424"
y="347.36218"
id="text6347"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6349"
x="367.2424"
y="347.36218">List structure and primitive machine arithmetic</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="495"
y="220.71933"
id="text6169"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6171"
x="495"
y="220.71933"
dx="0 0 0 -4 0 0 0 2"
dy="0 0 0 0 0 2 -2">+ -- * /</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

489
src/fig/chap2/Fig2.24c.svg Normal file
View File

@ -0,0 +1,489 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="250.29837"
height="72.531509"
id="svg6372"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.24c.svg">
<defs
id="defs6374">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker6743"
style="overflow:visible">
<path
id="path6745"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker6747"
style="overflow:visible">
<path
id="path6749"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
id="path4565-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker6743-7"
style="overflow:visible">
<path
id="path6745-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker6747-5"
style="overflow:visible">
<path
id="path6749-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-49"
style="overflow:visible">
<path
id="path4565-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker6859"
style="overflow:visible">
<path
id="path6861"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-43"
style="overflow:visible">
<path
id="path4565-25"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7309"
style="overflow:visible">
<path
id="path7311"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="144.3277"
inkscape:cy="35.754516"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid6380"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-33.610236px"
originy="-918.73424px" />
</sodipodi:namedview>
<metadata
id="metadata_2.24">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.24</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-18.html#%_fig_2.24</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>complex</rdf:li>
<rdf:li>number</rdf:li>
<rdf:li>rectangular</rdf:li>
<rdf:li>representation</rdf:li>
<rdf:li>tag</rdf:li>
<rdf:li>list</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Box"
style="display:inline"
transform="translate(-33.610236,-61.096432)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0"
width="50"
height="25"
x="70"
y="62.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-0"
width="50"
height="25"
x="150"
y="62.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-0-4"
width="50"
height="25"
x="230"
y="62.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-8-4"
width="25"
height="25"
x="227.64285"
y="107.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-48"
width="25"
height="25"
x="257.64285"
y="107.36219"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-8-4-9"
width="65"
height="25"
x="62.714287"
y="107.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-8-4-92"
width="90"
height="25"
x="132.71428"
y="107.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:label="Lines"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(-33.610236,-61.096432)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 95,62.36218 0,25"
id="path4405-1-3"
inkscape:connector-curvature="0" />
<path
transform="translate(-34.5,-9.527419)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(-10,-9.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="M 83,105.36218 83,77.362184"
id="path4554-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 148,75.362184 -38,0"
id="path4554-5-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 68,75.362184 -33,0"
id="path4554-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175,62.36218 0,25"
id="path4405-1-3-5"
inkscape:connector-curvature="0" />
<path
transform="translate(45.5,-9.527423)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(70,-9.500004)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-4"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 163,105.36218 0,-28"
id="path4554-5-0-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 228,75.36218 -38,0"
id="path4554-5-2-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 255,62.36218 0,25"
id="path4405-1-3-8"
inkscape:connector-curvature="0" />
<path
transform="translate(125.5,-10)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-37"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(149.5,-10)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 243,105.36218 0,-28"
id="path4554-5-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 267,105.36218 0,-28"
id="path4554-5-0-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-33.610236,-61.096432)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="236.82141"
y="123.89789"
id="text3007-0-6-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-6-4"
x="236.82141"
y="123.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">3</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="266.82141"
y="123.8979"
id="text3007-0-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-3"
x="266.82141"
y="123.8979"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">4</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="72"
y="123.89789"
id="text3007-0-6-7-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-6-4-0"
x="72"
y="123.89789"
style="font-style:normal;font-weight:normal;-inkscape-font-specification:Inconsolata LGC">complex</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="141.28569"
y="123.89789"
id="text3007-0-6-7-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-6-4-9"
x="141.28569"
y="123.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">rectangular</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

218
src/fig/chap2/Fig2.25.svg Normal file
View File

@ -0,0 +1,218 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="45.550407"
height="134.168"
id="svg8202"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.25.svg">
<defs
id="defs8204">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
id="path4565-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="58.924591"
inkscape:cy="64.84142"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid8210"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-127.31529px"
originy="-845.906px" />
</sodipodi:namedview>
<metadata
id="metadata_2.25">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.25</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-18.html#%_fig_2.25</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>type</rdf:li>
<rdf:li>subtype</rdf:li>
<rdf:li>supertype</rdf:li>
<rdf:li>tower</rdf:li>
<rdf:li>integer</rdf:li>
<rdf:li>rational</rdf:li>
<rdf:li>real</rdf:li>
<rdf:li>complex</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Arrows"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-127.31529,-72.288183)">
<path
style="fill:none;stroke:#000000;stroke-width:0.70866144;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 150,89.362183 0,20.999997"
id="path4554-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.70866144;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 150,129.36218 0,21"
id="path4554-9-4-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.70866144;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 150,169.36218 0,21"
id="path4554-9-4-3-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Text"
transform="translate(-127.31529,-72.288183)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="150"
y="82.362183"
id="text8737"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8739"
x="150"
y="82.362183">complex</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="150"
y="122.36218"
id="text8741"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8743"
x="150"
y="122.36218">real</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="150"
y="162.36218"
id="text8769"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8771"
x="150"
y="162.36218">rational</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="150"
y="202.36218"
id="text8797"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8799"
x="150"
y="202.36218">integer</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.1 KiB

361
src/fig/chap2/Fig2.26e.svg Normal file
View File

@ -0,0 +1,361 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="376.6933"
height="245.41798"
id="svg8906"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.26e.svg"
style="display:inline">
<defs
id="defs8908" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="229.8115"
inkscape:cy="129.26678"
inkscape:document-units="px"
inkscape:current-layer="layer6"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid8914"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-85.890242px"
originy="-738.8984px" />
</sodipodi:namedview>
<metadata
id="metadata_2.26">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.26</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-18.html#%_fig_2.26</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>geometric</rdf:li>
<rdf:li>figure</rdf:li>
<rdf:li>type</rdf:li>
<rdf:li>hierarchy</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Lines"
style="display:inline"
transform="translate(-85.890242,-68.045804)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 365,127.36218 -30,30"
id="path9537-3-17"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 380,217.36218 30,30"
id="path9537-3-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 370,217.36218 -30,30"
id="path9537-3-17-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 405,262.36218 -30,30"
id="path9537-3-17-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 335,262.36218 30,30"
id="path9537-3-9-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 450,217.36218 -30,30"
id="path9537-3-17-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 330,82.362183 30,29.999997"
id="path9537-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 335,172.36218 30,30"
id="path9537-3-8-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9537-3-17-1-9-1-5"
d="M 320,82.362186 245,157.36218"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 375,127.36218 75,75"
id="path9537-3-9-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 240,172.36218 35,35"
id="path9537-3-8-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 175,237.36218 45,45"
id="path9537-3-8-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 230,172.36218 -35,35"
id="path9537-3-17-1-9-1-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 275,237.36218 -45,45"
id="path9537-3-17-1-9-1-0-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 165,237.36218 -45,45"
id="path9537-3-17-72-3-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Text"
style="display:inline"
transform="translate(-85.890242,-68.045804)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="325"
y="78.119804"
id="text9475"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9477"
x="325"
y="78.119804">polygon</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="370"
y="123.1198"
id="text9479"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9481"
x="370"
y="123.1198">quadrilateral</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="452"
y="213.11978"
id="text9483"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9485"
x="452"
y="213.11978">kite</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="333"
y="168.11978"
id="text9487"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9489"
x="333"
y="168.11978">trapezoid</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="375"
y="213.11978"
id="text9491"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9493"
x="375"
y="213.11978">parallelogram</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="333"
y="258.11978"
id="text9511"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9513"
x="333"
y="258.11978">rectangle</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="415"
y="258.11978"
id="text9515"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9517"
x="415"
y="258.11978">rhombus</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="370"
y="303.11978"
id="text9519"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9521"
x="370"
y="303.11978">square</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="235"
y="168.11978"
id="text9495"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9497"
x="235"
y="168.11978">triangle</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="175"
y="218.11978"
id="text9499"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9501"
x="175"
y="218.11978">isosceles</tspan><tspan
sodipodi:role="line"
x="175"
y="234.36978"
id="tspan9503">triangle</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="280"
y="218.11978"
id="text9505"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9507"
x="280"
y="218.11978">right</tspan><tspan
sodipodi:role="line"
x="280"
y="234.36978"
id="tspan9509">triangle</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="225"
y="293.11978"
id="text9523"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9525"
x="225"
y="293.11978">isosceles</tspan><tspan
sodipodi:role="line"
x="225"
y="309.36978"
id="tspan9529">right triangle</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="115"
y="293.11978"
id="text9531"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9533"
x="115"
y="293.11978">equilateral</tspan><tspan
sodipodi:role="line"
x="115"
y="309.36978"
id="tspan9535">triangle</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

290
src/fig/chap2/Fig2.2c.svg Normal file
View File

@ -0,0 +1,290 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="132.65552"
height="72.531494"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
style="display:inline"
sodipodi:docname="Fig2.2c.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path4559"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="158.97615"
inkscape:cy="43.008508"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid3015"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-113.61024px"
originy="-893.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_2.2">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.2</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.2</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>pair</rdf:li>
<rdf:li>data</rdf:li>
<rdf:li>structure</rdf:li>
<rdf:li>combination</rdf:li>
<rdf:li>box-and-pointer</rdf:li>
<rdf:li>box</rdf:li>
<rdf:li>pointer</rdf:li>
<rdf:li>notation</rdf:li>
<rdf:li>cons</rdf:li>
<rdf:li>car</rdf:li>
<rdf:li>cdr</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Box"
transform="translate(-113.61024,-86.096435)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1"
width="50"
height="25"
x="150"
y="87.362183"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-113.61024,-86.096435)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175,87.362183 0,24.999997"
id="path4405-1"
inkscape:connector-curvature="0" />
<path
transform="translate(45.5,15.472581)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4491-4"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(70,15.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4491-44"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:#808080;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 163,130.36218 0,-28"
id="path4554-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 218,100.36218 -28,0"
id="path4554-5-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 148,100.36218 -33,0"
id="path4554-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77"
width="25"
height="25"
x="220"
y="87.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-0"
width="25"
height="25"
x="150"
y="132.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-113.61024,-86.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="229.17856"
y="103.8979"
id="text3007"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009"
x="229.17856"
y="103.8979"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="159.35712"
y="148.89786"
id="text3011"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3013"
x="159.35712"
y="148.89786"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

277
src/fig/chap2/Fig2.2d.svg Normal file
View File

@ -0,0 +1,277 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="744.09448"
height="1052.3622"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
style="display:inline"
sodipodi:docname="Fig2.2c.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path4559"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.959798"
inkscape:cx="208.1221"
inkscape:cy="936.74276"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1440"
inkscape:window-height="824"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3015" />
</sodipodi:namedview>
<metadata
id="metadata_2.2">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.2</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>pair</rdf:li>
<rdf:li>data</rdf:li>
<rdf:li>structure</rdf:li>
<rdf:li>combination</rdf:li>
<rdf:li>box-and-pointer</rdf:li>
<rdf:li>box</rdf:li>
<rdf:li>pointer</rdf:li>
<rdf:li>notation</rdf:li>
<rdf:li>cons</rdf:li>
<rdf:li>car</rdf:li>
<rdf:li>cdr</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Box">
<rect
style="fill:#d1e8ff;fill-opacity:1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1"
width="50"
height="25"
x="150"
y="87.362183"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149606;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175,87.362183 0,24.999997"
id="path4405-1"
inkscape:connector-curvature="0" />
<path
transform="translate(45.5,15.472581)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4491-4"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
transform="translate(70,15.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4491-44"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
style="fill:#808080;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 163,130.36218 0,-28"
id="path4554-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 218,100.36218 -28,0"
id="path4554-5-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 148,100.36218 -33,0"
id="path4554-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="display:inline;fill:#ffe8d1;stroke:#000000;stroke-width:0.53149605000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;fill-opacity:1"
id="rect3794-77"
width="25"
height="25"
x="220"
y="87.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#ffe8d1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;fill-opacity:1"
id="rect3794-0"
width="25"
height="25"
x="150"
y="132.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="229.17856"
y="103.8979"
id="text3007"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009"
x="229.17856"
y="103.8979"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="159.35712"
y="148.89786"
id="text3011"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3013"
x="159.35712"
y="148.89786"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

911
src/fig/chap2/Fig2.3c.svg Normal file
View File

@ -0,0 +1,911 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="374.64423"
height="175.20204"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
style="display:inline"
sodipodi:docname="Fig2.3c.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path4559"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
id="path4565-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3340"
style="overflow:visible">
<path
id="path3342"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3344"
style="overflow:visible">
<path
id="path3346"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-6"
style="overflow:visible">
<path
id="path4565-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3411"
style="overflow:visible">
<path
id="path3413"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3415"
style="overflow:visible">
<path
id="path3417"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-95"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3505"
style="overflow:visible">
<path
id="path3507"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3509"
style="overflow:visible">
<path
id="path3511"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-88"
style="overflow:visible">
<path
id="path4565-45"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-33"
style="overflow:visible">
<path
id="path4565-46"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3610"
style="overflow:visible">
<path
id="path3612"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-27"
style="overflow:visible">
<path
id="path4565-91"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3686"
style="overflow:visible">
<path
id="path3688"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3690"
style="overflow:visible">
<path
id="path3692"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-1"
style="overflow:visible">
<path
id="path4565-26"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3750"
style="overflow:visible">
<path
id="path3752"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="206.26665"
inkscape:cy="82.301544"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid3015"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-38.610236px"
originy="-661.06371px" />
</sodipodi:namedview>
<metadata
id="metadata_2.3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.3</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.3</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>pair</rdf:li>
<rdf:li>hierarchical</rdf:li>
<rdf:li>data</rdf:li>
<rdf:li>structure</rdf:li>
<rdf:li>combination</rdf:li>
<rdf:li>box-and-pointer</rdf:li>
<rdf:li>box</rdf:li>
<rdf:li>pointer</rdf:li>
<rdf:li>notation</rdf:li>
<rdf:li>cons</rdf:li>
<rdf:li>car</rdf:li>
<rdf:li>cdr</rdf:li>
<rdf:li>closure</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Boxes"
transform="translate(-38.610236,-216.09643)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0"
width="50"
height="25"
x="75"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-3"
width="50"
height="25"
x="280"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-0"
width="50"
height="25"
x="145"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-0-6"
width="50"
height="25"
x="63"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-8-4"
width="25"
height="25"
x="143"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-48"
width="25"
height="25"
x="173"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-6"
width="25"
height="25"
x="60"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-4"
width="25"
height="25"
x="90"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9"
width="25"
height="25"
x="350"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-6"
width="50"
height="25"
x="268"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-0-5"
width="50"
height="25"
x="338"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4"
width="25"
height="25"
x="268"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5"
width="25"
height="25"
x="335"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-8"
width="25"
height="25"
x="365"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Arrows"
style="display:inline"
transform="translate(-38.610236,-216.09643)">
<path
transform="translate(-29.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(-5,145.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 88,260.36218 0,-28"
id="path4554-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 143,230.36218 -28,0"
id="path4554-5-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 73,230.36218 -33,0"
id="path4554-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 182,260.36218 0,-28"
id="path4554-5-0-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 158,260.36218 0,-28"
id="path4554-5-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 76,305.36218 0,-28"
id="path4554-5-0-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 100,305.36218 0,-28"
id="path4554-5-0-2-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293,260.36218 0,-28"
id="path4554-5-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 348,230.36218 -28,0"
id="path4554-5-2-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,230.36218 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 305,217.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 170,217.36218 0,25"
id="path4405-1-3-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 100,217.36218 0,25"
id="path4405-1-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 88,262.36218 0,25"
id="path4405-1-3-8-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 293,262.36219 0,25"
id="path4405-1-3-84"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 363,262.36218 0,25"
id="path4405-1-3-8-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 281,305.36218 0,-27.99999"
id="path4554-5-0-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 336,275.36219 -28,0"
id="path4554-5-2-3-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 351,305.36217 0,-27.99999"
id="path4554-5-0-2-26"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 375,305.36217 0,-27.99999"
id="path4554-5-0-2-6-91"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-38.610236,-216.09643)">
<path
transform="translate(175.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-3"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(200,145.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(163.5,190.47259)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(188,190.50001)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="277.17856"
y="323.89789"
id="text3007-0-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5"
x="277.17856"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="359.17856"
y="233.8979"
id="text3007-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8"
x="359.17856"
y="233.8979"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">4</tspan></text>
<path
transform="translate(233.5,190)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-37-2"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(257.5,190)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-8-5"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="344.17856"
y="323.89789"
id="text3007-0-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52"
x="344.17856"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="374.17856"
y="323.89789"
id="text3007-0-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-6"
x="374.17856"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">3</tspan></text>
<path
transform="translate(-41.5,190)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-37-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(-17.5,190)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-8-2"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(40.5,145)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-37"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(64.5,145)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="152.17856"
y="278.89789"
id="text3007-0-6-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-6-4"
x="152.17856"
y="278.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">3</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="182.17856"
y="278.89789"
id="text3007-0-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-3"
x="182.17856"
y="278.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">4</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="69.178558"
y="323.89789"
id="text3007-0-2-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-5"
x="69.178558"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="99.178558"
y="323.89789"
id="text3007-0-7-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-6"
x="99.178558"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="57.930206"
y="360.57648"
id="text4089"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4091"
x="57.930206"
y="360.57648">(cons (cons 1 2) (cons (cons 1</tspan><tspan
sodipodi:role="line"
x="57.930206"
y="374.32648"
id="tspan4093"> (cons 3 4)) (cons 2 3))</tspan><tspan
sodipodi:role="line"
x="57.930206"
y="388.07648"
id="tspan4095"> 4)</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

898
src/fig/chap2/Fig2.3d.svg Normal file
View File

@ -0,0 +1,898 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="744.09448"
height="1052.3622"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
style="display:inline"
sodipodi:docname="Fig2.3c.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path4559"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
id="path4565-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3340"
style="overflow:visible">
<path
id="path3342"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3344"
style="overflow:visible">
<path
id="path3346"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-6"
style="overflow:visible">
<path
id="path4565-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3411"
style="overflow:visible">
<path
id="path3413"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3415"
style="overflow:visible">
<path
id="path3417"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-95"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3505"
style="overflow:visible">
<path
id="path3507"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3509"
style="overflow:visible">
<path
id="path3511"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-88"
style="overflow:visible">
<path
id="path4565-45"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-33"
style="overflow:visible">
<path
id="path4565-46"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3610"
style="overflow:visible">
<path
id="path3612"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-27"
style="overflow:visible">
<path
id="path4565-91"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3686"
style="overflow:visible">
<path
id="path3688"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3690"
style="overflow:visible">
<path
id="path3692"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-1"
style="overflow:visible">
<path
id="path4565-26"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3750"
style="overflow:visible">
<path
id="path3752"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="231.28098"
inkscape:cy="743.36525"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1440"
inkscape:window-height="824"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3015" />
</sodipodi:namedview>
<metadata
id="metadata_2.3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.3</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>pair</rdf:li>
<rdf:li>hierarchical</rdf:li>
<rdf:li>data</rdf:li>
<rdf:li>structure</rdf:li>
<rdf:li>combination</rdf:li>
<rdf:li>box-and-pointer</rdf:li>
<rdf:li>box</rdf:li>
<rdf:li>pointer</rdf:li>
<rdf:li>notation</rdf:li>
<rdf:li>cons</rdf:li>
<rdf:li>car</rdf:li>
<rdf:li>cdr</rdf:li>
<rdf:li>closure</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Boxes">
<rect
style="fill:#d1e8ff;fill-opacity:1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0"
width="50"
height="25"
x="75"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#d1e8ff;fill-opacity:1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-3"
width="50"
height="25"
x="280"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#d1e8ff;fill-opacity:1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-0"
width="50"
height="25"
x="145"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#d1e8ff;fill-opacity:1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-0-6"
width="50"
height="25"
x="63"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#ffe8d1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;fill-opacity:1"
id="rect3794-77-9-8-4"
width="25"
height="25"
x="143"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#ffe8d1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;fill-opacity:1"
id="rect3794-77-9-48"
width="25"
height="25"
x="173"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#ffe8d1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;fill-opacity:1"
id="rect3794-77-9-4-6"
width="25"
height="25"
x="60"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#ffe8d1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;fill-opacity:1"
id="rect3794-77-9-5-4"
width="25"
height="25"
x="90"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#ffe8d1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;fill-opacity:1"
id="rect3794-77-9"
width="25"
height="25"
x="350"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#d1e8ff;fill-opacity:1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6"
width="50"
height="25"
x="268"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#d1e8ff;fill-opacity:1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-0-5"
width="50"
height="25"
x="338"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#ffe8d1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;fill-opacity:1"
id="rect3794-77-9-4"
width="25"
height="25"
x="268"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#ffe8d1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;fill-opacity:1"
id="rect3794-77-9-5"
width="25"
height="25"
x="335"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="display:inline;fill:#ffe8d1;stroke:#000000;stroke-width:0.53149606000000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;fill-opacity:1"
id="rect3794-77-9-8"
width="25"
height="25"
x="365"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Arrows"
style="display:inline">
<path
transform="translate(-29.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
transform="translate(-5,145.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 88,260.36218 0,-28"
id="path4554-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 143,230.36218 -28,0"
id="path4554-5-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 73,230.36218 -33,0"
id="path4554-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 182,260.36218 0,-28"
id="path4554-5-0-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 158,260.36218 0,-28"
id="path4554-5-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 76,305.36218 0,-28"
id="path4554-5-0-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 100,305.36218 0,-28"
id="path4554-5-0-2-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 293,260.36218 0,-28"
id="path4554-5-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 348,230.36218 -28,0"
id="path4554-5-2-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 278,230.36218 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.53149606;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,217.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.53149606;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 170,217.36218 0,25"
id="path4405-1-3-8"
inkscape:connector-curvature="0" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.53149606;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 100,217.36218 0,25"
id="path4405-1-3"
inkscape:connector-curvature="0" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.53149606;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 88,262.36218 0,25"
id="path4405-1-3-8-1"
inkscape:connector-curvature="0" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.53149606;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 293,262.36219 0,25"
id="path4405-1-3-84"
inkscape:connector-curvature="0" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.53149606;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 363,262.36218 0,25"
id="path4405-1-3-8-6"
inkscape:connector-curvature="0" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 281,305.36218 0,-27.99999"
id="path4554-5-0-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 336,275.36219 -28,0"
id="path4554-5-2-3-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 351,305.36217 0,-27.99999"
id="path4554-5-0-2-26"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.77952756;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)"
d="m 375,305.36217 0,-27.99999"
id="path4554-5-0-2-6-91"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline">
<path
transform="translate(175.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-3"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
transform="translate(200,145.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
transform="translate(163.5,190.47259)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
transform="translate(188,190.50001)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="277.17856"
y="323.89789"
id="text3007-0-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5"
x="277.17856"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="359.17856"
y="233.8979"
id="text3007-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8"
x="359.17856"
y="233.8979"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">4</tspan></text>
<path
transform="translate(233.5,190)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-37-2"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
transform="translate(257.5,190)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-8-5"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="344.17856"
y="323.89789"
id="text3007-0-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52"
x="344.17856"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="374.17856"
y="323.89789"
id="text3007-0-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-6"
x="374.17856"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">3</tspan></text>
<path
transform="translate(-41.5,190)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-37-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
transform="translate(-17.5,190)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-8-2"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
transform="translate(40.5,145)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-37"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<path
transform="translate(64.5,145)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 a 2.5,2.5 0 1 1 -5,0 2.5,2.5 0 1 1 5,0 z" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="152.17856"
y="278.89789"
id="text3007-0-6-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-6-4"
x="152.17856"
y="278.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">3</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="182.17856"
y="278.89789"
id="text3007-0-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-3"
x="182.17856"
y="278.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">4</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="69.178558"
y="323.89789"
id="text3007-0-2-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-5"
x="69.178558"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="99.178558"
y="323.89789"
id="text3007-0-7-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-6"
x="99.178558"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="57.930206"
y="360.57648"
id="text4089"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4091"
x="57.930206"
y="360.57648">(cons (cons 1 2) (cons (cons 1</tspan><tspan
sodipodi:role="line"
x="57.930206"
y="374.32648"
id="tspan4093"> (cons 3 4)) (cons 2 3))</tspan><tspan
sodipodi:role="line"
x="57.930206"
y="388.07648"
id="tspan4095"> 4)</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

749
src/fig/chap2/Fig2.4c.svg Normal file
View File

@ -0,0 +1,749 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="297.65552"
height="72.531502"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
style="display:inline"
sodipodi:docname="Fig2.4c.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path4559"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
id="path4565-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3340"
style="overflow:visible">
<path
id="path3342"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3344"
style="overflow:visible">
<path
id="path3346"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-6"
style="overflow:visible">
<path
id="path4565-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3411"
style="overflow:visible">
<path
id="path3413"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3415"
style="overflow:visible">
<path
id="path3417"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-95"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3505"
style="overflow:visible">
<path
id="path3507"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3509"
style="overflow:visible">
<path
id="path3511"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-88"
style="overflow:visible">
<path
id="path4565-45"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-33"
style="overflow:visible">
<path
id="path4565-46"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3610"
style="overflow:visible">
<path
id="path3612"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-27"
style="overflow:visible">
<path
id="path4565-91"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3686"
style="overflow:visible">
<path
id="path3688"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3690"
style="overflow:visible">
<path
id="path3692"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-1"
style="overflow:visible">
<path
id="path4565-26"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3750"
style="overflow:visible">
<path
id="path3752"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-7"
style="overflow:visible">
<path
id="path4565-61"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3192"
style="overflow:visible">
<path
id="path3194"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-26"
style="overflow:visible">
<path
id="path4565-910"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3192-4"
style="overflow:visible">
<path
id="path3194-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="153.6775"
inkscape:cy="32.022968"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid3015"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-38.610236px"
originy="-763.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_2.4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.4</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.4</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>list</rdf:li>
<rdf:li>pair</rdf:li>
<rdf:li>sequence</rdf:li>
<rdf:li>chain</rdf:li>
<rdf:li>cons</rdf:li>
<rdf:li>car</rdf:li>
<rdf:li>cdr</rdf:li>
<rdf:li>nil</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Boxes"
transform="translate(-38.610236,-216.09643)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0"
width="50"
height="25"
x="75"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="145"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-6-0"
width="50"
height="25"
x="215"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-6"
width="50"
height="25"
x="285"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4"
width="25"
height="25"
x="75"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9"
width="25"
height="25"
x="285"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5"
width="25"
height="25"
x="145"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-8"
width="25"
height="25"
x="215"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
transform="translate(-38.610236,-216.09643)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 100,217.36218 0,25"
id="path4405-1-3"
inkscape:connector-curvature="0" />
<path
transform="translate(-29.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(-5,145.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 88,260.36218 0,-28"
id="path4554-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 143,230.36218 -28,0"
id="path4554-5-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 73,230.36218 -33,0"
id="path4554-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 158,260.36218 0,-28"
id="path4554-5-0-7-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 213,230.36218 -28,0"
id="path4554-5-2-3-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 228,260.36218 0,-28"
id="path4554-5-0-7-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 283,230.36218 -28,0"
id="path4554-5-2-3-2-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 298,260.36218 0,-28"
id="path4554-5-0-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(180.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 170,217.36218 0,25"
id="path4405-1-3-84-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 240,217.36218 0,25"
id="path4405-1-3-84-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 310,217.36218 0,25"
id="path4405-1-3-84"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53100002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 310,242.36218 24,-24"
id="path4373"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-38.610236,-216.09643)">
<path
transform="translate(40.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(65,145.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(110.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-2"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(135,145.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-6-80"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="84.178558"
y="278.89789"
id="text3007-0-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5"
x="84.178558"
y="278.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="294.17856"
y="278.89789"
id="text3007-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8"
x="294.17856"
y="278.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">4</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="154.17856"
y="278.89789"
id="text3007-0-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52"
x="154.17856"
y="278.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="224.17856"
y="278.89789"
id="text3007-0-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-6"
x="224.17856"
y="278.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">3</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

903
src/fig/chap2/Fig2.5c.svg Normal file
View File

@ -0,0 +1,903 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="355.73022"
height="155.75775"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
style="display:inline"
sodipodi:docname="Fig2.5c.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path4559"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
id="path4565-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3340"
style="overflow:visible">
<path
id="path3342"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3344"
style="overflow:visible">
<path
id="path3346"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-6"
style="overflow:visible">
<path
id="path4565-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3411"
style="overflow:visible">
<path
id="path3413"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3415"
style="overflow:visible">
<path
id="path3417"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-95"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3505"
style="overflow:visible">
<path
id="path3507"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3509"
style="overflow:visible">
<path
id="path3511"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-88"
style="overflow:visible">
<path
id="path4565-45"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-33"
style="overflow:visible">
<path
id="path4565-46"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3610"
style="overflow:visible">
<path
id="path3612"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-27"
style="overflow:visible">
<path
id="path4565-91"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3686"
style="overflow:visible">
<path
id="path3688"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3690"
style="overflow:visible">
<path
id="path3692"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-1"
style="overflow:visible">
<path
id="path4565-26"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3750"
style="overflow:visible">
<path
id="path3752"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-7"
style="overflow:visible">
<path
id="path4565-61"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3192"
style="overflow:visible">
<path
id="path3194"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-26"
style="overflow:visible">
<path
id="path4565-910"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3192-4"
style="overflow:visible">
<path
id="path3194-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
id="path4565-69"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4579"
style="overflow:visible">
<path
id="path4581"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4583"
style="overflow:visible">
<path
id="path4585"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-65"
style="overflow:visible">
<path
id="path4565-96"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-41"
style="overflow:visible">
<path
id="path4565-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="187.80439"
inkscape:cy="68.814467"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid3015"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="9.4644727px"
originy="-718.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_2.5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.5</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.5</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>list</rdf:li>
<rdf:li>pair</rdf:li>
<rdf:li>sequence</rdf:li>
<rdf:li>chain</rdf:li>
<rdf:li>cons</rdf:li>
<rdf:li>car</rdf:li>
<rdf:li>cdr</rdf:li>
<rdf:li>nil</rdf:li>
<rdf:li>hierarchical</rdf:li>
<rdf:li>structure</rdf:li>
<rdf:li>tree</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Box"
style="display:inline"
transform="translate(9.4644727,-177.87018)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0"
width="50"
height="25"
x="75"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-6-0"
width="50"
height="25"
x="225"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-6"
width="50"
height="25"
x="295"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-9"
width="50"
height="25"
x="75"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-7-1-0-6-8"
width="50"
height="25"
x="145"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-8"
width="25"
height="25"
x="225"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9"
width="25"
height="25"
x="295"
y="262.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4"
width="25"
height="25"
x="75"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5"
width="25"
height="25"
x="145"
y="307.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
transform="translate(9.4644727,-177.87018)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 100,217.36218 0,25"
id="path4405-1-3"
inkscape:connector-curvature="0" />
<path
transform="translate(-29.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(-5,145.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 88,260.36218 0,-28"
id="path4554-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 223,230.36218 -108,0"
id="path4554-5-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 73,230.36218 -33,0"
id="path4554-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 100,262.36218 0,25"
id="path4405-1-3-6"
inkscape:connector-curvature="0" />
<path
transform="translate(-29.5,190.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(-5,190.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-5"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 73,275.36218 -33,0"
id="path4554-9-4-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 238,260.36218 0,-28"
id="path4554-5-0-7-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293,230.36218 -28,0"
id="path4554-5-2-3-2-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 308,260.36218 0,-28"
id="path4554-5-0-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 88,305.36218 0,-28"
id="path4554-5-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 143,275.36218 -28,0"
id="path4554-5-2-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 158,305.36218 0,-28"
id="path4554-5-0-7-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="62"
y="270.36218"
id="text4685"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4687"
x="62"
y="270.36218">(1 2)</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 250,217.36218 0,25"
id="path4405-1-3-84-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 320,217.36218 0,25"
id="path4405-1-3-84"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53100002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 320,242.36218 24,-24"
id="path4373"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 170,262.36218 0,25"
id="path4405-1-3-84-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53100002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 170,287.36218 24,-24"
id="path4373-0"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(9.4644727,-177.87018)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="304.17856"
y="278.89789"
id="text3007-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8"
x="304.17856"
y="278.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">4</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="84.178558"
y="323.89789"
id="text3007-0-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5"
x="84.178558"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="154.17856"
y="323.89789"
id="text3007-0-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52"
x="154.17856"
y="323.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="234.17856"
y="278.89789"
id="text3007-0-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-6"
x="234.17856"
y="278.89789"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">3</tspan></text>
<path
transform="translate(120.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-2"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(145,145.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-6-80"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(190.5,145.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(40.5,190.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-5"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 250,215.36218 0,-23"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="250"
y="187.36218"
id="text4727"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4729"
x="250"
y="187.36218">(3 4)</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="62.218262"
y="225.36218"
id="text4681"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4683"
x="62.218262"
y="225.36218">((1 2) 3 4)</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

365
src/fig/chap2/Fig2.6a.svg Normal file
View File

@ -0,0 +1,365 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="89.541183"
height="102.43165"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
style="display:inline"
sodipodi:docname="Fig2.6a.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="3.959798"
inkscape:cx="46.958996"
inkscape:cy="56.58596"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:snap-global="true"
showguides="true"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid3909"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-152.89148px"
originy="-455.989px" />
</sodipodi:namedview>
<metadata
id="metadata_2.6">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.6</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.6</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>tree</rdf:li>
<rdf:li>subtree</rdf:li>
<rdf:li>list</rdf:li>
<rdf:li>hierarchical</rdf:li>
<rdf:li>structure</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-152.89148,-493.94153)">
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="513.57141"
y="283.07648"
id="text3021"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3023"
x="513.57141"
y="283.07648" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New"
x="405.71429"
y="258.79074"
id="text3025"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3027"
x="405.71429"
y="258.79074" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono"
x="425"
y="258.79074"
id="text3029"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3031"
x="425"
y="258.79074" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:FreeMono;-inkscape-font-specification:FreeMono"
x="432.14285"
y="250.93361"
id="text3033"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3035"
x="432.14285"
y="250.93361" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:FreeMono;-inkscape-font-specification:FreeMono"
x="422.85715"
y="254.50504"
id="text3037"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3039"
x="422.85715"
y="254.50504" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Liberation Mono;-inkscape-font-specification:Liberation Mono"
x="420.71429"
y="258.79074"
id="text3041"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3043"
x="420.71429"
y="258.79074"
style="font-size:22px" /></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Liberation Mono;-inkscape-font-specification:Liberation Mono"
x="235"
y="259.50504"
id="text3045"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3047"
x="235"
y="259.50504"
style="font-size:22px" /></text>
<text
xml:space="preserve"
style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Liberation Mono;-inkscape-font-specification:Liberation Mono"
x="281.42856"
y="347.36218"
id="text3049"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3051"
x="281.42856"
y="347.36218" /></text>
<text
xml:space="preserve"
style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="285"
y="258.07648"
id="text3053"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3055"
x="285"
y="258.07648"
style="font-size:24px" /></text>
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="473.57144"
y="380.93362"
id="text3057"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3059"
x="473.57144"
y="380.93362" /></text>
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="397.14285"
y="221.6479"
id="text3061"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3063"
x="397.14285"
y="221.6479" /></text>
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"
x="420.71429"
y="396.64789"
id="text3065"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3067"
x="420.71429"
y="396.64789" /></text>
<flowRoot
xml:space="preserve"
id="flowRoot3073"
style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:LMMono12;-inkscape-font-specification:LMMono12"><flowRegion
id="flowRegion3075"><rect
id="rect3077"
width="88.571426"
height="63.57143"
x="492.85715"
y="255.93361" /></flowRegion><flowPara
id="flowPara3079" /></flowRoot> <path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 190,547.36218 c 1,-15 6,-27 17.27273,-35 4.72727,11 5.72727,23 5.72727,35"
id="path3923-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 207.27273,512.36218 c 16.72727,7 24.72727,19 27.72727,35"
id="path3925-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 170,582.36218 c 2,-15 8,-26 20,-35 6,10 9,20 10,35"
id="path3911-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
<path
transform="matrix(0.8503937,0,0,0.8503937,90.07874,475.3219)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-8-5"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.0545509"
sodipodi:ry="2.0545509"
d="m 119.55455,84.862183 c 0,1.134697 -0.91985,2.054551 -2.05455,2.054551 -1.1347,0 -2.05455,-0.919854 -2.05455,-2.054551 0,-1.134698 0.91985,-2.054551 2.05455,-2.054551 1.1347,0 2.05455,0.919853 2.05455,2.054551 z"
inkscape:transform-center-x="2.1259848" />
<path
transform="matrix(0.8503937,0,0,0.8503937,107.39467,440.43836)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-8-5-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.0545506"
sodipodi:ry="2.0545506"
d="m 119.55455,84.862183 c 0,1.134697 -0.91985,2.05455 -2.05455,2.05455 -1.1347,0 -2.05455,-0.919853 -2.05455,-2.05455 0,-1.134697 0.91985,-2.054551 2.05455,-2.054551 1.1347,0 2.05455,0.919854 2.05455,2.054551 z" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-152.89148,-493.94153)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="207"
y="503.43353"
id="text5080"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5082"
x="207"
y="503.43353">((1 2) 3 4)</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="185"
y="542.36218"
id="text5689"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5691"
x="185"
y="542.36218">(1 2)</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="213"
y="560.36218"
id="text5673"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5675"
x="213"
y="560.36218">3</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="235"
y="560.36218"
id="text5677"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5679"
x="235"
y="560.36218">4</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="170"
y="595.36218"
id="text5681"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5683"
x="170"
y="595.36218">1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="200"
y="595.36218"
id="text5685"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5687"
x="200"
y="595.36218">2</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

455
src/fig/chap2/Fig2.7d.svg Normal file
View File

@ -0,0 +1,455 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="442.53149"
height="112.53149"
id="svg5731"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.7d.svg">
<defs
id="defs5733">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
id="path4565-67"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-7"
style="overflow:visible">
<path
id="path4565-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-81"
style="overflow:visible">
<path
id="path4565-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="214.55324"
inkscape:cy="63.662403"
inkscape:document-units="px"
inkscape:current-layer="layer4"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
units="px"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid5753"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-48.734252px"
originy="-788.73427px" />
</sodipodi:namedview>
<metadata
id="metadata_2.7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.7</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.7</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>signal</rdf:li>
<rdf:li>flow</rdf:li>
<rdf:li>cascade</rdf:li>
<rdf:li>stage</rdf:li>
<rdf:li>sum-odd-squares</rdf:li>
<rdf:li>even-fibs</rdf:li>
<rdf:li>enumerator</rdf:li>
<rdf:li>filter</rdf:li>
<rdf:li>map</rdf:li>
<rdf:li>accumulator</rdf:li>
<rdf:li>odd</rdf:li>
<rdf:li>even</rdf:li>
<rdf:li>fib</rdf:li>
<rdf:li>square</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Splines"
transform="translate(-48.734252,-151.09643)"
style="display:inline">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-8"
width="95"
height="45"
x="50"
y="152.36218"
rx="7.0866141"
ry="7.0866141" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-8-7"
width="95"
height="45"
x="165"
y="152.36218"
rx="7.0866141"
ry="7.0866141" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-8-2"
width="95"
height="45"
x="280"
y="152.36218"
rx="7.0866141"
ry="7.0866141" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-8-1"
width="95"
height="45"
x="395"
y="152.36218"
rx="7.0866141"
ry="7.0866141" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-8-79"
width="95"
height="45"
x="50"
y="217.36218"
rx="7.0866141"
ry="7.0866141" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-8-11"
width="95"
height="45"
x="165"
y="217.36218"
rx="7.0866141"
ry="7.0866141" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-8-119"
width="95"
height="45"
x="280"
y="217.36218"
rx="7.0866141"
ry="7.0866141" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-8-0"
width="95"
height="45"
x="395"
y="217.36218"
rx="7.0866141"
ry="7.0866141" />
<path
transform="translate(0,-2.5390623e-6)"
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 163,175.10964 -18,0"
id="path4554-9-4-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(0,-2.5390623e-6)"
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,175.10964 -18,0"
id="path4554-9-4-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(0,-2.5390623e-6)"
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 393,175.10964 -18,0"
id="path4554-9-4-2-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(0,-2.5390623e-6)"
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 393,240.10964 -18,0"
id="path4554-9-4-2-0-61"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(0,-2.5390623e-6)"
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,240.10964 -18,0"
id="path4554-9-4-2-0-65"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(0,-2.5390623e-6)"
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 163,240.10964 -18,0"
id="path4554-9-4-2-0-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
transform="translate(-48.734252,-151.09643)"
style="display:inline">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="60"
y="171.35202"
id="text5834"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5836"
x="60"
y="171.35202">enumerate:</tspan><tspan
sodipodi:role="line"
x="60"
y="185.10202"
id="tspan5838">tree leaves</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="175"
y="171.35202"
id="text5840"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5842"
x="175"
y="171.35202">filter:</tspan><tspan
sodipodi:role="line"
x="175"
y="185.10202"
id="tspan5844">odd?</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="290"
y="171.35202"
id="text5846"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5848"
x="290"
y="171.35202">map:</tspan><tspan
sodipodi:role="line"
x="290"
y="185.10202"
id="tspan5850">square</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="405"
y="171.35202"
id="text5852"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5854"
x="405"
y="171.35202">accumulate:</tspan><tspan
sodipodi:role="line"
x="405"
y="185.10202"
id="tspan5856">+, 0</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="60"
y="236.35202"
id="text5876"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5878"
x="60"
y="236.35202">enumerate:</tspan><tspan
sodipodi:role="line"
x="60"
y="250.10202"
id="tspan5880">integers</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="175"
y="236.35202"
id="text5870"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5872"
x="175"
y="236.35202">map:</tspan><tspan
sodipodi:role="line"
x="175"
y="250.10202"
id="tspan5874">fib</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="290"
y="236.35202"
id="text5864"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5866"
x="290"
y="236.35202">filter:</tspan><tspan
sodipodi:role="line"
x="290"
y="250.10202"
id="tspan5868">even?</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="405"
y="236.35202"
id="text5858"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5860"
x="405"
y="236.35202">accumulate:</tspan><tspan
sodipodi:role="line"
x="405"
y="250.10202"
id="tspan5862">cons, ()</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

392
src/fig/chap2/Fig2.8c.svg Normal file
View File

@ -0,0 +1,392 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="202.88583"
height="202.88583"
id="svg3169"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig2.8c.svg"
style="display:inline">
<defs
id="defs3171" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="88.396563"
inkscape:cy="77.724833"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid3177"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-58.557087px"
originy="-743.55709px" />
</sodipodi:namedview>
<metadata
id="metadata_2.8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 2.8</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_fig_2.8</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>eight</rdf:li>
<rdf:li>queens</rdf:li>
<rdf:li>puzzle</rdf:li>
<rdf:li>solution</rdf:li>
<rdf:li>chess</rdf:li>
<rdf:li>chessboard</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Chessboard"
style="display:inline"
transform="translate(-58.557087,-105.91927)">
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 85.17257,219.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-53"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 135.17257,219.75705 c 0,-4.04762 0,-8.09524 0,-12.14286 8.21428,0 16.42857,0 24.64285,0 0,8.09524 0,16.19048 0,24.28572 -8.21428,0 -16.42857,0 -24.64285,0 0,-4.04762 0,-8.09524 0,-12.14286 z"
id="path4737-47"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 185.17257,219.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-7"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 235.17257,219.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-13"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 60.17257,194.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-3"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 110.17257,194.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-30"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 160.17257,194.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-9"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 210.17257,194.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-301"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 85.17257,169.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-6"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 135.17257,169.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-79"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 185.17257,169.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-43"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 235.17257,169.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-86"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 60.17257,144.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-01"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 110.17257,144.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-42"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 160.17257,144.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-12"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 210.17257,144.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-70"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 85.17257,119.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-436"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 135.17257,119.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-64"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 185.17257,119.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-07"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 257.45743,107.73525 c 0.866,0.26342 1.53135,0.81964 1.97351,1.64978 0.2237,0.42002 0.23708,0.98865 0.26964,11.45892 l 0.0343,11.01698 -12.12452,0 -12.12452,0 0,-12.12183 0,-12.12183 10.82757,0.0108 c 5.95516,0.006 10.96999,0.0542 11.14406,0.10714 z"
id="path4735-1-3"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 60.17257,244.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-17"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 110.17257,244.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-0"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 160.17257,244.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-5"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 210.17257,244.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-89"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 85.172567,269.75705 0,-12.14286 12.321429,0 12.321424,0 0,12.14286 0,12.14286 -12.321424,0 -12.321429,0 0,-12.14286 z"
id="path4743"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 135.17257,269.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-4"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 185.17257,269.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-8"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 235.17257,269.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-1"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 62.76329,306.74295 c -0.865999,-0.26342 -1.531354,-0.81964 -1.973505,-1.64978 -0.223705,-0.42002 -0.237086,-0.98865 -0.269645,-11.45892 l -0.03426,-11.01698 12.124522,0 12.124522,0 0,12.12183 0,12.12183 -10.827572,-0.0108 c -5.955165,-0.006 -10.969993,-0.0542 -11.144063,-0.10714 z"
id="path4735"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 110.17257,294.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 160.17257,294.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-129"
inkscape:connector-curvature="0" />
<path
style="fill:#cecece;fill-opacity:1;stroke:#cecece;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 210.17257,294.75705 0,-12.14286 12.32143,0 12.32142,0 0,12.14286 0,12.14286 -12.32142,0 -12.32143,0 0,-12.14286 z"
id="path4737-15"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Border"
style="display:inline"
transform="translate(-58.557087,-105.91927)">
<rect
style="fill:none;stroke:#cecece;stroke-width:0.88582677;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-0"
width="200"
height="200"
x="60"
y="107.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Queens"
transform="translate(-58.557087,-105.91927)">
<g
id="g3908"
transform="matrix(0.07386037,0,0,0.07386037,61.907979,147.89019)">
<g
id="g3910">
<path
id="path3912"
d="m 200.1094,288.2812 25.1718,-27 q 25.0313,-26.7187 25.0313,-26.5781 -5.4844,-4.6406 -5.4844,-11.8125 0,-6.3281 4.3594,-10.6875 4.3594,-4.3593 10.5469,-4.3593 6.3281,0 10.6875,4.3593 4.3593,4.3594 4.3593,10.6875 0,6.1875 -4.3593,10.5469 -4.3594,4.3594 -10.6875,4.3594 l -1.6875,0 -36.8438,87.8906 0,67.3594 q 0,11.25 -24.8906,18.914 -24.8906,7.6641 -52.875,7.6641 -28.125,0 -52.9453,-7.6641 -24.8203,-7.664 -24.8203,-18.914 l 0,-67.3594 -36.8438,-87.8906 -1.6875,0 q -6.3281,0 -10.6875,-4.3594 -4.3593,-4.3594 -4.3593,-10.5469 0,-6.3281 4.3593,-10.6875 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6875 0,7.3125 -5.4844,11.5313 l 50.0625,53.8593 -4.2188,-73.125 q -6.0468,0 -10.4062,-4.4296 -4.3594,-4.4297 -4.3594,-10.6172 0,-6.3282 4.3594,-10.6172 4.3594,-4.2891 10.6875,-4.2891 6.1875,0 10.5469,4.3594 4.3594,4.3594 4.3594,10.5469 0,8.0156 -6.8907,12.6562 l 32.625,65.9532 15.75,-73.4063 q -10.6875,-3.375 -10.6875,-14.3437 0,-6.3282 4.3594,-10.6876 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6876 0,10.9687 -10.5469,14.3437 l 15.75,73.4063 32.625,-65.9532 q -6.8907,-4.2187 -6.8907,-12.6562 0,-6.1875 4.3594,-10.5469 4.3594,-4.3594 10.5469,-4.3594 6.1875,0 10.6172,4.3594 4.4297,4.3594 4.4297,10.5469 0,6.1875 -4.3594,10.6172 -4.3594,4.4296 -10.4062,4.4296 l -4.3594,73.125 z m -56.6719,-90.4218 q 2.8125,0 4.8516,-2.1094 2.039,-2.1094 2.039,-4.7812 0,-2.8126 -2.039,-4.9219 -2.0391,-2.1094 -4.8516,-2.1094 -2.8125,0 -4.8516,2.1094 -2.039,2.1093 -2.039,4.9219 0,2.6718 2.039,4.7812 2.0391,2.1094 4.8516,2.1094 z m 60.75,9.1406 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 201.375,207 204.1875,207 z m -121.5,0 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 79.875,207 82.6875,207 z m 177.0469,22.7812 q 2.8125,0 4.8515,-2.039 2.0391,-2.0391 2.0391,-4.8516 0,-2.8125 -2.0391,-4.8515 Q 262.5469,216 259.7344,216 q -2.8125,0 -4.8516,2.0391 -2.039,2.039 -2.039,4.8515 0,2.8125 2.039,4.8516 2.0391,2.039 4.8516,2.039 z m -232.5938,0 q 2.6719,0 4.7813,-2.039 2.1093,-2.0391 2.1093,-4.8516 0,-2.8125 -2.1093,-4.8515 Q 29.8125,216 27.1406,216 q -2.8125,0 -4.9218,2.0391 -2.1094,2.039 -2.1094,4.8515 0,2.8125 2.1094,4.8516 2.1093,2.039 4.9218,2.039 z m 186.0469,112.6407 0,-11.8125 q -24.4687,-17.0156 -69.75,-17.0156 -45.2813,0 -69.75,17.0156 l 0,11.8125 q 7.1719,-9.4219 26.5078,-15.1172 19.3359,-5.6953 43.2422,-5.6953 23.9063,0 43.2422,5.6953 19.3359,5.6953 26.5078,15.1172 z m -51.8906,-2.3907 -17.8594,-11.25 -17.8594,11.25 17.8594,12.6563 17.8594,-12.6563 z m 51.8906,30.2344 0,-23.625 -10.9687,6.75 10.9687,16.875 z m -128.5313,-16.875 -10.9687,-6.75 0,23.625 10.9687,-16.875 z m 128.5313,32.2032 0,-9 q -28.6875,-15.75 -69.75,-15.75 -41.0625,0 -69.75,15.75 l 0,9 q 12.375,-7.5938 31.4297,-12.1641 19.0547,-4.5703 38.3203,-4.5703 19.125,0 38.1797,4.5703 19.0547,4.5703 31.5703,12.1641 z"
inkscape:connector-curvature="0"
style="stroke:none" />
</g>
</g>
<g
style="display:inline"
id="g3908-9"
transform="matrix(0.07386037,0,0,0.07386037,111.83108,122.88301)">
<g
id="g3910-0">
<path
id="path3912-0"
d="m 200.1094,288.2812 25.1718,-27 q 25.0313,-26.7187 25.0313,-26.5781 -5.4844,-4.6406 -5.4844,-11.8125 0,-6.3281 4.3594,-10.6875 4.3594,-4.3593 10.5469,-4.3593 6.3281,0 10.6875,4.3593 4.3593,4.3594 4.3593,10.6875 0,6.1875 -4.3593,10.5469 -4.3594,4.3594 -10.6875,4.3594 l -1.6875,0 -36.8438,87.8906 0,67.3594 q 0,11.25 -24.8906,18.914 -24.8906,7.6641 -52.875,7.6641 -28.125,0 -52.9453,-7.6641 -24.8203,-7.664 -24.8203,-18.914 l 0,-67.3594 -36.8438,-87.8906 -1.6875,0 q -6.3281,0 -10.6875,-4.3594 -4.3593,-4.3594 -4.3593,-10.5469 0,-6.3281 4.3593,-10.6875 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6875 0,7.3125 -5.4844,11.5313 l 50.0625,53.8593 -4.2188,-73.125 q -6.0468,0 -10.4062,-4.4296 -4.3594,-4.4297 -4.3594,-10.6172 0,-6.3282 4.3594,-10.6172 4.3594,-4.2891 10.6875,-4.2891 6.1875,0 10.5469,4.3594 4.3594,4.3594 4.3594,10.5469 0,8.0156 -6.8907,12.6562 l 32.625,65.9532 15.75,-73.4063 q -10.6875,-3.375 -10.6875,-14.3437 0,-6.3282 4.3594,-10.6876 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6876 0,10.9687 -10.5469,14.3437 l 15.75,73.4063 32.625,-65.9532 q -6.8907,-4.2187 -6.8907,-12.6562 0,-6.1875 4.3594,-10.5469 4.3594,-4.3594 10.5469,-4.3594 6.1875,0 10.6172,4.3594 4.4297,4.3594 4.4297,10.5469 0,6.1875 -4.3594,10.6172 -4.3594,4.4296 -10.4062,4.4296 l -4.3594,73.125 z m -56.6719,-90.4218 q 2.8125,0 4.8516,-2.1094 2.039,-2.1094 2.039,-4.7812 0,-2.8126 -2.039,-4.9219 -2.0391,-2.1094 -4.8516,-2.1094 -2.8125,0 -4.8516,2.1094 -2.039,2.1093 -2.039,4.9219 0,2.6718 2.039,4.7812 2.0391,2.1094 4.8516,2.1094 z m 60.75,9.1406 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 201.375,207 204.1875,207 z m -121.5,0 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 79.875,207 82.6875,207 z m 177.0469,22.7812 q 2.8125,0 4.8515,-2.039 2.0391,-2.0391 2.0391,-4.8516 0,-2.8125 -2.0391,-4.8515 Q 262.5469,216 259.7344,216 q -2.8125,0 -4.8516,2.0391 -2.039,2.039 -2.039,4.8515 0,2.8125 2.039,4.8516 2.0391,2.039 4.8516,2.039 z m -232.5938,0 q 2.6719,0 4.7813,-2.039 2.1093,-2.0391 2.1093,-4.8516 0,-2.8125 -2.1093,-4.8515 Q 29.8125,216 27.1406,216 q -2.8125,0 -4.9218,2.0391 -2.1094,2.039 -2.1094,4.8515 0,2.8125 2.1094,4.8516 2.1093,2.039 4.9218,2.039 z m 186.0469,112.6407 0,-11.8125 q -24.4687,-17.0156 -69.75,-17.0156 -45.2813,0 -69.75,17.0156 l 0,11.8125 q 7.1719,-9.4219 26.5078,-15.1172 19.3359,-5.6953 43.2422,-5.6953 23.9063,0 43.2422,5.6953 19.3359,5.6953 26.5078,15.1172 z m -51.8906,-2.3907 -17.8594,-11.25 -17.8594,11.25 17.8594,12.6563 17.8594,-12.6563 z m 51.8906,30.2344 0,-23.625 -10.9687,6.75 10.9687,16.875 z m -128.5313,-16.875 -10.9687,-6.75 0,23.625 10.9687,-16.875 z m 128.5313,32.2032 0,-9 q -28.6875,-15.75 -69.75,-15.75 -41.0625,0 -69.75,15.75 l 0,9 q 12.375,-7.5938 31.4297,-12.1641 19.0547,-4.5703 38.3203,-4.5703 19.125,0 38.1797,4.5703 19.0547,4.5703 31.5703,12.1641 z"
inkscape:connector-curvature="0"
style="stroke:none" />
</g>
</g>
<g
style="display:inline"
id="g3908-7"
transform="matrix(0.07386037,0,0,0.07386037,186.90798,97.890186)">
<g
id="g3910-06">
<path
id="path3912-04"
d="m 200.1094,288.2812 25.1718,-27 q 25.0313,-26.7187 25.0313,-26.5781 -5.4844,-4.6406 -5.4844,-11.8125 0,-6.3281 4.3594,-10.6875 4.3594,-4.3593 10.5469,-4.3593 6.3281,0 10.6875,4.3593 4.3593,4.3594 4.3593,10.6875 0,6.1875 -4.3593,10.5469 -4.3594,4.3594 -10.6875,4.3594 l -1.6875,0 -36.8438,87.8906 0,67.3594 q 0,11.25 -24.8906,18.914 -24.8906,7.6641 -52.875,7.6641 -28.125,0 -52.9453,-7.6641 -24.8203,-7.664 -24.8203,-18.914 l 0,-67.3594 -36.8438,-87.8906 -1.6875,0 q -6.3281,0 -10.6875,-4.3594 -4.3593,-4.3594 -4.3593,-10.5469 0,-6.3281 4.3593,-10.6875 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6875 0,7.3125 -5.4844,11.5313 l 50.0625,53.8593 -4.2188,-73.125 q -6.0468,0 -10.4062,-4.4296 -4.3594,-4.4297 -4.3594,-10.6172 0,-6.3282 4.3594,-10.6172 4.3594,-4.2891 10.6875,-4.2891 6.1875,0 10.5469,4.3594 4.3594,4.3594 4.3594,10.5469 0,8.0156 -6.8907,12.6562 l 32.625,65.9532 15.75,-73.4063 q -10.6875,-3.375 -10.6875,-14.3437 0,-6.3282 4.3594,-10.6876 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6876 0,10.9687 -10.5469,14.3437 l 15.75,73.4063 32.625,-65.9532 q -6.8907,-4.2187 -6.8907,-12.6562 0,-6.1875 4.3594,-10.5469 4.3594,-4.3594 10.5469,-4.3594 6.1875,0 10.6172,4.3594 4.4297,4.3594 4.4297,10.5469 0,6.1875 -4.3594,10.6172 -4.3594,4.4296 -10.4062,4.4296 l -4.3594,73.125 z m -56.6719,-90.4218 q 2.8125,0 4.8516,-2.1094 2.039,-2.1094 2.039,-4.7812 0,-2.8126 -2.039,-4.9219 -2.0391,-2.1094 -4.8516,-2.1094 -2.8125,0 -4.8516,2.1094 -2.039,2.1093 -2.039,4.9219 0,2.6718 2.039,4.7812 2.0391,2.1094 4.8516,2.1094 z m 60.75,9.1406 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 201.375,207 204.1875,207 z m -121.5,0 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 79.875,207 82.6875,207 z m 177.0469,22.7812 q 2.8125,0 4.8515,-2.039 2.0391,-2.0391 2.0391,-4.8516 0,-2.8125 -2.0391,-4.8515 Q 262.5469,216 259.7344,216 q -2.8125,0 -4.8516,2.0391 -2.039,2.039 -2.039,4.8515 0,2.8125 2.039,4.8516 2.0391,2.039 4.8516,2.039 z m -232.5938,0 q 2.6719,0 4.7813,-2.039 2.1093,-2.0391 2.1093,-4.8516 0,-2.8125 -2.1093,-4.8515 Q 29.8125,216 27.1406,216 q -2.8125,0 -4.9218,2.0391 -2.1094,2.039 -2.1094,4.8515 0,2.8125 2.1094,4.8516 2.1093,2.039 4.9218,2.039 z m 186.0469,112.6407 0,-11.8125 q -24.4687,-17.0156 -69.75,-17.0156 -45.2813,0 -69.75,17.0156 l 0,11.8125 q 7.1719,-9.4219 26.5078,-15.1172 19.3359,-5.6953 43.2422,-5.6953 23.9063,0 43.2422,5.6953 19.3359,5.6953 26.5078,15.1172 z m -51.8906,-2.3907 -17.8594,-11.25 -17.8594,11.25 17.8594,12.6563 17.8594,-12.6563 z m 51.8906,30.2344 0,-23.625 -10.9687,6.75 10.9687,16.875 z m -128.5313,-16.875 -10.9687,-6.75 0,23.625 10.9687,-16.875 z m 128.5313,32.2032 0,-9 q -28.6875,-15.75 -69.75,-15.75 -41.0625,0 -69.75,15.75 l 0,9 q 12.375,-7.5938 31.4297,-12.1641 19.0547,-4.5703 38.3203,-4.5703 19.125,0 38.1797,4.5703 19.0547,4.5703 31.5703,12.1641 z"
inkscape:connector-curvature="0"
style="stroke:none" />
</g>
</g>
<g
style="display:inline"
id="g3908-1"
transform="matrix(0.07386037,0,0,0.07386037,161.90798,197.89019)">
<g
id="g3910-3">
<path
id="path3912-02"
d="m 200.1094,288.2812 25.1718,-27 q 25.0313,-26.7187 25.0313,-26.5781 -5.4844,-4.6406 -5.4844,-11.8125 0,-6.3281 4.3594,-10.6875 4.3594,-4.3593 10.5469,-4.3593 6.3281,0 10.6875,4.3593 4.3593,4.3594 4.3593,10.6875 0,6.1875 -4.3593,10.5469 -4.3594,4.3594 -10.6875,4.3594 l -1.6875,0 -36.8438,87.8906 0,67.3594 q 0,11.25 -24.8906,18.914 -24.8906,7.6641 -52.875,7.6641 -28.125,0 -52.9453,-7.6641 -24.8203,-7.664 -24.8203,-18.914 l 0,-67.3594 -36.8438,-87.8906 -1.6875,0 q -6.3281,0 -10.6875,-4.3594 -4.3593,-4.3594 -4.3593,-10.5469 0,-6.3281 4.3593,-10.6875 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6875 0,7.3125 -5.4844,11.5313 l 50.0625,53.8593 -4.2188,-73.125 q -6.0468,0 -10.4062,-4.4296 -4.3594,-4.4297 -4.3594,-10.6172 0,-6.3282 4.3594,-10.6172 4.3594,-4.2891 10.6875,-4.2891 6.1875,0 10.5469,4.3594 4.3594,4.3594 4.3594,10.5469 0,8.0156 -6.8907,12.6562 l 32.625,65.9532 15.75,-73.4063 q -10.6875,-3.375 -10.6875,-14.3437 0,-6.3282 4.3594,-10.6876 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6876 0,10.9687 -10.5469,14.3437 l 15.75,73.4063 32.625,-65.9532 q -6.8907,-4.2187 -6.8907,-12.6562 0,-6.1875 4.3594,-10.5469 4.3594,-4.3594 10.5469,-4.3594 6.1875,0 10.6172,4.3594 4.4297,4.3594 4.4297,10.5469 0,6.1875 -4.3594,10.6172 -4.3594,4.4296 -10.4062,4.4296 l -4.3594,73.125 z m -56.6719,-90.4218 q 2.8125,0 4.8516,-2.1094 2.039,-2.1094 2.039,-4.7812 0,-2.8126 -2.039,-4.9219 -2.0391,-2.1094 -4.8516,-2.1094 -2.8125,0 -4.8516,2.1094 -2.039,2.1093 -2.039,4.9219 0,2.6718 2.039,4.7812 2.0391,2.1094 4.8516,2.1094 z m 60.75,9.1406 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 201.375,207 204.1875,207 z m -121.5,0 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 79.875,207 82.6875,207 z m 177.0469,22.7812 q 2.8125,0 4.8515,-2.039 2.0391,-2.0391 2.0391,-4.8516 0,-2.8125 -2.0391,-4.8515 Q 262.5469,216 259.7344,216 q -2.8125,0 -4.8516,2.0391 -2.039,2.039 -2.039,4.8515 0,2.8125 2.039,4.8516 2.0391,2.039 4.8516,2.039 z m -232.5938,0 q 2.6719,0 4.7813,-2.039 2.1093,-2.0391 2.1093,-4.8516 0,-2.8125 -2.1093,-4.8515 Q 29.8125,216 27.1406,216 q -2.8125,0 -4.9218,2.0391 -2.1094,2.039 -2.1094,4.8515 0,2.8125 2.1094,4.8516 2.1093,2.039 4.9218,2.039 z m 186.0469,112.6407 0,-11.8125 q -24.4687,-17.0156 -69.75,-17.0156 -45.2813,0 -69.75,17.0156 l 0,11.8125 q 7.1719,-9.4219 26.5078,-15.1172 19.3359,-5.6953 43.2422,-5.6953 23.9063,0 43.2422,5.6953 19.3359,5.6953 26.5078,15.1172 z m -51.8906,-2.3907 -17.8594,-11.25 -17.8594,11.25 17.8594,12.6563 17.8594,-12.6563 z m 51.8906,30.2344 0,-23.625 -10.9687,6.75 10.9687,16.875 z m -128.5313,-16.875 -10.9687,-6.75 0,23.625 10.9687,-16.875 z m 128.5313,32.2032 0,-9 q -28.6875,-15.75 -69.75,-15.75 -41.0625,0 -69.75,15.75 l 0,9 q 12.375,-7.5938 31.4297,-12.1641 19.0547,-4.5703 38.3203,-4.5703 19.125,0 38.1797,4.5703 19.0547,4.5703 31.5703,12.1641 z"
inkscape:connector-curvature="0"
style="stroke:none" />
</g>
</g>
<g
style="display:inline"
id="g3908-96"
transform="matrix(0.07386037,0,0,0.07386037,211.90798,172.89019)">
<g
id="g3910-09">
<path
id="path3912-3"
d="m 200.1094,288.2812 25.1718,-27 q 25.0313,-26.7187 25.0313,-26.5781 -5.4844,-4.6406 -5.4844,-11.8125 0,-6.3281 4.3594,-10.6875 4.3594,-4.3593 10.5469,-4.3593 6.3281,0 10.6875,4.3593 4.3593,4.3594 4.3593,10.6875 0,6.1875 -4.3593,10.5469 -4.3594,4.3594 -10.6875,4.3594 l -1.6875,0 -36.8438,87.8906 0,67.3594 q 0,11.25 -24.8906,18.914 -24.8906,7.6641 -52.875,7.6641 -28.125,0 -52.9453,-7.6641 -24.8203,-7.664 -24.8203,-18.914 l 0,-67.3594 -36.8438,-87.8906 -1.6875,0 q -6.3281,0 -10.6875,-4.3594 -4.3593,-4.3594 -4.3593,-10.5469 0,-6.3281 4.3593,-10.6875 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6875 0,7.3125 -5.4844,11.5313 l 50.0625,53.8593 -4.2188,-73.125 q -6.0468,0 -10.4062,-4.4296 -4.3594,-4.4297 -4.3594,-10.6172 0,-6.3282 4.3594,-10.6172 4.3594,-4.2891 10.6875,-4.2891 6.1875,0 10.5469,4.3594 4.3594,4.3594 4.3594,10.5469 0,8.0156 -6.8907,12.6562 l 32.625,65.9532 15.75,-73.4063 q -10.6875,-3.375 -10.6875,-14.3437 0,-6.3282 4.3594,-10.6876 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6876 0,10.9687 -10.5469,14.3437 l 15.75,73.4063 32.625,-65.9532 q -6.8907,-4.2187 -6.8907,-12.6562 0,-6.1875 4.3594,-10.5469 4.3594,-4.3594 10.5469,-4.3594 6.1875,0 10.6172,4.3594 4.4297,4.3594 4.4297,10.5469 0,6.1875 -4.3594,10.6172 -4.3594,4.4296 -10.4062,4.4296 l -4.3594,73.125 z m -56.6719,-90.4218 q 2.8125,0 4.8516,-2.1094 2.039,-2.1094 2.039,-4.7812 0,-2.8126 -2.039,-4.9219 -2.0391,-2.1094 -4.8516,-2.1094 -2.8125,0 -4.8516,2.1094 -2.039,2.1093 -2.039,4.9219 0,2.6718 2.039,4.7812 2.0391,2.1094 4.8516,2.1094 z m 60.75,9.1406 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 201.375,207 204.1875,207 z m -121.5,0 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 79.875,207 82.6875,207 z m 177.0469,22.7812 q 2.8125,0 4.8515,-2.039 2.0391,-2.0391 2.0391,-4.8516 0,-2.8125 -2.0391,-4.8515 Q 262.5469,216 259.7344,216 q -2.8125,0 -4.8516,2.0391 -2.039,2.039 -2.039,4.8515 0,2.8125 2.039,4.8516 2.0391,2.039 4.8516,2.039 z m -232.5938,0 q 2.6719,0 4.7813,-2.039 2.1093,-2.0391 2.1093,-4.8516 0,-2.8125 -2.1093,-4.8515 Q 29.8125,216 27.1406,216 q -2.8125,0 -4.9218,2.0391 -2.1094,2.039 -2.1094,4.8515 0,2.8125 2.1094,4.8516 2.1093,2.039 4.9218,2.039 z m 186.0469,112.6407 0,-11.8125 q -24.4687,-17.0156 -69.75,-17.0156 -45.2813,0 -69.75,17.0156 l 0,11.8125 q 7.1719,-9.4219 26.5078,-15.1172 19.3359,-5.6953 43.2422,-5.6953 23.9063,0 43.2422,5.6953 19.3359,5.6953 26.5078,15.1172 z m -51.8906,-2.3907 -17.8594,-11.25 -17.8594,11.25 17.8594,12.6563 17.8594,-12.6563 z m 51.8906,30.2344 0,-23.625 -10.9687,6.75 10.9687,16.875 z m -128.5313,-16.875 -10.9687,-6.75 0,23.625 10.9687,-16.875 z m 128.5313,32.2032 0,-9 q -28.6875,-15.75 -69.75,-15.75 -41.0625,0 -69.75,15.75 l 0,9 q 12.375,-7.5938 31.4297,-12.1641 19.0547,-4.5703 38.3203,-4.5703 19.125,0 38.1797,4.5703 19.0547,4.5703 31.5703,12.1641 z"
inkscape:connector-curvature="0"
style="stroke:none" />
</g>
</g>
<g
style="display:inline"
id="g3908-5"
transform="matrix(0.07386037,0,0,0.07386037,236.90798,222.89019)">
<g
id="g3910-4">
<path
id="path3912-36"
d="m 200.1094,288.2812 25.1718,-27 q 25.0313,-26.7187 25.0313,-26.5781 -5.4844,-4.6406 -5.4844,-11.8125 0,-6.3281 4.3594,-10.6875 4.3594,-4.3593 10.5469,-4.3593 6.3281,0 10.6875,4.3593 4.3593,4.3594 4.3593,10.6875 0,6.1875 -4.3593,10.5469 -4.3594,4.3594 -10.6875,4.3594 l -1.6875,0 -36.8438,87.8906 0,67.3594 q 0,11.25 -24.8906,18.914 -24.8906,7.6641 -52.875,7.6641 -28.125,0 -52.9453,-7.6641 -24.8203,-7.664 -24.8203,-18.914 l 0,-67.3594 -36.8438,-87.8906 -1.6875,0 q -6.3281,0 -10.6875,-4.3594 -4.3593,-4.3594 -4.3593,-10.5469 0,-6.3281 4.3593,-10.6875 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6875 0,7.3125 -5.4844,11.5313 l 50.0625,53.8593 -4.2188,-73.125 q -6.0468,0 -10.4062,-4.4296 -4.3594,-4.4297 -4.3594,-10.6172 0,-6.3282 4.3594,-10.6172 4.3594,-4.2891 10.6875,-4.2891 6.1875,0 10.5469,4.3594 4.3594,4.3594 4.3594,10.5469 0,8.0156 -6.8907,12.6562 l 32.625,65.9532 15.75,-73.4063 q -10.6875,-3.375 -10.6875,-14.3437 0,-6.3282 4.3594,-10.6876 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6876 0,10.9687 -10.5469,14.3437 l 15.75,73.4063 32.625,-65.9532 q -6.8907,-4.2187 -6.8907,-12.6562 0,-6.1875 4.3594,-10.5469 4.3594,-4.3594 10.5469,-4.3594 6.1875,0 10.6172,4.3594 4.4297,4.3594 4.4297,10.5469 0,6.1875 -4.3594,10.6172 -4.3594,4.4296 -10.4062,4.4296 l -4.3594,73.125 z m -56.6719,-90.4218 q 2.8125,0 4.8516,-2.1094 2.039,-2.1094 2.039,-4.7812 0,-2.8126 -2.039,-4.9219 -2.0391,-2.1094 -4.8516,-2.1094 -2.8125,0 -4.8516,2.1094 -2.039,2.1093 -2.039,4.9219 0,2.6718 2.039,4.7812 2.0391,2.1094 4.8516,2.1094 z m 60.75,9.1406 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 201.375,207 204.1875,207 z m -121.5,0 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 79.875,207 82.6875,207 z m 177.0469,22.7812 q 2.8125,0 4.8515,-2.039 2.0391,-2.0391 2.0391,-4.8516 0,-2.8125 -2.0391,-4.8515 Q 262.5469,216 259.7344,216 q -2.8125,0 -4.8516,2.0391 -2.039,2.039 -2.039,4.8515 0,2.8125 2.039,4.8516 2.0391,2.039 4.8516,2.039 z m -232.5938,0 q 2.6719,0 4.7813,-2.039 2.1093,-2.0391 2.1093,-4.8516 0,-2.8125 -2.1093,-4.8515 Q 29.8125,216 27.1406,216 q -2.8125,0 -4.9218,2.0391 -2.1094,2.039 -2.1094,4.8515 0,2.8125 2.1094,4.8516 2.1093,2.039 4.9218,2.039 z m 186.0469,112.6407 0,-11.8125 q -24.4687,-17.0156 -69.75,-17.0156 -45.2813,0 -69.75,17.0156 l 0,11.8125 q 7.1719,-9.4219 26.5078,-15.1172 19.3359,-5.6953 43.2422,-5.6953 23.9063,0 43.2422,5.6953 19.3359,5.6953 26.5078,15.1172 z m -51.8906,-2.3907 -17.8594,-11.25 -17.8594,11.25 17.8594,12.6563 17.8594,-12.6563 z m 51.8906,30.2344 0,-23.625 -10.9687,6.75 10.9687,16.875 z m -128.5313,-16.875 -10.9687,-6.75 0,23.625 10.9687,-16.875 z m 128.5313,32.2032 0,-9 q -28.6875,-15.75 -69.75,-15.75 -41.0625,0 -69.75,15.75 l 0,9 q 12.375,-7.5938 31.4297,-12.1641 19.0547,-4.5703 38.3203,-4.5703 19.125,0 38.1797,4.5703 19.0547,4.5703 31.5703,12.1641 z"
inkscape:connector-curvature="0"
style="stroke:none" />
</g>
</g>
<g
style="display:inline"
id="g3908-4"
transform="matrix(0.07386037,0,0,0.07386037,136.90798,272.89019)">
<g
id="g3910-31">
<path
id="path3912-9"
d="m 200.1094,288.2812 25.1718,-27 q 25.0313,-26.7187 25.0313,-26.5781 -5.4844,-4.6406 -5.4844,-11.8125 0,-6.3281 4.3594,-10.6875 4.3594,-4.3593 10.5469,-4.3593 6.3281,0 10.6875,4.3593 4.3593,4.3594 4.3593,10.6875 0,6.1875 -4.3593,10.5469 -4.3594,4.3594 -10.6875,4.3594 l -1.6875,0 -36.8438,87.8906 0,67.3594 q 0,11.25 -24.8906,18.914 -24.8906,7.6641 -52.875,7.6641 -28.125,0 -52.9453,-7.6641 -24.8203,-7.664 -24.8203,-18.914 l 0,-67.3594 -36.8438,-87.8906 -1.6875,0 q -6.3281,0 -10.6875,-4.3594 -4.3593,-4.3594 -4.3593,-10.5469 0,-6.3281 4.3593,-10.6875 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6875 0,7.3125 -5.4844,11.5313 l 50.0625,53.8593 -4.2188,-73.125 q -6.0468,0 -10.4062,-4.4296 -4.3594,-4.4297 -4.3594,-10.6172 0,-6.3282 4.3594,-10.6172 4.3594,-4.2891 10.6875,-4.2891 6.1875,0 10.5469,4.3594 4.3594,4.3594 4.3594,10.5469 0,8.0156 -6.8907,12.6562 l 32.625,65.9532 15.75,-73.4063 q -10.6875,-3.375 -10.6875,-14.3437 0,-6.3282 4.3594,-10.6876 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6876 0,10.9687 -10.5469,14.3437 l 15.75,73.4063 32.625,-65.9532 q -6.8907,-4.2187 -6.8907,-12.6562 0,-6.1875 4.3594,-10.5469 4.3594,-4.3594 10.5469,-4.3594 6.1875,0 10.6172,4.3594 4.4297,4.3594 4.4297,10.5469 0,6.1875 -4.3594,10.6172 -4.3594,4.4296 -10.4062,4.4296 l -4.3594,73.125 z m -56.6719,-90.4218 q 2.8125,0 4.8516,-2.1094 2.039,-2.1094 2.039,-4.7812 0,-2.8126 -2.039,-4.9219 -2.0391,-2.1094 -4.8516,-2.1094 -2.8125,0 -4.8516,2.1094 -2.039,2.1093 -2.039,4.9219 0,2.6718 2.039,4.7812 2.0391,2.1094 4.8516,2.1094 z m 60.75,9.1406 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 201.375,207 204.1875,207 z m -121.5,0 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 79.875,207 82.6875,207 z m 177.0469,22.7812 q 2.8125,0 4.8515,-2.039 2.0391,-2.0391 2.0391,-4.8516 0,-2.8125 -2.0391,-4.8515 Q 262.5469,216 259.7344,216 q -2.8125,0 -4.8516,2.0391 -2.039,2.039 -2.039,4.8515 0,2.8125 2.039,4.8516 2.0391,2.039 4.8516,2.039 z m -232.5938,0 q 2.6719,0 4.7813,-2.039 2.1093,-2.0391 2.1093,-4.8516 0,-2.8125 -2.1093,-4.8515 Q 29.8125,216 27.1406,216 q -2.8125,0 -4.9218,2.0391 -2.1094,2.039 -2.1094,4.8515 0,2.8125 2.1094,4.8516 2.1093,2.039 4.9218,2.039 z m 186.0469,112.6407 0,-11.8125 q -24.4687,-17.0156 -69.75,-17.0156 -45.2813,0 -69.75,17.0156 l 0,11.8125 q 7.1719,-9.4219 26.5078,-15.1172 19.3359,-5.6953 43.2422,-5.6953 23.9063,0 43.2422,5.6953 19.3359,5.6953 26.5078,15.1172 z m -51.8906,-2.3907 -17.8594,-11.25 -17.8594,11.25 17.8594,12.6563 17.8594,-12.6563 z m 51.8906,30.2344 0,-23.625 -10.9687,6.75 10.9687,16.875 z m -128.5313,-16.875 -10.9687,-6.75 0,23.625 10.9687,-16.875 z m 128.5313,32.2032 0,-9 q -28.6875,-15.75 -69.75,-15.75 -41.0625,0 -69.75,15.75 l 0,9 q 12.375,-7.5938 31.4297,-12.1641 19.0547,-4.5703 38.3203,-4.5703 19.125,0 38.1797,4.5703 19.0547,4.5703 31.5703,12.1641 z"
inkscape:connector-curvature="0"
style="stroke:none" />
</g>
</g>
<g
style="display:inline"
id="g3908-10"
transform="matrix(0.07386037,0,0,0.07386037,86.907979,247.89019)">
<g
id="g3910-9">
<path
id="path3912-4"
d="m 200.1094,288.2812 25.1718,-27 q 25.0313,-26.7187 25.0313,-26.5781 -5.4844,-4.6406 -5.4844,-11.8125 0,-6.3281 4.3594,-10.6875 4.3594,-4.3593 10.5469,-4.3593 6.3281,0 10.6875,4.3593 4.3593,4.3594 4.3593,10.6875 0,6.1875 -4.3593,10.5469 -4.3594,4.3594 -10.6875,4.3594 l -1.6875,0 -36.8438,87.8906 0,67.3594 q 0,11.25 -24.8906,18.914 -24.8906,7.6641 -52.875,7.6641 -28.125,0 -52.9453,-7.6641 -24.8203,-7.664 -24.8203,-18.914 l 0,-67.3594 -36.8438,-87.8906 -1.6875,0 q -6.3281,0 -10.6875,-4.3594 -4.3593,-4.3594 -4.3593,-10.5469 0,-6.3281 4.3593,-10.6875 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6875 0,7.3125 -5.4844,11.5313 l 50.0625,53.8593 -4.2188,-73.125 q -6.0468,0 -10.4062,-4.4296 -4.3594,-4.4297 -4.3594,-10.6172 0,-6.3282 4.3594,-10.6172 4.3594,-4.2891 10.6875,-4.2891 6.1875,0 10.5469,4.3594 4.3594,4.3594 4.3594,10.5469 0,8.0156 -6.8907,12.6562 l 32.625,65.9532 15.75,-73.4063 q -10.6875,-3.375 -10.6875,-14.3437 0,-6.3282 4.3594,-10.6876 4.3594,-4.3593 10.6875,-4.3593 6.1875,0 10.5469,4.3593 4.3594,4.3594 4.3594,10.6876 0,10.9687 -10.5469,14.3437 l 15.75,73.4063 32.625,-65.9532 q -6.8907,-4.2187 -6.8907,-12.6562 0,-6.1875 4.3594,-10.5469 4.3594,-4.3594 10.5469,-4.3594 6.1875,0 10.6172,4.3594 4.4297,4.3594 4.4297,10.5469 0,6.1875 -4.3594,10.6172 -4.3594,4.4296 -10.4062,4.4296 l -4.3594,73.125 z m -56.6719,-90.4218 q 2.8125,0 4.8516,-2.1094 2.039,-2.1094 2.039,-4.7812 0,-2.8126 -2.039,-4.9219 -2.0391,-2.1094 -4.8516,-2.1094 -2.8125,0 -4.8516,2.1094 -2.039,2.1093 -2.039,4.9219 0,2.6718 2.039,4.7812 2.0391,2.1094 4.8516,2.1094 z m 60.75,9.1406 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 201.375,207 204.1875,207 z m -121.5,0 q 2.8125,0 4.8516,-2.0391 2.039,-2.039 2.039,-4.8515 0,-2.8125 -2.039,-4.8516 -2.0391,-2.039 -4.8516,-2.039 -2.8125,0 -4.8516,2.039 -2.039,2.0391 -2.039,4.8516 0,2.8125 2.039,4.8515 Q 79.875,207 82.6875,207 z m 177.0469,22.7812 q 2.8125,0 4.8515,-2.039 2.0391,-2.0391 2.0391,-4.8516 0,-2.8125 -2.0391,-4.8515 Q 262.5469,216 259.7344,216 q -2.8125,0 -4.8516,2.0391 -2.039,2.039 -2.039,4.8515 0,2.8125 2.039,4.8516 2.0391,2.039 4.8516,2.039 z m -232.5938,0 q 2.6719,0 4.7813,-2.039 2.1093,-2.0391 2.1093,-4.8516 0,-2.8125 -2.1093,-4.8515 Q 29.8125,216 27.1406,216 q -2.8125,0 -4.9218,2.0391 -2.1094,2.039 -2.1094,4.8515 0,2.8125 2.1094,4.8516 2.1093,2.039 4.9218,2.039 z m 186.0469,112.6407 0,-11.8125 q -24.4687,-17.0156 -69.75,-17.0156 -45.2813,0 -69.75,17.0156 l 0,11.8125 q 7.1719,-9.4219 26.5078,-15.1172 19.3359,-5.6953 43.2422,-5.6953 23.9063,0 43.2422,5.6953 19.3359,5.6953 26.5078,15.1172 z m -51.8906,-2.3907 -17.8594,-11.25 -17.8594,11.25 17.8594,12.6563 17.8594,-12.6563 z m 51.8906,30.2344 0,-23.625 -10.9687,6.75 10.9687,16.875 z m -128.5313,-16.875 -10.9687,-6.75 0,23.625 10.9687,-16.875 z m 128.5313,32.2032 0,-9 q -28.6875,-15.75 -69.75,-15.75 -41.0625,0 -69.75,15.75 l 0,9 q 12.375,-7.5938 31.4297,-12.1641 19.0547,-4.5703 38.3203,-4.5703 19.125,0 38.1797,4.5703 19.0547,4.5703 31.5703,12.1641 z"
inkscape:connector-curvature="0"
style="stroke:none" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 511 KiB

365
src/fig/chap3/Fig3.1.svg Normal file
View File

@ -0,0 +1,365 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="187.53149"
height="166.27675"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.1.svg"
style="display:inline">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible">
<path
id="path3803"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="146.72007"
inkscape:cy="67.40767"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-38.734252px"
originy="-834.989px" />
</sodipodi:namedview>
<metadata
id="metadata_3.1">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.1</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.1</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>environment</rdf:li>
<rdf:li>structure</rdf:li>
<rdf:li>frame</rdf:li>
<rdf:li>pointer</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-38.734252,-51.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 105,52.362183 55,0 c 3,0 5,2 5,5 l 0,40 c 0,2.999997 -2,4.999997 -5,4.999997 l -55,0 c -3,0 -5,-2 -5,-4.999997 l 0,-40 c 0,-3 2,-5 5,-5 z"
id="rect3768"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 105,157.36218 14.91071,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-48"
id="path3795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 160,157.36218 -14.91071,0 c -3.08929,0 -5.08929,-2 -5.08929,-5 l 0,-48"
id="path3795-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 72.79079,202.36218 0,-18"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 192.46174,202.36218 0,-18"
id="path4451-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 45,132.36218 55,0 c 3,0 5,2 5,5 l 0,40 c 0,3 -2,5 -5,5 l -55,0 c -3,0 -5,-2 -5,-5 l 0,-40 c 0,-3 2,-5 5,-5 z"
id="rect3768-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 165,132.36218 55,0 c 3,0 5,2 5,5 l 0,40 c 0,3 -2,5 -5,5 l -55,0 c -3,0 -5,-2 -5,-5 l 0,-40 c 0,-3 2,-5 5,-5 z"
id="rect3768-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-38.734252,-51.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="72.790802"
y="216.36218"
id="text4663"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4665"
x="72.790802"
y="216.36218">A</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="192.93365"
y="216.36218"
id="text4667"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4669"
x="192.93365"
y="216.36218">B</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="119"
y="126.36218"
id="text4671"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4673"
x="119"
y="126.36218">C</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="150.35715"
y="122.36218"
id="text4675"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4677"
x="150.35715"
y="122.36218" /></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="146"
y="126.36218"
id="text4679"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4681"
x="146"
y="126.36218">D</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="155"
y="69.362183"
id="text4683"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4685"
x="155"
y="69.362183">I</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="97"
y="149.36218"
id="text4687"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4689"
x="97"
y="149.36218">II</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="219"
y="149.36218"
id="text4691"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4693"
x="219"
y="149.36218">III</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="50"
y="159.36218"
id="text4695"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4697"
x="50"
y="159.36218">z:6</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="50"
y="172.36218"
id="text4699"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4701"
x="50"
y="172.36218">x:7</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="170"
y="159.36218"
id="text4703"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4705"
x="170"
y="159.36218">m:1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="170"
y="172.36218"
id="text4707"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4709"
x="170"
y="172.36218">y:2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="110"
y="79.362183"
id="text4711"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4713"
x="110"
y="79.362183">x:3</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="110"
y="92.362183"
id="text4715"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4717"
x="110"
y="92.362183">y:5</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

592
src/fig/chap3/Fig3.10a.svg Normal file
View File

@ -0,0 +1,592 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="419.84976"
height="220.21373"
id="svg4152"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.10a.svg"
style="display:inline">
<defs
id="defs4154">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5058"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5060"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5062"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5064"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5066"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5068"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5074"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-68"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker6374"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path6376"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-61"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="225.28836"
inkscape:cy="122.62082"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4160"
originx="-105.416px"
originy="-773.05201px" />
</sodipodi:namedview>
<metadata
id="metadata_3.10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.10</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.10</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>environment</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-105.416,-59.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 170,59.362183 350,0 c 3,0 5,2 5,5 l 0,57.999997 c 0,3 -2,5 -5,5 l -350,0 c -3,0 -5,-2 -5,-5 l 0,-57.999997 c 0,-3 2,-5 5,-5 z"
id="rect5327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 205,197.36218 85,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-13"
id="path3795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 203.25003,112.36218 -7.53571,0 c -3.08929,0 -5.08929,2 -5.08929,5 l 0,66.98214"
id="path3795-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 145,94.362183 18,0"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 179,199.91575 0,42.44643"
id="path4451-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(-8.4999995,17.553579)" />
<path
transform="translate(14.94643,17.553579)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,5.9545455,8.8552982)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,-17.545446,8.8553052)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 250,147.36218 90,0 c 3,0 5,2 5,5 l 0,20 c 0,3 -2,5 -5,5 l -90,0 c -3,0 -5,-2 -5,-5 l 0,-20 c 0,-3 2,-5 5,-5 z"
id="rect5327-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 230,162.36218 13,0"
id="path4451-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 295,147.36218 0,-18"
id="path4451-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 232,94.362183 133.53571,0 c 3.08929,0 5.08929,2 5.08929,5 l 0,84.803567"
id="path3795-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 430,147.36218 90,0 c 3,0 5,2 5,5 l 0,20 c 0,3 -2,5 -5,5 l -90,0 c -3,0 -5,-2 -5,-5 l 0,-20 c 0,-3 2,-5 5,-5 z"
id="rect5327-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
transform="matrix(1.0454545,0,0,1.0454545,185.95454,8.8553056)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-9"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170807"
sodipodi:ry="11.170807"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.1708 11.17081,-11.1708 6.16947,0 11.17081,5.00134 11.17081,11.1708 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,162.45455,8.8553156)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6-5"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-1"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(171.5,17.553586)" />
<path
transform="translate(194.94643,17.553586)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7-9"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 359,199.91575 0,17.44643 c 0,3 -2,5 -4.89286,5 l -146.51785,0 c -3.05358,0 -5.13987,2.08609 -5.03572,5.08929 l 0,14.91071"
id="path4451-5-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 385,197.36218 85,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-13"
id="path3795-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 475,147.36218 0,-18"
id="path4451-8-3-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-105.416,-59.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="214"
y="166.07648"
id="text6301"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303"
x="214"
y="166.07648">E1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="209"
y="97.362183"
id="text5493"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5495"
x="209"
y="97.362183">W2:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="209"
y="115.36218"
id="text5473"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5475"
x="209"
y="115.36218">W1:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="105"
y="89.785683"
id="text5477"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5479"
x="105"
y="89.785683"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">global</tspan><tspan
sodipodi:role="line"
x="105"
y="106.68568"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan5507">env</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="295"
y="166.18703"
id="text6297"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299"
x="295"
y="166.18703">balance: 50</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="138.98985"
y="257.36218"
id="text5497"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499"
x="138.98985"
y="257.36218"
style="line-height:129.99999523%">parameters: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5868"
dx="2.5">amount</tspan></tspan><tspan
sodipodi:role="line"
x="138.98985"
y="276.22916"
id="tspan5914"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Sans">body: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5503">...</tspan></tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 410,162.36218 13,0"
id="path4451-8-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="394"
y="166.07648"
id="text6301-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303-0"
x="394"
y="166.07648">E2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="475"
y="166.18703"
id="text6297-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299-0"
x="475"
y="166.18703">balance: 100</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="209"
y="79.362183"
id="text5493-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5495-1"
x="209"
y="79.362183">make-withdraw: ...</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

776
src/fig/chap3/Fig3.11a.svg Normal file
View File

@ -0,0 +1,776 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="416.29987"
height="314.45474"
id="svg6540"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.11a.svg"
style="display:inline">
<defs
id="defs6542">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7129"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7131"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7135"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7137"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7139"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7141"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7143"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7145"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7147"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7149"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7151"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7153"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7155"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7157"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7159"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7161"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7163"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7165"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7736"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7738"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-52"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="236.88803"
inkscape:cy="164.20071"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid6548"
originx="-65px"
originy="-675.811px" />
</sodipodi:namedview>
<metadata
id="metadata_3.11">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.11</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.11</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>environment</rdf:li>
<rdf:li>sqrt</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-65,-62.096435)">
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 210,142.30861 44.91071,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-27.94643"
id="path3795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 183.44642,142.36218 -48.44642,0 c -3,0 -5,2 -4.85863,4.99906 L 130,167.36218"
id="path4451-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.35354328;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.000006"
sodipodi:ry="2.000006"
d="m 189.50001,179.86218 c 0,1.10458 -0.89544,2.00001 -2.00001,2.00001 -1.10457,0 -2.00001,-0.89543 -2.00001,-2.00001 0,-1.10457 0.89544,-2 2.00001,-2 1.10457,0 2.00001,0.89543 2.00001,2 z"
transform="translate(-3.500003,-37.499994)" />
<path
transform="translate(19.946426,-37.499994)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.35354328;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.000006"
sodipodi:ry="2.000006"
d="m 189.50001,179.86218 c 0,1.10458 -0.89544,2.00001 -2.00001,2.00001 -1.10457,0 -2.00001,-0.89543 -2.00001,-2.00001 0,-1.10457 0.89544,-2 2.00001,-2 1.10457,0 2.00001,0.89543 2.00001,2 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,10.954542,-46.198273)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.241558"
sodipodi:ry="11.241558"
d="m 199.24156,180.36218 c 0,6.20854 -5.03302,11.24156 -11.24156,11.24156 -6.20854,0 -11.24156,-5.03302 -11.24156,-11.24156 0,-6.20854 5.03302,-11.24156 11.24156,-11.24156 6.20854,0 11.24156,5.03302 11.24156,11.24156 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,-12.54545,-46.198266)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.181169"
sodipodi:ry="11.181169"
d="m 199.18117,180.36218 c 0,6.17519 -5.00598,11.18117 -11.18117,11.18117 -6.17519,0 -11.18117,-5.00598 -11.18117,-11.18117 0,-6.17519 5.00598,-11.18117 11.18117,-11.18117 6.17519,0 11.18117,5.00598 11.18117,11.18117 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 390,127.36218 0,-18"
id="path4451-8-3-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 440,242.36218 14.91071,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-28"
id="path3795-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 414,244.91575 0,27"
id="path4451-5-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.24724412;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-8"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.053586"
sodipodi:ry="2.053586"
d="m 189.55359,179.86218 c 0,1.13417 -0.91943,2.05359 -2.05359,2.05359 -1.13416,0 -2.05359,-0.91942 -2.05359,-2.05359 0,-1.13416 0.91943,-2.05358 2.05359,-2.05358 1.13416,0 2.05359,0.91942 2.05359,2.05358 z"
transform="translate(226.5,62.553586)" />
<path
transform="translate(249.94643,62.553586)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.24724412;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7-4"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.053586"
sodipodi:ry="2.053586"
d="m 189.55359,179.86218 c 0,1.13417 -0.91943,2.05359 -2.05359,2.05359 -1.13416,0 -2.05359,-0.91942 -2.05359,-2.05359 0,-1.13416 0.91943,-2.05358 2.05359,-2.05358 1.13416,0 2.05359,0.91942 2.05359,2.05358 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,240.95454,53.855306)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-0"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.287951"
sodipodi:ry="11.287951"
d="m 199.28795,180.36218 c 0,6.23417 -5.05379,11.28795 -11.28795,11.28795 -6.23416,0 -11.28795,-5.05378 -11.28795,-11.28795 0,-6.23416 5.05379,-11.28795 11.28795,-11.28795 6.23416,0 11.28795,5.05379 11.28795,11.28795 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,217.45455,53.855316)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6-8"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.227572"
sodipodi:ry="11.227572"
d="m 199.22757,180.36218 c 0,6.20082 -5.02675,11.22758 -11.22757,11.22758 -6.20082,0 -11.22757,-5.02676 -11.22757,-11.22758 0,-6.20081 5.02675,-11.22757 11.22757,-11.22757 6.20082,0 11.22757,5.02676 11.22757,11.22757 z" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="364.41254"
y="287.6767"
id="text7796"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7798"
x="364.41254"
y="287.6767" /></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 345,327.36218 0,-118"
id="path4451-8-3-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 315,252.36218 0,-43"
id="path4451-8-3-2-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 135,62.362183 340,0 c 3,0 5,2 5,5 l 0,35.000007 c 0,2.99999 -2,4.99999 -5,4.99999 l -340,0 c -3,0 -5,-2 -5,-4.99999 l 0,-35.000007 c 0,-3 2,-5 5,-5 z"
id="rect5327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 305,127.36218 170,0 c 3,0 5,2 5,5 l 0,70.00001 c 0,2.99999 -2,4.99999 -5,4.99999 l -170,0 c -3,0 -5,-2 -5,-4.99999 l 0,-70.00001 c 0,-3 2,-5 5,-5 z"
id="rect5327-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 255,252.36218 70,0 c 3,0 5,2 5,5 l 0,20 c 0,3 -2,5 -5,5 l -70,0 c -3,0 -5,-2 -5,-5 l 0,-20 c 0,-3 2,-5 5,-5 z"
id="rect5327-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 310,327.36218 70,0 c 3,0 5,2 5,5 l 0,20 c 0,3 -2,5 -5,5 l -70,0 c -3,0 -5,-2 -5,-5 l 0,-20 c 0,-3 2,-5 5,-5 z"
id="rect5327-2-0-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 181.23223,84.604566 9.30348,0 c 3.08929,0 5.08929,2 5.08929,5 l 0,38.757614"
id="path3795-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 405,159.36218 15.53571,0 c 3.08929,0 5.08929,2 5.08929,5 l 0,64"
id="path3795-5-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-65,-62.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:139.99999762%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="65"
y="184.36218"
id="text5497"
sodipodi:linespacing="140%"><tspan
sodipodi:role="line"
id="tspan5499"
x="65"
y="184.36218"
dx="0 0 0 0 0 0 0 0 0 0 0 0 2.7"
style="line-height:129.99999523%"><tspan
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan7412">parameters:</tspan> x</tspan><tspan
sodipodi:role="line"
x="65"
y="203.22917"
id="tspan5914"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
dx="0 0 0 0 0 0 2.7"><tspan
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan7414">body:</tspan> (define good-enough? ...)</tspan><tspan
sodipodi:role="line"
x="65"
y="219.95345"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:139.99999762%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan7406"> (define improve ...)</tspan><tspan
sodipodi:role="line"
x="65"
y="235.35345"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:139.99999762%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan7408"> (define sqrt-iter ...)</tspan><tspan
sodipodi:role="line"
x="65"
y="250.75345"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:139.99999762%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan7410"> (sqrt-iter 1.0)</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 105,84.867259 23,0"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="65"
y="80.081543"
id="text5477"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5479"
x="65"
y="80.081543"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">global</tspan><tspan
sodipodi:role="line"
x="65"
y="96.981544"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan5507">env</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="145"
y="87.362183"
id="text5473"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5475"
x="145"
y="87.362183">sqrt:</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 285,167.36218 13,0"
id="path4451-8-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="269"
y="171.07649"
id="text6301-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303-9"
x="269"
y="171.07649">E1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="315"
y="147.36218"
id="text7591"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7593"
x="315"
y="147.36218">x:2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="315"
y="162.36218"
id="text7595"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7597"
x="315"
y="162.36218">good-enough?:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="315"
y="177.36218"
id="text7599"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7601"
x="315"
y="177.36218">improve: ...</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="315"
y="192.36218"
id="text7603"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7605"
x="315"
y="192.36218">sqrt-iter: ...</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="365.17014"
y="287.42416"
id="text7800"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan7802"
x="365.17014"
y="287.42416"
dx="0 0 0 0 0 0 0 0 0 0 0 0 2.7"
style="line-height:129.99999523%"><tspan
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan7808">parameters:</tspan> guess</tspan><tspan
sodipodi:role="line"
x="365.17014"
y="306.29114"
id="tspan7804"
dx="0 0 0 0 0 0 2.7"
style="line-height:129.99999523%"><tspan
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan7810">body:</tspan> (&lt; (abs ...)</tspan><tspan
sodipodi:role="line"
x="365.17014"
y="322.22183"
id="tspan7806"> ...)</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="290"
y="270.44968"
id="text6297-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299-0"
x="290"
y="270.44968">guess: 1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="345"
y="345.44968"
id="text6297-6-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299-0-4"
x="345"
y="345.44968">guess: 1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="330"
y="299.36218"
id="text7827"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7829"
x="330"
y="299.36218"><tspan
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;text-anchor:end;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan7831">call to</tspan> sqrt-iter</tspan></text>
<g
style="stroke-width:0.77952754;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
id="g7819"
transform="translate(-210,-61.175154)">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4451-8-2"
d="m 445,328.53734 13,0"
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)" />
<text
sodipodi:linespacing="125%"
id="text6301-1"
y="332.25165"
x="429"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
xml:space="preserve"><tspan
y="332.25165"
x="429"
id="tspan6303-0"
sodipodi:role="line">E2</tspan></text>
</g>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="345"
y="374.36218"
id="text7827-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7829-2"
x="345"
y="374.36218"><tspan
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan7831-2">call to</tspan> good-enough?</tspan></text>
<g
style="stroke-width:0.77952754;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
id="g7945"
transform="translate(-165,-68.824844)">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4451-8-2-4"
d="m 455,411.18703 13,0"
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)" />
<text
sodipodi:linespacing="125%"
id="text6301-1-2"
y="414.90134"
x="439"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
xml:space="preserve"><tspan
y="414.90134"
x="439"
id="tspan6303-0-4"
sodipodi:role="line">E3</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

853
src/fig/chap3/Fig3.12b.svg Normal file
View File

@ -0,0 +1,853 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="281.14645"
height="225.53149"
id="svg3493"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.12b.svg"
style="display:inline">
<defs
id="defs3495">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4296"
style="overflow:visible">
<path
id="path4298"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4300"
style="overflow:visible">
<path
id="path4302"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4304"
style="overflow:visible">
<path
id="path4306"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4308"
style="overflow:visible">
<path
id="path4310"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4296-0"
style="overflow:visible">
<path
id="path4298-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4300-8"
style="overflow:visible">
<path
id="path4302-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4304-9"
style="overflow:visible">
<path
id="path4306-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4308-9"
style="overflow:visible">
<path
id="path4310-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-6"
style="overflow:visible">
<path
id="path4565-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4752"
style="overflow:visible">
<path
id="path4754"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4756"
style="overflow:visible">
<path
id="path4758"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4813"
style="overflow:visible">
<path
id="path4815"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4817"
style="overflow:visible">
<path
id="path4819"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
id="path4565-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4813-5"
style="overflow:visible">
<path
id="path4815-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4817-2"
style="overflow:visible">
<path
id="path4819-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-1"
style="overflow:visible">
<path
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="190.35729"
inkscape:cy="124.75451"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3501"
originx="-129.1193px"
originy="-704.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.12</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.12</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>list</rdf:li>
<rdf:li>set-car</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines 0"
style="display:inline"
transform="translate(-129.1193,-122.09643)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-2"
width="50"
height="25"
x="175"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0"
width="50"
height="25"
x="280"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6"
width="50"
height="25"
x="360"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5"
width="50"
height="25"
x="280"
y="202.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="360"
y="202.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-0"
width="50"
height="25"
x="280"
y="282.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-67"
width="50"
height="25"
x="360"
y="282.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-129.1193,-122.09643)">
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4"
width="25"
height="25"
x="280"
y="162.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5"
width="25"
height="25"
x="360"
y="162.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358,135.36218 -38,0"
id="path4554-5-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200,50.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,50.472581)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293,160.36218 0,-23"
id="path4554-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,122.36218 0,25"
id="path4405-1-3-84"
inkscape:connector-curvature="0" />
<path
transform="translate(255.5,50.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373,160.36218 0,-23"
id="path4554-5-0-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,147.36218 24,-24"
id="path4373"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,135.36218 -63,0"
id="path4554-5-2-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(95.000003,50.500003)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-62"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(70.500003,50.472584)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-9"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,214.8979 -84.96423,0.0549 c -3.03592,0 -5.03577,-2.09065 -5.03577,-5.18021 l 0,-72.41067"
id="path4554-5-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 173,135.36218 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 200,122.36218 0,25"
id="path4405-1-3-7"
inkscape:connector-curvature="0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4"
width="25"
height="25"
x="280"
y="242.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-9"
width="25"
height="25"
x="360"
y="242.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358.00001,215.36218 -38,0"
id="path4554-5-2-3-85"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200.00001,130.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,130.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293.00001,240.36218 0,-23"
id="path4554-5-0-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,202.36218 0,25"
id="path4405-1-3-84-0"
inkscape:connector-curvature="0" />
<path
transform="translate(255.50001,130.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373.00001,240.36218 0,-23"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,227.36218 24,-24"
id="path4373-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,202.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-42"
width="25"
height="25"
x="280"
y="322.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-6"
width="25"
height="25"
x="360"
y="322.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358.00001,295.36218 -38,0"
id="path4554-5-2-3-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200.00001,210.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-9"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,210.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293.00001,320.36218 0,-23"
id="path4554-5-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,282.36218 0,25"
id="path4405-1-3-84-1"
inkscape:connector-curvature="0" />
<path
transform="translate(255.50001,210.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373.00001,320.36218 0,-23"
id="path4554-5-0-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,307.36218 24,-24"
id="path4373-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,282.36218 0,25"
id="path4405-1-3-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,294.89792 -33,0"
id="path4554-9-4-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-129.1193,-122.09643)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.17856"
y="177.91582"
id="text3007-0-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5"
x="289.17856"
y="177.91582"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">c</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="369.35715"
y="178.18365"
id="text3007-0-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52"
x="369.35715"
y="178.18365"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">d</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="240"
y="297.89786"
id="text4978"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4980"
x="240"
y="297.89786">y</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="135"
y="137.8979"
id="text4974"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976"
x="135"
y="137.8979">x</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.17856"
y="337.91565"
id="text3007-0-2-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-3"
x="289.17856"
y="337.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">e</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="369.08926"
y="338.36212"
id="text3007-0-7-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-1"
x="369.08926"
y="338.36212"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">f</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.26785"
y="257.91565"
id="text3007-0-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1"
x="289.26785"
y="257.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="368.99997"
y="258.18353"
id="text3007-0-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-2"
x="368.99997"
y="258.18353"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">b</tspan></text>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175.8807,0.26574802 0,24.99999998"
id="path4405-1-3"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

863
src/fig/chap3/Fig3.13b.svg Normal file
View File

@ -0,0 +1,863 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="281.14645"
height="225.53149"
id="svg3493"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.13b.svg">
<defs
id="defs3495">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4296"
style="overflow:visible">
<path
id="path4298"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4300"
style="overflow:visible">
<path
id="path4302"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4304"
style="overflow:visible">
<path
id="path4306"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4308"
style="overflow:visible">
<path
id="path4310"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4296-0"
style="overflow:visible">
<path
id="path4298-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4300-8"
style="overflow:visible">
<path
id="path4302-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4304-9"
style="overflow:visible">
<path
id="path4306-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4308-9"
style="overflow:visible">
<path
id="path4310-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-6"
style="overflow:visible">
<path
id="path4565-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4752"
style="overflow:visible">
<path
id="path4754"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4756"
style="overflow:visible">
<path
id="path4758"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4813"
style="overflow:visible">
<path
id="path4815"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4817"
style="overflow:visible">
<path
id="path4819"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
id="path4565-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4813-5"
style="overflow:visible">
<path
id="path4815-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4817-2"
style="overflow:visible">
<path
id="path4819-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-1"
style="overflow:visible">
<path
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="204.17892"
inkscape:cy="109.60223"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3501"
originx="-129.1193px"
originy="-704.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.13">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.13</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.13</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>list</rdf:li>
<rdf:li>set-car</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines 0"
style="display:inline"
transform="translate(-129.1193,-122.09643)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-2"
width="50"
height="25"
x="175"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0"
width="50"
height="25"
x="280"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6"
width="50"
height="25"
x="360"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5"
width="50"
height="25"
x="280"
y="202.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="360"
y="202.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-0"
width="50"
height="25"
x="280"
y="282.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-67"
width="50"
height="25"
x="360"
y="282.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-129.1193,-122.09643)">
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4"
width="25"
height="25"
x="280"
y="162.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5"
width="25"
height="25"
x="360"
y="162.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358,135.36218 -38,0"
id="path4554-5-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200,50.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,50.472581)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293,160.36218 0,-23"
id="path4554-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,122.36218 0,25"
id="path4405-1-3-84"
inkscape:connector-curvature="0" />
<path
transform="translate(255.5,50.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373,160.36218 0,-23"
id="path4554-5-0-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,147.36218 24,-24"
id="path4373"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,135.36218 -63,0"
id="path4554-5-2-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(95.000003,50.500003)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-62"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(70.500003,50.472584)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-9"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,289.86726 -84.96423,0.0549 c -3.03592,0 -5.03577,-2.09065 -5.03577,-5.18021 l 0,-147.38003"
id="path4554-5-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 173,135.36218 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 200,122.36218 0,25"
id="path4405-1-3-7"
inkscape:connector-curvature="0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4"
width="25"
height="25"
x="280"
y="242.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-9"
width="25"
height="25"
x="360"
y="242.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358.00001,215.36218 -38,0"
id="path4554-5-2-3-85"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200.00001,130.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,130.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293.00001,240.36218 0,-23"
id="path4554-5-0-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,202.36218 0,25"
id="path4405-1-3-84-0"
inkscape:connector-curvature="0" />
<path
transform="translate(255.50001,130.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373.00001,240.36218 0,-23"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,227.36218 24,-24"
id="path4373-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,202.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-42"
width="25"
height="25"
x="280"
y="322.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-6"
width="25"
height="25"
x="360"
y="322.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358.00001,295.36218 -38,0"
id="path4554-5-2-3-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200.00001,210.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-9"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,210.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293.00001,320.36218 0,-23"
id="path4554-5-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,282.36218 0,25"
id="path4405-1-3-84-1"
inkscape:connector-curvature="0" />
<path
transform="translate(255.50001,210.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373.00001,320.36218 0,-23"
id="path4554-5-0-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,307.36218 24,-24"
id="path4373-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,282.36218 0,25"
id="path4405-1-3-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,299.8571 -33,0"
id="path4554-9-4-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-129.1193,-122.09643)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.17856"
y="177.91582"
id="text3007-0-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5"
x="289.17856"
y="177.91582"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">c</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="369.35715"
y="178.18365"
id="text3007-0-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52"
x="369.35715"
y="178.18365"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">d</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="240"
y="302.85706"
id="text4978"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4980"
x="240"
y="302.85706">y</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="135"
y="137.8979"
id="text4974"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976"
x="135"
y="137.8979">x</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.17856"
y="337.91565"
id="text3007-0-2-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-3"
x="289.17856"
y="337.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">e</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="369.08926"
y="338.36212"
id="text3007-0-7-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-1"
x="369.08926"
y="338.36212"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">f</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.26785"
y="257.91565"
id="text3007-0-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1"
x="289.26785"
y="257.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="368.99997"
y="258.18353"
id="text3007-0-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-2"
x="368.99997"
y="258.18353"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="490.42905"
y="253.83659"
id="text31224"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan31226"
x="490.42905"
y="253.83659" /></text>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175.8807,0.26574802 0,24.99999998"
id="path4405-1-3"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

955
src/fig/chap3/Fig3.14b.svg Normal file
View File

@ -0,0 +1,955 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="281.14645"
height="231.02641"
id="svg3493"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.14b.svg">
<defs
id="defs3495">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4296"
style="overflow:visible">
<path
id="path4298"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4300"
style="overflow:visible">
<path
id="path4302"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4304"
style="overflow:visible">
<path
id="path4306"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4308"
style="overflow:visible">
<path
id="path4310"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4296-0"
style="overflow:visible">
<path
id="path4298-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4300-8"
style="overflow:visible">
<path
id="path4302-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4304-9"
style="overflow:visible">
<path
id="path4306-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4308-9"
style="overflow:visible">
<path
id="path4310-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-6"
style="overflow:visible">
<path
id="path4565-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4752"
style="overflow:visible">
<path
id="path4754"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4756"
style="overflow:visible">
<path
id="path4758"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4813"
style="overflow:visible">
<path
id="path4815"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4817"
style="overflow:visible">
<path
id="path4819"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
id="path4565-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4813-5"
style="overflow:visible">
<path
id="path4815-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4817-2"
style="overflow:visible">
<path
id="path4819-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-1"
style="overflow:visible">
<path
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-62"
style="overflow:visible">
<path
id="path4565-81"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5222"
style="overflow:visible">
<path
id="path5224"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5226"
style="overflow:visible">
<path
id="path5228"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="179.26194"
inkscape:cy="117.09257"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3501"
originx="-129.1193px"
originy="-704.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.14</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.14</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>list</rdf:li>
<rdf:li>define</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines 0"
style="display:inline"
transform="translate(-129.1193,-116.60151)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-2"
width="50"
height="25"
x="175"
y="116.86726"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0"
width="50"
height="25"
x="280"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6"
width="50"
height="25"
x="360"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5"
width="50"
height="25"
x="280"
y="202.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="360"
y="202.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-2-4"
width="50"
height="25"
x="175"
y="242.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-0"
width="50"
height="25"
x="280"
y="282.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-67"
width="50"
height="25"
x="360"
y="282.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
transform="translate(-129.1193,-116.60151)">
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4"
width="25"
height="25"
x="280"
y="162.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5"
width="25"
height="25"
x="360"
y="162.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358,135.36218 -38,0"
id="path4554-5-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200,50.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,50.472581)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293,160.36218 0,-23"
id="path4554-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,122.36218 0,25"
id="path4405-1-3-84"
inkscape:connector-curvature="0" />
<path
transform="translate(255.5,50.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373,160.36218 0,-23"
id="path4554-5-0-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,147.36218 24,-24"
id="path4373"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,129.86726 -63,0"
id="path4554-5-2-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(95.000003,45.005082)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-62"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(70.500003,44.977663)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-9"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,214.8979 -84.96423,0.0549 c -3.03592,0 -5.03577,-2.09065 -5.03577,-5.18021 l 0,-79.41041"
id="path4554-5-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 173,129.86726 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 200,116.86726 0,25"
id="path4405-1-3-7"
inkscape:connector-curvature="0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4"
width="25"
height="25"
x="280"
y="242.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-9"
width="25"
height="25"
x="360"
y="242.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358.00001,215.36218 -38,0"
id="path4554-5-2-3-85"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200.00001,130.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,130.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293.00001,240.36218 0,-23"
id="path4554-5-0-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,202.36218 0,25"
id="path4405-1-3-84-0"
inkscape:connector-curvature="0" />
<path
transform="translate(255.50001,130.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373.00001,240.36218 0,-23"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,227.36218 24,-24"
id="path4373-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,202.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-42"
width="25"
height="25"
x="280"
y="322.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-6"
width="25"
height="25"
x="360"
y="322.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358.00001,295.36218 -38,0"
id="path4554-5-2-3-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200.00001,210.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-9"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,210.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293.00001,320.36218 0,-23"
id="path4554-5-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,282.36218 0,25"
id="path4405-1-3-84-1"
inkscape:connector-curvature="0" />
<path
transform="translate(255.50001,210.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373.00001,320.36218 0,-23"
id="path4554-5-0-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,307.36218 24,-24"
id="path4373-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,282.36218 0,25"
id="path4405-1-3-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,299.8571 -33,0"
id="path4554-9-4-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
transform="translate(-129.1193,-116.60151)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.17856"
y="177.91582"
id="text3007-0-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5"
x="289.17856"
y="177.91582"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">c</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="369.35715"
y="178.18365"
id="text3007-0-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52"
x="369.35715"
y="178.18365"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">d</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="240"
y="302.85706"
id="text4978"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4980"
x="240"
y="302.85706">y</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="135"
y="132.40297"
id="text4974"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976"
x="135"
y="132.40297">x</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.17856"
y="337.91565"
id="text3007-0-2-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-3"
x="289.17856"
y="337.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">e</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="369.08926"
y="338.36212"
id="text3007-0-7-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-1"
x="369.08926"
y="338.36212"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">f</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.26785"
y="257.91565"
id="text3007-0-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1"
x="289.26785"
y="257.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="368.99997"
y="258.18353"
id="text3007-0-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-2"
x="368.99997"
y="258.18353"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">b</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,140.10964 -23,0 c -3,0 -5,2 -5,5.00001 l 0,105.28825 c 0,2.96428 -2,4.96428 -5,4.96428 l -30,0"
id="path4554-5-2-3-8-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
transform="translate(95.000007,170.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-62-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(70.500007,170.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-9-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,289.81236 -84.96423,0.0549 c -3.03592,0 -5.03577,-2.09065 -5.03577,-5.18021 l 0,-27.32513"
id="path4554-5-0-2-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 173,255.36218 -33,0"
id="path4554-9-4-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 200,242.36218 0,25"
id="path4405-1-3-7-6"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="135"
y="257.89789"
id="text4974-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976-5"
x="135"
y="257.89789">z</tspan></text>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175.8807,5.760668 0,25"
id="path4405-1-3"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 40 KiB

894
src/fig/chap3/Fig3.15b.svg Normal file
View File

@ -0,0 +1,894 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="281.14645"
height="225.53149"
id="svg3493"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.15b.svg">
<defs
id="defs3495">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4296"
style="overflow:visible">
<path
id="path4298"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4300"
style="overflow:visible">
<path
id="path4302"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4304"
style="overflow:visible">
<path
id="path4306"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4308"
style="overflow:visible">
<path
id="path4310"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4296-0"
style="overflow:visible">
<path
id="path4298-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4300-8"
style="overflow:visible">
<path
id="path4302-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4304-9"
style="overflow:visible">
<path
id="path4306-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4308-9"
style="overflow:visible">
<path
id="path4310-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-6"
style="overflow:visible">
<path
id="path4565-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4752"
style="overflow:visible">
<path
id="path4754"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4756"
style="overflow:visible">
<path
id="path4758"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
id="path4565-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4813"
style="overflow:visible">
<path
id="path4815"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4817"
style="overflow:visible">
<path
id="path4819"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
id="path4565-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4813-5"
style="overflow:visible">
<path
id="path4815-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker4817-2"
style="overflow:visible">
<path
id="path4819-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-1"
style="overflow:visible">
<path
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-62"
style="overflow:visible">
<path
id="path4565-81"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5222"
style="overflow:visible">
<path
id="path5224"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5226"
style="overflow:visible">
<path
id="path5228"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="219.59537"
inkscape:cy="112.65456"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3501"
originx="-129.1193px"
originy="-704.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.15">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.15</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.15</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>list</rdf:li>
<rdf:li>set-cdr</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines 0"
style="display:inline"
transform="translate(-129.1193,-122.09643)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-2"
width="50"
height="25"
x="175"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0"
width="50"
height="25"
x="280"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6"
width="50"
height="25"
x="360"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5"
width="50"
height="25"
x="280"
y="202.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="360"
y="202.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-0"
width="50"
height="25"
x="280"
y="282.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-67"
width="50"
height="25"
x="360"
y="282.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-129.1193,-122.09643)">
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4"
width="25"
height="25"
x="280"
y="162.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5"
width="25"
height="25"
x="360"
y="162.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358,135.36218 -38,0"
id="path4554-5-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200,50.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,50.472581)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293,160.36218 0,-23"
id="path4554-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,122.36218 0,25"
id="path4405-1-3-84"
inkscape:connector-curvature="0" />
<path
transform="translate(255.5,50.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373,160.36218 0,-23"
id="path4554-5-0-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,147.36218 24,-24"
id="path4373"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,289.89789 -60.5,0 c -2.91071,0 -4.94645,-1.97929 -4.94645,-4.99999 l 0,-149.53572"
id="path4554-5-2-3-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
transform="translate(95.000003,50.500003)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-62"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(70.500003,50.472584)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-9"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,214.8979 -84.96423,0.0549 c -3.03592,0 -5.03577,-2.09065 -5.03577,-5.18021 l 0,-74.41041"
id="path4554-5-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 173,135.36218 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 200,122.36218 0,25"
id="path4405-1-3-7"
inkscape:connector-curvature="0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4"
width="25"
height="25"
x="280"
y="242.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-9"
width="25"
height="25"
x="360"
y="242.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358.00001,215.36218 -38,0"
id="path4554-5-2-3-85"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200.00001,130.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,130.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293.00001,240.36218 0,-23"
id="path4554-5-0-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,202.36218 0,25"
id="path4405-1-3-84-0"
inkscape:connector-curvature="0" />
<path
transform="translate(255.50001,130.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373.00001,240.36218 0,-23"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,227.36218 24,-24"
id="path4373-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,202.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-42"
width="25"
height="25"
x="280"
y="322.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-6"
width="25"
height="25"
x="360"
y="322.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 358.00001,295.36218 -38,0"
id="path4554-5-2-3-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(200.00001,210.5)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-9"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(175.5,210.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 293.00001,320.36218 0,-23"
id="path4554-5-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,282.36218 0,25"
id="path4405-1-3-84-1"
inkscape:connector-curvature="0" />
<path
transform="translate(255.50001,210.47258)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 373.00001,320.36218 0,-23"
id="path4554-5-0-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,307.36218 24,-24"
id="path4373-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 305,282.36218 0,25"
id="path4405-1-3-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 278,299.8571 -33,0"
id="path4554-9-4-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-129.1193,-122.09643)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.17856"
y="177.91582"
id="text3007-0-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5"
x="289.17856"
y="177.91582"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">c</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="369.35715"
y="178.18365"
id="text3007-0-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52"
x="369.35715"
y="178.18365"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">d</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="240"
y="302.85706"
id="text4978"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4980"
x="240"
y="302.85706">y</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="135"
y="137.89789"
id="text4974"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976"
x="135"
y="137.89789">x</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.17856"
y="337.91565"
id="text3007-0-2-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-3"
x="289.17856"
y="337.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">e</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="369.08926"
y="338.36212"
id="text3007-0-7-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-1"
x="369.08926"
y="338.36212"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">f</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="289.26785"
y="257.91565"
id="text3007-0-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1"
x="289.26785"
y="257.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="368.99997"
y="258.18353"
id="text3007-0-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-2"
x="368.99997"
y="258.18353"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">b</tspan></text>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175.8807,0.26574802 0,24.99999998"
id="path4405-1-3"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

424
src/fig/chap3/Fig3.16b.svg Normal file
View File

@ -0,0 +1,424 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="177.70915"
height="115.5315"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.16b.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5346"
style="overflow:visible">
<path
id="path5348"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5350"
style="overflow:visible">
<path
id="path5352"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
id="path4565-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5586"
style="overflow:visible">
<path
id="path5588"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
id="path4565-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-38"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-0"
style="overflow:visible">
<path
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="121.08225"
inkscape:cy="65.062698"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2985"
originx="-87.556601px"
originy="-884.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.16">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.16</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.16</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>list</rdf:li>
<rdf:li>cons</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines 0"
style="display:inline"
transform="translate(-87.556601,-52.096432)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0"
width="50"
height="25"
x="140"
y="52.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5"
width="50"
height="25"
x="140"
y="102.36217"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="215"
y="102.36217"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:label="Lines"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(-87.556601,-52.096432)">
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4"
width="25"
height="25"
x="140"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-9"
width="25"
height="25"
x="215.00002"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 213,115.36218 -32.99998,0"
id="path4554-5-2-3-85"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(60.000016,30.499999)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(35.500003,30.472579)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 153.00002,140.36218 0,-23"
id="path4554-5-0-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 240,102.36218 0,25"
id="path4405-1-3-84-0"
inkscape:connector-curvature="0" />
<path
transform="translate(110.50002,30.472579)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 228.00002,140.36218 0,-23"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 240,127.36218 24,-24"
id="path4373-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 165,102.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<path
transform="translate(60.000003,-19.500001)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(35.5,-19.52742)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 153.00001,100.36218 0,-33.000001"
id="path4554-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 165,52.36218 0,25"
id="path4405-1-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 177.55355,100.36218 0,-32.999995"
id="path4554-5-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 138,65.362179 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 138,115.36218 -33,0"
id="path4554-9-4-6-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-87.556601,-52.096432)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="100.00001"
y="67.897888"
id="text4974"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976"
x="100.00001"
y="67.897888">z1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="100.00001"
y="117.89789"
id="text4974-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976-9"
x="100.00001"
y="117.89789">x</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="149.26785"
y="157.91565"
id="text3007-0-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1"
x="149.26785"
y="157.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="223.99998"
y="158.18353"
id="text3007-0-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-2"
x="223.99998"
y="158.18353"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">b</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

558
src/fig/chap3/Fig3.17b.svg Normal file
View File

@ -0,0 +1,558 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="277.70914"
height="105.53151"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.17b.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5346"
style="overflow:visible">
<path
id="path5348"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5350"
style="overflow:visible">
<path
id="path5352"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
id="path4565-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5586"
style="overflow:visible">
<path
id="path5588"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
id="path4565-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-38"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-0"
style="overflow:visible">
<path
id="path4565-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-47"
style="overflow:visible">
<path
id="path4565-64"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5743"
style="overflow:visible">
<path
id="path5745"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5747"
style="overflow:visible">
<path
id="path5749"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-1"
style="overflow:visible">
<path
id="path4565-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker5819"
style="overflow:visible">
<path
id="path5821"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="188.51441"
inkscape:cy="52.761008"
inkscape:document-units="px"
inkscape:current-layer="layer6"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2985"
originx="12.443399px"
originy="-844.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.17">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.17</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.17</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>list</rdf:li>
<rdf:li>cons</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines 0"
style="display:inline"
transform="translate(12.443399,-102.09642)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-6"
width="50"
height="25"
x="40"
y="102.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5"
width="50"
height="25"
x="140"
y="102.36217"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="215"
y="102.36217"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-8"
width="50"
height="25"
x="140"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6-6"
width="50"
height="25"
x="215"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:label="Lines"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(12.443399,-102.09642)">
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4"
width="25"
height="25"
x="140"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-9"
width="25"
height="25"
x="215.00002"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 213,114.91573 -35,0"
id="path4554-5-2-3-85"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(60.000016,29.964283)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(34.964287,30.026149)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 152.55357,140.36218 0,-25"
id="path4554-5-0-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 240,102.36218 0,25"
id="path4405-1-3-84-0"
inkscape:connector-curvature="0" />
<path
transform="translate(109.96428,30.026149)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 227.55357,140.36218 0,-25"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 240,127.36218 24,-24"
id="path4373-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 165,102.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 38,114.89792 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 213,194.91573 -35,0"
id="path4554-5-2-3-85-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(60.000019,109.96426)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(34.964287,110.02613)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-2"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 152.55357,169.36218 0,25"
id="path4554-5-0-27-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 240,182.36218 0,25"
id="path4405-1-3-84-0-6"
inkscape:connector-curvature="0" />
<path
transform="translate(109.96428,110.02613)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 227.55357,169.36218 0,25"
id="path4554-5-0-7-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 240,207.36218 24,-24"
id="path4373-3-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 165,182.36218 0,25"
id="path4405-1-3-3-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 138,114.91573 -59.999997,0"
id="path4554-5-2-3-85-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(-39.999981,29.96429)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(-65.035707,30.026156)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-4"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 138,194.8979 -80.500099,0.0841 c -3.10086,0 -4.946328,-2.02262 -4.946328,-5.08413 l 0,-74.53571"
id="path4554-5-0-27-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 65,102.36218 0,25"
id="path4405-1-3-3-3"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Text"
style="display:inline"
transform="translate(12.443399,-102.09642)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="149.26785"
y="157.91565"
id="text3007-0-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1"
x="149.26785"
y="157.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="223.99998"
y="158.18353"
id="text3007-0-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-2"
x="223.99998"
y="158.18353"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="7.6293945e-06"
y="117.88004"
id="text4974"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976"
x="7.6293945e-06"
y="117.88004">z2</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

163
src/fig/chap3/Fig3.18a.svg Normal file
View File

@ -0,0 +1,163 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="271.53149"
height="133.892"
id="svg5876"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.18a.svg">
<defs
id="defs5878" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="142.30146"
inkscape:cy="62.361797"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid5884"
originx="-80.734252px"
originy="-851.72086px" />
</sodipodi:namedview>
<metadata
id="metadata_3.18">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.18</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.18</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>queue</rdf:li>
<rdf:li>operations</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Lines"
style="display:inline"
transform="translate(-80.734252,-66.749322)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 81,79.362183 59,0"
id="path5910"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 253,79.362183 99,0"
id="path5912"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:label="Text"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(-80.734252,-66.749322)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:139.99999762%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="80.714287"
y="75.219322"
id="text5886"
sodipodi:linespacing="140%"><tspan
sodipodi:role="line"
id="tspan5888"
x="80.714287"
y="75.219322"
style="line-height:139.99999762%">Operation Resulting Queue</tspan><tspan
sodipodi:role="line"
x="80.714287"
y="90.619324"
id="tspan5906"
style="line-height:139.99999762%" /><tspan
sodipodi:role="line"
x="80.714287"
y="106.01933"
id="tspan5890"
style="line-height:139.99999762%">(define q (make-queue))</tspan><tspan
sodipodi:role="line"
x="80.714287"
y="121.41932"
id="tspan5892"
style="line-height:139.99999762%">(insert-queue! q 'a) a</tspan><tspan
sodipodi:role="line"
x="80.714287"
y="136.81932"
id="tspan5894"
style="line-height:139.99999762%">(insert-queue! q 'b) a b</tspan><tspan
sodipodi:role="line"
x="80.714287"
y="152.21931"
id="tspan5896"
style="line-height:139.99999762%">(delete-queue! q) b</tspan><tspan
sodipodi:role="line"
x="80.714287"
y="167.61932"
id="tspan5898"
style="line-height:139.99999762%">(insert-queue! q 'c) b c</tspan><tspan
sodipodi:role="line"
x="80.714287"
y="183.01932"
id="tspan5900"
style="line-height:139.99999762%">(insert-queue! q 'd) b c d</tspan><tspan
sodipodi:role="line"
x="80.714287"
y="198.41933"
id="tspan5902"
style="line-height:139.99999762%">(delete-queue! q) c d</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.9 KiB

499
src/fig/chap3/Fig3.19b.svg Normal file
View File

@ -0,0 +1,499 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="269.06763"
height="130.53149"
id="svg6534"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.19b.svg"
style="display:inline">
<defs
id="defs6536">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7077"
style="overflow:visible">
<path
id="path7079"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7081"
style="overflow:visible">
<path
id="path7083"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7171"
style="overflow:visible">
<path
id="path7173"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-84"
style="overflow:visible">
<path
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7267"
style="overflow:visible">
<path
id="path7269"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="161.14824"
inkscape:cy="61.916058"
inkscape:document-units="px"
inkscape:current-layer="layer4"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid6542"
originx="-104.0533px"
originy="-844.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.19">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.19</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.19</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>queue</rdf:li>
<rdf:li>list</rdf:li>
<rdf:li>front-ptr</rdf:li>
<rdf:li>rear-ptr</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines 0"
style="display:inline"
transform="translate(-104.0533,-77.096432)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-6-9"
width="50"
height="25"
x="150"
y="77.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-6"
width="50"
height="25"
x="150"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5"
width="50"
height="25"
x="225"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="300"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-104.0533,-77.096432)">
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4"
width="25"
height="25"
x="224.99998"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-9"
width="25"
height="25"
x="300.00003"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 297.99999,154.91574 -35,0"
id="path4554-5-2-3-85"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(145.00001,69.964294)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(119.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 237.55356,180.36219 0,-25"
id="path4554-5-0-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 324.99999,142.36218 0,25"
id="path4405-1-3-84-0"
inkscape:connector-curvature="0" />
<path
transform="translate(194.96427,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 312.55356,180.36219 0,-25"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 324.99999,167.36219 24,-24"
id="path4373-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 250,142.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="309"
y="198.18353"
id="text3007-0-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-2"
x="309"
y="198.18353"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">c</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-9"
width="25"
height="25"
x="149.99997"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 222.99999,154.91574 -35,0"
id="path4554-5-2-3-85-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(70.000009,69.964297)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(44.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-5"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 162.55356,180.36219 0,-25"
id="path4554-5-0-27-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175,142.36218 0,25"
id="path4405-1-3-3-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 312.55357,140.36218 0,-45.5 c 0,-3.039957 -1.92401,-4.946437 -4.91071,-4.946437 l -119.64286,0"
id="path4554-5-2-3-85-7-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
transform="translate(70.000012,4.9643)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-7-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(44.96428,5.026157)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-5-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 162.55357,140.36218 0,-49.999987"
id="path4554-5-0-27-6-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175,77.36218 0,25"
id="path4405-1-3-3-4-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 148,89.915753 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-104.0533,-77.096432)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="170.64285"
y="125.36218"
id="text7335"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7337"
x="170.64285"
y="125.36218">front-ptr</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="110.00001"
y="92.451454"
id="text4974"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976"
x="110.00001"
y="92.451454">q</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="159.26784"
y="197.91565"
id="text3007-0-2-9-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-5"
x="159.26784"
y="197.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="234.26784"
y="197.91565"
id="text3007-0-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1"
x="234.26784"
y="197.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="321"
y="125.36218"
id="text7335-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7337-2"
x="321"
y="125.36218">rear-ptr</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

591
src/fig/chap3/Fig3.20b.svg Normal file
View File

@ -0,0 +1,591 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="344.06763"
height="130.53149"
id="svg6534"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.20b.svg">
<defs
id="defs6536">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7077"
style="overflow:visible">
<path
id="path7079"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7081"
style="overflow:visible">
<path
id="path7083"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7171"
style="overflow:visible">
<path
id="path7173"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-84"
style="overflow:visible">
<path
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7267"
style="overflow:visible">
<path
id="path7269"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
id="path4565-03"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3084"
style="overflow:visible">
<path
id="path3086"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="194.51663"
inkscape:cy="61.916058"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid6542"
originx="-104.0533px"
originy="-844.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.20">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.20</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.20</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>queue</rdf:li>
<rdf:li>insert</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines 0"
style="display:inline"
transform="translate(-104.0533,-77.096432)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-6-9"
width="50"
height="25"
x="150"
y="77.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-6"
width="50"
height="25"
x="150"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5"
width="50"
height="25"
x="225"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-5"
width="50"
height="25"
x="300"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="375"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-104.0533,-77.096432)">
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4"
width="25"
height="25"
x="224.99998"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-9"
width="25"
height="25"
x="375.00003"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 297.99999,154.91574 -35,0"
id="path4554-5-2-3-85"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(145.00001,69.964294)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(119.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 237.55356,180.36219 0,-25"
id="path4554-5-0-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 400,142.36218 0,25"
id="path4405-1-3-84-0"
inkscape:connector-curvature="0" />
<path
transform="translate(269.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 387.55357,180.36219 0,-25"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 400,167.36219 24,-24"
id="path4373-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 250,142.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-9"
width="25"
height="25"
x="149.99997"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 222.99999,154.91574 -35,0"
id="path4554-5-2-3-85-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(70.000009,69.964297)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(44.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-5"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 162.55356,180.36219 0,-25"
id="path4554-5-0-27-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175,142.36218 0,25"
id="path4405-1-3-3-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 387.55357,140.36218 0,-45.5 c 0,-3.039957 -1.92401,-4.946437 -4.91071,-4.946437 l -194.64286,0"
id="path4554-5-2-3-85-7-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
transform="translate(70.000012,4.9643)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-7-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(44.96428,5.026157)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-5-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 162.55357,140.36218 0,-49.999987"
id="path4554-5-0-27-6-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175,77.36218 0,25"
id="path4405-1-3-3-4-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 148,89.915753 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-104.0533,-77.096432)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="171"
y="125.36218"
id="text7335"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7337"
x="171"
y="125.36218">front-ptr</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="110.00001"
y="92.451454"
id="text4974"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976"
x="110.00001"
y="92.451454">q</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="159.26784"
y="197.91565"
id="text3007-0-2-9-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-5"
x="159.26784"
y="197.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="234.26784"
y="197.91565"
id="text3007-0-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1"
x="234.26784"
y="197.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="396"
y="125.36218"
id="text7335-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7337-2"
x="396"
y="125.36218">rear-ptr</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-3"
width="25"
height="25"
x="299.99997"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 372.99999,154.91574 -35,0"
id="path4554-5-2-3-85-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(220.00001,69.964297)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-73"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(194.96428,70.026157)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-2"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 312.55356,180.36219 0,-25"
id="path4554-5-0-27-65"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 325,142.36218 0,25"
id="path4405-1-3-3-8"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="309.26782"
y="197.91565"
id="text3007-0-2-9-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-9"
x="309.26782"
y="197.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">c</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="384"
y="198.18353"
id="text3007-0-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-2"
x="384"
y="198.18353"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">d</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

591
src/fig/chap3/Fig3.21b.svg Normal file
View File

@ -0,0 +1,591 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="344.06763"
height="130.53149"
id="svg6534"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.21b.svg">
<defs
id="defs6536">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7077"
style="overflow:visible">
<path
id="path7079"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7081"
style="overflow:visible">
<path
id="path7083"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7171"
style="overflow:visible">
<path
id="path7173"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-84"
style="overflow:visible">
<path
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7267"
style="overflow:visible">
<path
id="path7269"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
id="path4565-03"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3084"
style="overflow:visible">
<path
id="path3086"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="177.27225"
inkscape:cy="61.916058"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid6542"
originx="-104.0533px"
originy="-844.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.21">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.21</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.21</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>queue</rdf:li>
<rdf:li>delete</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines 0"
style="display:inline"
transform="translate(-104.0533,-77.096432)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-6-9"
width="50"
height="25"
x="150"
y="77.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-6"
width="50"
height="25"
x="150"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5"
width="50"
height="25"
x="225"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-5"
width="50"
height="25"
x="300"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="375"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4"
width="25"
height="25"
x="224.99998"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-5-9"
width="25"
height="25"
x="375.00003"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-9"
width="25"
height="25"
x="149.99997"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-3"
width="25"
height="25"
x="299.99997"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-104.0533,-77.096432)">
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 297.99999,154.91574 -35,0"
id="path4554-5-2-3-85"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(145.00001,69.964294)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(119.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 237.55356,180.36219 0,-25"
id="path4554-5-0-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 400,142.36218 0,25"
id="path4405-1-3-84-0"
inkscape:connector-curvature="0" />
<path
transform="translate(269.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 387.55357,180.36219 0,-25"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 400,167.36219 24,-24"
id="path4373-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 250,142.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 222.99999,154.91574 -35,0"
id="path4554-5-2-3-85-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(70.000009,69.964297)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(44.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-5"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 162.55356,180.36219 0,-25"
id="path4554-5-0-27-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175,142.36218 0,25"
id="path4405-1-3-3-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 387.55357,140.36218 0,-45.5 c 0,-3.039957 -1.92401,-4.946437 -4.91071,-4.946437 l -194.64286,0"
id="path4554-5-2-3-85-7-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
transform="translate(70.000012,4.9643)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-7-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(44.96428,5.026157)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-5-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 237.46621,140.36218 0.0695,-8.00017 c -0.0695,-2.99983 -2.0695,-4.99983 -4.98015,-4.98227 l -65.05536,-0.0176 c -3.03591,0 -4.94663,-1.85461 -4.94663,-5.08928 l 0,-31.910707"
id="path4554-5-0-27-6-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 175,77.36218 0,25"
id="path4405-1-3-3-4-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 148,89.915753 -33,0"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-104.0533,-77.096432)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="171"
y="119.36218"
id="text7335"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7337"
x="171"
y="119.36218">front-ptr</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="110.00001"
y="92.451454"
id="text4974"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4976"
x="110.00001"
y="92.451454">q</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="159.26784"
y="197.91565"
id="text3007-0-2-9-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-5"
x="159.26784"
y="197.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="234.26784"
y="197.91565"
id="text3007-0-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1"
x="234.26784"
y="197.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="396"
y="125.36218"
id="text7335-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7337-2"
x="396"
y="125.36218">rear-ptr</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 372.99999,154.91574 -35,0"
id="path4554-5-2-3-85-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(220.00001,69.964297)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-73"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(194.96428,70.026157)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-2"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 312.55356,180.36219 0,-25"
id="path4554-5-0-27-65"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 325,142.36218 0,25"
id="path4405-1-3-3-8"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="309.26782"
y="197.91565"
id="text3007-0-2-9-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-9"
x="309.26782"
y="197.91565"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">c</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="384"
y="198.18353"
id="text3007-0-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-52-2"
x="384"
y="198.18353"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">d</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

866
src/fig/chap3/Fig3.22c.svg Normal file
View File

@ -0,0 +1,866 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="315.53149"
height="158.74675"
id="svg6534"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.22c.svg">
<defs
id="defs6536">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4565"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7077"
style="overflow:visible">
<path
id="path7079"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7081"
style="overflow:visible">
<path
id="path7083"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-8"
style="overflow:visible">
<path
id="path4565-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7171"
style="overflow:visible">
<path
id="path7173"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-84"
style="overflow:visible">
<path
id="path4565-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker7267"
style="overflow:visible">
<path
id="path7269"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-5"
style="overflow:visible">
<path
id="path4565-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-9"
style="overflow:visible">
<path
id="path4565-03"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3084"
style="overflow:visible">
<path
id="path3086"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
id="path4565-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3241"
style="overflow:visible">
<path
id="path3243"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3245"
style="overflow:visible">
<path
id="path3247"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3249"
style="overflow:visible">
<path
id="path3251"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3253"
style="overflow:visible">
<path
id="path3255"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="marker3257"
style="overflow:visible">
<path
id="path3259"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-4"
style="overflow:visible">
<path
id="path4565-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-1"
style="overflow:visible">
<path
id="path4565-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-82"
style="overflow:visible">
<path
id="path4565-90"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-93"
style="overflow:visible">
<path
id="path4565-54"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="202.17538"
inkscape:cy="75.124928"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid6542"
originx="-134.73425px"
originy="-794.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.22">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.22</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.22</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>table</rdf:li>
<rdf:li>headed</rdf:li>
<rdf:li>list</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Boxes"
style="display:inline"
transform="translate(-134.73425,-98.881183)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-6"
width="50"
height="25"
x="140"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5"
width="50"
height="25"
x="225"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-5"
width="50"
height="25"
x="310"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-6-6"
width="50"
height="25"
x="395"
y="142.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-6-0"
width="50"
height="25"
x="225"
y="192.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-8"
width="50"
height="25"
x="310"
y="192.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect3794-7-1-0-5-5-9"
width="50"
height="25"
x="395"
y="192.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-9"
width="25"
height="25"
x="220"
y="232.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4"
width="25"
height="25"
x="305"
y="232.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-3"
width="25"
height="25"
x="390"
y="232.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-9-7"
width="25"
height="25"
x="255"
y="232.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-9-5"
width="25"
height="25"
x="340"
y="232.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-9-9"
width="25"
height="25"
x="425"
y="232.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect3794-77-9-4-4-9-4"
width="60"
height="25"
x="135"
y="192.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-134.73425,-98.881183)">
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 308,154.91574 -45.00001,0"
id="path4554-5-2-3-85"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(145.00001,69.964294)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(119.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 237.55356,190.36218 0,-34.99999"
id="path4554-5-0-27"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 420,142.36218 0,25"
id="path4405-1-3-84-0"
inkscape:connector-curvature="0" />
<path
transform="translate(289.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-6-8"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 407.55357,190.36218 0,-34.99999"
id="path4554-5-0-7-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 420,167.36219 24,-24"
id="path4373-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 250,142.36218 0,25"
id="path4405-1-3-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 223,154.91574 -45.00001,0"
id="path4554-5-2-3-85-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(60.000009,69.964297)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(34.96428,70.026154)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-5"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 152.55356,190.36218 0,-34.99999"
id="path4554-5-0-27-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 165,142.36218 0,25"
id="path4405-1-3-3-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 165,140.36218 0,-28"
id="path4554-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(230.00002,119.9643)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-4"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(204.96429,120.02616)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-0"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 322.55357,230.3622 0,-25"
id="path4554-5-0-27-60"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 335,192.36218 0,25"
id="path4405-1-3-3-43"
inkscape:connector-curvature="0" />
<path
transform="translate(145.00002,119.96431)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-7-1"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(119.96428,120.02616)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-5-19"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 237.55357,230.3622 0,-25"
id="path4554-5-0-27-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 250,192.36218 0,25"
id="path4405-1-3-3-4-2"
inkscape:connector-curvature="0" />
<path
transform="translate(315.00002,119.96431)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-73-7"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(289.96429,120.02617)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-2-6"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 407.55356,230.3622 0,-25"
id="path4554-5-0-27-65-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 420.00001,192.36218 0,25"
id="path4405-1-3-3-8-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 347.55357,230.3622 0,-25"
id="path4554-5-0-27-6-0-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 432.55357,230.3622 0,-25"
id="path4554-5-0-27-6-0-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 262.55357,230.3622 0,-25"
id="path4554-5-0-27-6-0-12"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 393,154.91574 -45.00001,0"
id="path4554-5-2-3-85-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);display:inline"
d="m 322.55356,190.36218 0,-34.99999"
id="path4554-5-0-27-65"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(230.00001,69.964297)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-44-0-1-73"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
transform="translate(204.96428,70.026157)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4491-4-7-7-2"
sodipodi:cx="117.5"
sodipodi:cy="84.862183"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 120,84.862183 c 0,1.380711 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119289 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 335,142.36218 0,25"
id="path4405-1-3-3-8"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-134.73425,-98.881183)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="229.26787"
y="248.45137"
id="text3007-0-2-9-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-5"
x="229.26787"
y="248.45137"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="314.26785"
y="248.45137"
id="text3007-0-2-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1"
x="314.26785"
y="248.45137"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="399.26785"
y="248.45137"
id="text3007-0-2-9-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-9"
x="399.26785"
y="248.45137"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">c</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="264.26785"
y="248.45137"
id="text3007-0-2-9-5-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-5-7"
x="264.26785"
y="248.45137"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="349.26785"
y="248.45137"
id="text3007-0-2-9-5-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-5-4"
x="349.26785"
y="248.45137"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="434.26785"
y="248.45137"
id="text3007-0-2-9-5-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-5-1"
x="434.26785"
y="248.45137"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">3</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="165"
y="208.62994"
id="text3007-0-2-9-5-40"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3009-8-5-1-5-5"
x="165"
y="208.62994"
dy="0 0 0 0 0 0 0"
style="font-weight:normal;-inkscape-font-specification:Inconsolata LGC">*table*</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="165"
y="107.36218"
id="text3507"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3509"
x="165"
y="107.36218">table</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

1534
src/fig/chap3/Fig3.23a.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 68 KiB

218
src/fig/chap3/Fig3.24b.svg Normal file
View File

@ -0,0 +1,218 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="220.53149"
height="49.17609"
id="svg3108"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.24b.svg"
style="display:inline">
<defs
id="defs3110" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="4"
inkscape:cx="124.75073"
inkscape:cy="24.48859"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3116"
originx="-154.73425px"
originy="-951.12px" />
</sodipodi:namedview>
<metadata
id="metadata_3.24">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.24</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.24</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>digital</rdf:li>
<rdf:li>logic</rdf:li>
<rdf:li>primitive</rdf:li>
<rdf:li>function</rdf:li>
<rdf:li>inverter</rdf:li>
<rdf:li>and-gate</rdf:li>
<rdf:li>or-gate</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-154.73425,-52.066092)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 252,52.362183 10,0 c 18,0 18,25 0,25 l -10,0 c -0.98149,0 -1.77165,-0.79015 -1.77165,-1.77165 l 0,-21.45669 c 0,-0.9815 0.79016,-1.77166 1.77165,-1.77166 z"
id="rect3794-77-9-4-42-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 235,72.362183 15.08839,0"
id="path5898"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 235,57.362183 15.08839,0"
id="path5898-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 275.60225,64.915733 15.39775,0"
id="path5898-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 328,52.36218 12,0 c 10,0 17,6 20,12.5 -3,6.5 -10,12.5 -20,12.5 l -12,0 c 5,-7 5,-18 0,-25 z"
id="rect3794-77-9-4-42-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 315,57.36218 15.44194,0"
id="path5898-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 315,72.36218 15.39775,0"
id="path5898-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 360,64.89792 15,0"
id="path5898-11"
inkscape:connector-curvature="0" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 172,52.33184 c 0.97049,0 3,1 23,11 1.25254,0.68433 1.28411,2.25254 0,3 -20,10 -22.02806,11 -23,11 -0.98149,0 -1.77165,-0.79015 -1.77165,-1.77165 l 0,-21.45669 c 0,-0.9815 0.79016,-1.77166 1.77165,-1.77166 z"
id="rect3794-77-9-4-42-8-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssc" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path3164"
sodipodi:cx="282.5"
sodipodi:cy="209.86218"
sodipodi:rx="3.0625"
sodipodi:ry="3.0625"
d="m 285.5625,209.86218 c 0,1.69137 -1.37113,3.0625 -3.0625,3.0625 -1.69137,0 -3.0625,-1.37113 -3.0625,-3.0625 0,-1.69137 1.37113,-3.0625 3.0625,-3.0625 1.69137,0 3.0625,1.37113 3.0625,3.0625 z"
transform="translate(-83.4375,-145.03034)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 155,64.86218 15.13258,0"
id="path5898-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 202.2487,64.86218 9.39775,0"
id="path5898-2-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-154.73425,-52.066092)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="186"
y="98.862183"
id="text4012"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4014"
x="186"
y="98.862183"
style="font-size:10px">Inverter</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="263"
y="98.862183"
id="text4016"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4018"
x="263"
y="98.862183"
style="font-size:10px">And-gate</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="345"
y="98.862183"
id="text4020"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4022"
x="345"
y="98.862183"
style="font-size:10px">Or-gate</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

298
src/fig/chap3/Fig3.25c.svg Normal file
View File

@ -0,0 +1,298 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="281.05377"
height="110.53149"
id="svg4049"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.25c.svg">
<defs
id="defs4051" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="141.80616"
inkscape:cy="55.539535"
inkscape:document-units="px"
inkscape:current-layer="layer8"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4057"
originx="-87.032219px"
originy="-844.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.25">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.25</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.25</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>half-adder</rdf:li>
<rdf:li>circuit</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="Box"
style="display:inline"
transform="translate(-87.032219,-97.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 128,97.362183 199,0 c 6,0 8,2 8,7.999997 l 0,94 c 0,6 -2,8 -8,8 l -199,0 c -5.97955,0 -8,-1.93117 -8,-8 l 0,-94 c 0,-5.999997 2,-7.999997 8,-7.999997 z"
id="rect4940"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-87.032219,-97.096435)">
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 229,144.83184 c 0.97049,0 3,1 23,11 1.25254,0.68433 1.28411,2.25254 0,3 -20,10 -22.02806,11 -23,11 -0.98149,0 -1.77165,-0.79015 -1.77165,-1.77165 l 0,-21.45669 c 0,-0.9815 0.79016,-1.77166 1.77165,-1.77166 z"
id="rect3794-77-9-4-42-8-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssc" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 292,117.36218 10,0 c 18,0 18,25 0,25 l -10,0 c -0.98149,0 -1.77165,-0.79015 -1.77165,-1.77165 l 0,-21.45669 c 0,-0.9815 0.79016,-1.77166 1.77165,-1.77166 z"
id="rect3794-77-9-4-42-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 315.58963,129.91573 39.41037,0"
id="path5898-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 171,169.80863 10,0 c 18,0 18,25 0,25 l -10,0 c -0.98149,0 -1.77165,-0.79015 -1.77165,-1.77165 l 0,-21.45669 c 0,-0.9815 0.79016,-1.77166 1.77165,-1.77166 z"
id="rect3794-77-9-4-42-8-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 100,189.80863 69.08929,0"
id="path5898-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 194.62119,182.36218 160.37881,0"
id="path5898-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 220,122.36218 70.0947,0"
id="path5898-11"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 290.0947,137.36218 -12.0947,0 c -2,0 -3,1 -3,3 l 0,14 c 0,2 -1,3 -3,3 l -12.73214,0"
id="path5898-9-7-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 100,114.80863 90.40179,0"
id="path5898-11-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 227.08929,157.36218 -12.08929,0 c -2,0 -3,1 -3,3 l 0,22"
id="path5898-9-7-4-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 155,114.82647 0,57.07142 c 0,2 1,3 3.03571,3 l 11.05358,0"
id="path5898-11-5-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 190.37881,129.80796 -50.37881,0 c -2,0 -3,1.10777 -3,3.10777 l 0,56.44645"
id="path5898-9-7-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 188,109.82644 12,0 c 10,0 17,6 20,12.5 -3,6.5 -10,12.5 -20,12.5 l -12,0 c 5,-7 5,-18 0,-25 z"
id="rect3794-77-9-4-42-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
transform="translate(1,-6)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.70866144;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4802-7"
sodipodi:cx="211"
sodipodi:cy="188.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 212,188.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.70866144;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4802-9-9"
sodipodi:cx="211"
sodipodi:cy="188.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 212,188.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z"
transform="translate(-56.089286,-73.55357)" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.70866144;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4802-9-0"
sodipodi:cx="211"
sodipodi:cy="188.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 212,188.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z"
transform="translate(-74,1.4464285)" />
<path
sodipodi:type="arc"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path3164"
sodipodi:cx="282.5"
sodipodi:cy="209.86218"
sodipodi:rx="3.0625"
sodipodi:ry="3.0625"
d="m 285.5625,209.86218 c 0,1.69137 -1.37113,3.0625 -3.0625,3.0625 -1.69137,0 -3.0625,-1.37113 -3.0625,-3.0625 0,-1.69137 1.37113,-3.0625 3.0625,-3.0625 1.69137,0 3.0625,1.37113 3.0625,3.0625 z"
transform="translate(-26.4375,-52.530337)" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-87.032219,-97.096435)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="224"
y="116.36218"
id="text4958"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4960"
x="224"
y="116.36218">D</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="263"
y="151.36218"
id="text4962"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4964"
x="263"
y="151.36218">E</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="95"
y="118.36218"
id="text4942"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4944"
x="95"
y="118.36218">A</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="95"
y="193.36218"
id="text4946"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4948"
x="95"
y="193.36218">B</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="360"
y="133.36218"
id="text4950"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4952"
x="360"
y="133.36218">S</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="360"
y="186.36218"
id="text4954"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4956"
x="360"
y="186.36218">C</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

300
src/fig/chap3/Fig3.26a.svg Normal file
View File

@ -0,0 +1,300 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="286.74625"
height="110.53149"
id="svg6217"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.26a.svg">
<defs
id="defs6219" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="174.7786"
inkscape:cy="52.807485"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid6225"
originx="-142.676px"
originy="-634.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.26">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.26</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.26</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>full-adder</rdf:li>
<rdf:li>circuit</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Box"
style="display:inline"
transform="translate(-142.676,-307.09643)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 188,307.36218 194,0 c 6,0 8,2 8,8 l 0,94 c 0,6 -2,8 -8,8 l -194,0 c -5.97955,0 -8,-1.93117 -8,-8 l 0,-94 c 0,-6 2,-8 8,-8 z"
id="rect4940"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
</g>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Lines"
style="display:inline"
transform="translate(-142.676,-307.09643)">
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 340,357.36218 12,0 c 10,0 17,6 20,12.5 -3,6.5 -10,12.5 -20,12.5 l -12,0 c 5,-7 5,-18 0,-25 z"
id="rect3794-77-9-4-42-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 160,327.36218 110,0"
id="path5898-9-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 160,362.36218 40,0"
id="path5898-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 160,397.36218 40,0"
id="path5898-9-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 250,362.36218 20,0"
id="path5898-9-41"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 250,377.36218 92.37881,0"
id="path5898-9-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 320,327.36218 80,0"
id="path5898-9-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 372,369.89792 28,0"
id="path5898-9-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 320,362.36218 22.26786,0"
id="path5898-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788"
width="50"
height="45"
x="200"
y="357.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-8"
width="50"
height="45"
x="270"
y="322.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-142.676,-307.09643)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:120.00000477%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="209.64285"
y="376.29074"
id="text6790"
sodipodi:linespacing="120%"><tspan
sodipodi:role="line"
id="tspan6792"
x="209.64285"
y="376.29074"
style="line-height:120.00000477%">half-</tspan><tspan
sodipodi:role="line"
x="209.64285"
y="391.89075"
id="tspan6794"
style="line-height:120.00000477%">adder</tspan><tspan
sodipodi:role="line"
x="209.64285"
y="407.49075"
id="tspan6796"
style="line-height:120.00000477%" /></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:120.00000477%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="279.64285"
y="341.29074"
id="text6790-6"
sodipodi:linespacing="120%"><tspan
sodipodi:role="line"
id="tspan6792-7"
x="279.64285"
y="341.29074"
style="line-height:120.00000477%">half-</tspan><tspan
sodipodi:role="line"
x="279.64285"
y="356.89075"
id="tspan6794-0"
style="line-height:120.00000477%">adder</tspan><tspan
sodipodi:role="line"
x="279.64285"
y="372.49075"
id="tspan6796-5"
style="line-height:120.00000477%" /></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="155"
y="331.36218"
id="text4942"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4944"
x="155"
y="331.36218">A</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="155"
y="366.36218"
id="text4942-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4944-7"
x="155"
y="366.36218">B</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="158"
y="401.36218"
id="text4942-32"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4944-3"
x="158"
y="401.36218">C<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan7173">in</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="403.7576"
y="331.36218"
id="text4942-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4944-4"
x="403.7576"
y="331.36218">SUM</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="405"
y="373.36218"
id="text4942-32-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4944-3-3"
x="405"
y="373.36218">C<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan7220">out</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="350"
y="372.91571"
id="text7222"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7224"
x="350"
y="372.91571">or</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

550
src/fig/chap3/Fig3.27a.svg Normal file
View File

@ -0,0 +1,550 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="375.4003"
height="104.244"
id="svg7274"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.27a.svg"
style="display:inline">
<defs
id="defs7276" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="194.15233"
inkscape:cy="44.2221"
inkscape:document-units="px"
inkscape:current-layer="layer8"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid7282"
originx="-121.86545px"
originy="-654.31px" />
</sodipodi:namedview>
<metadata
id="metadata_3.27">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.27</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.27</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>ripple-carry</rdf:li>
<rdf:li>adder</rdf:li>
<rdf:li>circuit</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Lines"
style="display:inline"
transform="translate(-121.86545,-293.80818)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788"
width="50"
height="35"
x="160"
y="327.36218"
rx="5.3149605"
ry="5.3149605" />
<path
sodipodi:nodetypes="cccc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 135,377.36218 30,0 c 3,0 5,-2 5,-5 l 0,-10"
id="path5898-11-5-2-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 200,382.36218 0,-20"
id="path5898-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 170,327.36218 0,-20"
id="path5898-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 185,327.36218 0,-20"
id="path5898-2-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccccccccc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 200,327.36218 0,-10 c 0,-3 2,-5 5,-5 l 14.9643,0 c 3,0 5,2 5.0357,5 l -0.0357,55 c 0,3 2,5 5,5 l 15.0357,0 c 3,0 5,-2 5,-5 l 0,-10"
id="path5898-11-5-2-8"
inkscape:connector-curvature="0" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-8"
width="50"
height="35"
x="240"
y="327.36218"
rx="5.3149605"
ry="5.3149605" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 280,382.36218 0,-20"
id="path5898-2-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 250,327.36218 0,-20"
id="path5898-2-0-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 265,327.36218 0,-20"
id="path5898-2-2-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccccccccc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 280,327.36218 0,-10 c 0,-3 2,-5 5,-5 l 15,0 c 3,0 5,2 5.0357,5 l -0.0357,55 c 0,3 2.11612,5 5,5 l 15,0 c 3,0 5,-2 5,-5 l 0,-10"
id="path5898-11-5-2-8-7"
inkscape:connector-curvature="0" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-3"
width="50"
height="35"
x="320"
y="327.36218"
rx="5.3149605"
ry="5.3149605" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 360,382.36218 0,-20"
id="path5898-2-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 330,327.36218 0,-20"
id="path5898-2-0-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 345,327.36218 0,-20"
id="path5898-2-2-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 360,327.36218 0,-10 c 0,-3 2,-5 5,-5 l 25,0"
id="path5898-11-5-2-8-4"
inkscape:connector-curvature="0" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7"
width="50"
height="35"
x="420"
y="327.36218"
rx="5.3149605"
ry="5.3149605" />
<path
sodipodi:nodetypes="cccc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 400,377.36218 25,0 c 3,0 5,-2 5,-5 l 0,-10"
id="path5898-11-5-2-5-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 460,382.36218 0,-20"
id="path5898-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 430,327.36218 0,-20"
id="path5898-2-0-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 445,327.36218 0,-20"
id="path5898-2-2-80"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 6;stroke-dashoffset:0"
d="m 385,297.36218 0,100"
id="path8408"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 6;stroke-dashoffset:0"
d="m 405,297.36218 0,100"
id="path8408-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:6, 6;stroke-dashoffset:0"
d="m 140,297.36218 0,100"
id="path8408-47"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cccc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 460,327.36218 0,-10 c 0,-3 2,-5 5,-5 l 32,0"
id="path5898-11-5-2-8-4-2"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="Text"
style="display:inline"
transform="translate(-121.86545,-293.80818)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="165"
y="302.36218"
id="text8183"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8185"
x="165"
y="302.36218">A<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8207">1</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="180"
y="302.36218"
id="text8187"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8189"
x="180"
y="302.36218">B<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8209">1</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="206"
y="306.36218"
id="text8191"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8193"
x="206"
y="306.36218"
dx="0 1.8931841e-09">C<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8213">1</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="245"
y="302.36218"
id="text8183-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8185-0"
x="245"
y="302.36218">A<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8207-5">2</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="260"
y="302.36218"
id="text8187-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8189-5"
x="260"
y="302.36218">B<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8209-7">2</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="286"
y="306.36218"
id="text8191-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8193-4"
x="286"
y="306.36218"
dx="0">C<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8213-6">2</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="325"
y="302.36218"
id="text8183-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8185-8"
x="325"
y="302.36218">A<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8207-6">3</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="340"
y="302.36218"
id="text8187-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8189-7"
x="340"
y="302.36218">B<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8209-6">3</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="366"
y="306.36218"
id="text8191-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8193-5"
x="366"
y="306.36218"
dx="0">C<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8213-0">3</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="425"
y="302.36218"
id="text8183-55"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8185-5"
x="425"
y="302.36218">A<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8207-3">n</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="440"
y="302.36218"
id="text8187-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8189-9"
x="440"
y="302.36218">B<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8209-0">n</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="462"
y="306.36218"
id="text8191-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8193-9"
x="462"
y="306.36218"
dx="0">C<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8430">n</tspan> = 0 </tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="195"
y="395.36218"
id="text8199"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8201"
x="195"
y="395.36218">S<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8211">1</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="130"
y="381.36218"
id="text8203"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8205"
x="130"
y="381.36218">C</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="275"
y="395.36218"
id="text8199-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8201-8"
x="275"
y="395.36218">S<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8211-9">2</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="355"
y="395.36218"
id="text8199-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8201-7"
x="355"
y="395.36218">S<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8211-2">3</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="455"
y="395.36218"
id="text8199-63"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8201-2"
x="455"
y="395.36218">S<tspan
style="font-size:9px;baseline-shift:sub"
id="tspan8211-4">n</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="412"
y="390.36218"
id="text8191-9-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8193-9-5"
x="412"
y="390.36218"
dx="0">C<tspan
style="font-size:65.00091553%;baseline-shift:sub"
id="tspan8430-4"
dx="0 0.58801669"><tspan
style="font-size:9px"
id="tspan3072"
dy="-2.4000001">n-1 </tspan></tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="185"
y="348.89795"
id="text8195"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8197"
x="185"
y="348.89795">FA</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="265"
y="348.89795"
id="text8195-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8197-9"
x="265"
y="348.89795">FA</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="345"
y="348.89795"
id="text8195-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8197-1"
x="345"
y="348.89795">FA</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="445"
y="348.89795"
id="text8195-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8197-2"
x="445"
y="348.89795">FA</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

439
src/fig/chap3/Fig3.28.svg Normal file
View File

@ -0,0 +1,439 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="339.19437"
height="105.53149"
id="svg8511"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.28.svg">
<defs
id="defs8513" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="154.03596"
inkscape:cy="48.451048"
inkscape:document-units="px"
inkscape:current-layer="layer9"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid8519"
originx="-110.94164px"
originy="-864.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.28">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.28</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_fig_3.28</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>constraint</rdf:li>
<rdf:li>network</rdf:li>
<rdf:li>Fahrenheit</rdf:li>
<rdf:li>Celsius</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer9"
inkscape:label="Lines"
style="display:inline"
transform="translate(-110.94164,-82.096435)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7"
width="65"
height="60"
x="140"
y="82.362183"
rx="5.3149605"
ry="5.3149605" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-6"
width="65"
height="60"
x="250"
y="82.362183"
rx="5.3149605"
ry="5.3149605" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 250,112.36218 -45,0"
id="path9128-6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 140,97.362183 -15,0"
id="path9128-6"
inkscape:connector-curvature="0" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-65"
width="65"
height="60"
x="360"
y="82.362183"
rx="5.3149605"
ry="5.3149605" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 440,112.36218 -15,0"
id="path9128-6-4-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 360,97.36218 -45,0"
id="path9128-6-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-6-9-9"
width="35"
height="25"
x="155"
y="162.36218"
rx="5.3149605"
ry="5.3149605" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-6-9-9-6"
width="35"
height="25"
x="265"
y="162.36218"
rx="5.3149605"
ry="5.3149605" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-6-9-9-6-6"
width="35"
height="25"
x="375"
y="162.36218"
rx="5.3149605"
ry="5.3149605" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 315,127.36218 10,0 c 3,0 5,2 5,5 l 0,38 c 0,3 -2,5 -5,5 l -25,0"
id="path5898-9-7-4-2-6-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 375,175.36218 -25,0 c -3,0 -5,-2 -5,-5 l 0,-38 c 0,-3 2,-5 5,-5 l 10,0"
id="path5898-9-7-4-2-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 155,175.36218 -25,0 c -3,0 -5,-2 -5,-5 l 0,-38 c 0,-3.01015 2.05298,-5 5,-5 l 10,0"
id="path5898-9-7-4-2-2-6-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
</g>
<g
inkscape:groupmode="layer"
id="layer10"
inkscape:label="Text"
style="display:inline"
transform="translate(-110.94164,-82.096435)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="146"
y="100.36218"
id="text9085"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9087"
x="146"
y="100.36218">m1</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="146"
y="130.36218"
id="text9089"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9091"
x="146"
y="130.36218">m2</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="199"
y="115.36218"
id="text9093"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9095"
x="199"
y="115.36218">p</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="173"
y="118.36218"
id="text9097"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9099"
x="173"
y="118.36218">*</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="256"
y="115.36219"
id="text9093-78"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9095-0"
x="256"
y="115.36219">p</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="309"
y="100.36218"
id="text9085-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9087-7"
x="309"
y="100.36218">m1</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="309"
y="130.36218"
id="text9089-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9091-9"
x="309"
y="130.36218">m2</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="282"
y="118.36218"
id="text9097-00"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9099-1"
x="282"
y="118.36218">*</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="224"
y="107.36218"
id="text9353"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9355"
x="224"
y="107.36218">u</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="334"
y="92.362183"
id="text9357"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9359"
x="334"
y="92.362183">v</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="392.55801"
y="178.89786"
id="text9404-5-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9406-9-2"
x="392.55801"
y="178.89786">32</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="279"
y="178.89786"
id="text9404-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9406-9"
x="279"
y="178.89786">5</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="169"
y="178.89786"
id="text9404"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9406"
x="169"
y="178.89786">9</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="366"
y="100.36218"
id="text9085-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9087-4"
x="366"
y="100.36218">a1</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="366"
y="130.36218"
id="text9089-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9091-5"
x="366"
y="130.36218">a2</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="419"
y="115.36218"
id="text9093-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9095-3"
x="419"
y="115.36218">s</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="391.55356"
y="115.80862"
id="text9097-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9099-8"
x="391.55356"
y="115.80862">+</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="444"
y="116.36218"
id="text9628"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9630"
x="444"
y="116.36218">F</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="121"
y="101.36218"
id="text9624"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9626"
x="121"
y="101.36218">C</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="120"
y="160.36218"
id="text9612"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9614"
x="120"
y="160.36218">w</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="325"
y="160.36218"
id="text9616"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9618"
x="325"
y="160.36218">x</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="350"
y="160.36218"
id="text9620"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9622"
x="350"
y="160.36218">y</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

581
src/fig/chap3/Fig3.29b.svg Normal file
View File

@ -0,0 +1,581 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="423.10468"
height="345.65552"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.29b.svg">
<title
id="title3061">SICP Figure 3.29</title>
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path4223"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
id="path4226"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible">
<path
id="path4220"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4226-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-1"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4226-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-24"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4226-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4226-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4226-2-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4226-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4223-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4226-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="244.83182"
inkscape:cy="183.09326"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2985"
originx="-83.161062px"
originy="-644.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.29">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.29</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-23.html#%_fig_3.29</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>timing</rdf:li>
<rdf:li>diagram</rdf:li>
<rdf:li>event</rdf:li>
<rdf:li>order</rdf:li>
<rdf:li>withdrawal</rdf:li>
<rdf:li>balance</rdf:li>
<rdf:li>bank</rdf:li>
<rdf:li>account</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-83.161062,-61.972419)">
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Lend);display:inline"
d="M 95,62.362183 95,392.36218"
id="path4076"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.5905512;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4049"
sodipodi:cx="315"
sodipodi:cy="117.36218"
sodipodi:rx="25"
sodipodi:ry="25"
d="m 340,117.36218 c 0,13.80712 -11.19288,25 -25,25 -13.80712,0 -25,-11.19288 -25,-25 0,-13.80712 11.19288,-24.999997 25,-24.999997 13.80712,0 25,11.192877 25,24.999997 z"
transform="matrix(0.9,0,0,0.9,29,9.2362183)" />
<path
sodipodi:type="arc"
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.5905512;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4049-1"
sodipodi:cx="315"
sodipodi:cy="117.36218"
sodipodi:rx="25"
sodipodi:ry="25"
d="m 340,117.36218 c 0,13.80712 -11.19288,25 -25,25 -13.80712,0 -25,-11.19288 -25,-25 0,-13.80712 11.19288,-24.999997 25,-24.999997 13.80712,0 25,11.192877 25,24.999997 z"
transform="matrix(0.9,0,0,0.9,29,204.23622)" />
<path
sodipodi:type="arc"
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.5905512;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4049-2"
sodipodi:cx="315"
sodipodi:cy="117.36218"
sodipodi:rx="25"
sodipodi:ry="25"
d="m 340,117.36218 c 0,13.80712 -11.19288,25 -25,25 -13.80712,0 -25,-11.19288 -25,-25 0,-13.80712 11.19288,-24.999997 25,-24.999997 13.80712,0 25,11.192877 25,24.999997 z"
transform="matrix(0.9,0,0,0.9,29,279.23622)" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect4078-2-8-0"
width="147"
height="22"
x="119"
y="151.36218"
rx="10.984252"
ry="10.984252" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 289.82143,115.00504 -69.82143,0 c -19.72888,0 -27.35714,7.85595 -27.35714,27.35714 l 0,7.51787"
id="path4862"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 192.64286,173.36218 0,26.51787"
id="path5050"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 192.64286,223.36218 0,26.51786"
id="path5050-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 432.62499,198.36218 0,26.51785"
id="path5050-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 432.62499,248.36218 0,86.51786"
id="path5050-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);marker-end:none"
d="m 288,309.89792 -68,0 c -19.98142,0 -27.35714,-7.52947 -27.35714,-27.53574 l 0,-9"
id="path4862-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mstart);marker-end:none"
d="m 337,384.91575 68,0 c 19.98142,0 27.53572,-7.41179 27.53572,-21.35714 l 0,-5.19643"
id="path4862-2-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 335.17858,114.89792 69.82142,0 c 20.23396,0 27.53572,7.71054 27.53572,27.46426 l 0,32.50003"
id="path4862-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4078-2-8-0-3"
width="147"
height="22"
x="119"
y="201.36218"
rx="10.984252"
ry="10.984252" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4078-2-8-0-6"
width="147"
height="22"
x="119"
y="251.36218"
rx="10.984252"
ry="10.984252" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4078-2-8-0-9"
width="147"
height="22"
x="359"
y="226.36218"
rx="10.984252"
ry="10.984252" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4078-2-8-0-0"
width="147"
height="22"
x="359"
y="176.36218"
rx="10.984252"
ry="10.984252" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect4078-2-8-0-9-1"
width="147"
height="22"
x="359"
y="336.36218"
rx="10.984252"
ry="10.984252" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-83.161062,-61.972419)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="166.50507"
y="72.362183"
id="text3942"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3944"
x="166.50507"
y="72.362183"
style="font-size:13px">Peter</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="192.53568"
y="166.35202"
id="text3966"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3968"
x="192.53568"
y="166.35202"
style="font-size:13px">Access balance: $100</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="192.62495"
y="216.35202"
id="text3970"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3972"
x="192.62495"
y="216.35202"
style="font-size:13px">new value: 10<tspan
style="letter-spacing:2.5px"
id="tspan3325">0</tspan><tspan
style="letter-spacing:1px"
id="tspan3317"></tspan>1<tspan
style="letter-spacing:2px"
id="tspan3329">0=</tspan>90</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="192.53568"
y="266.35202"
id="text3974"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3976"
x="192.53568"
y="266.35202"
dx="1.6276132e-08"
style="font-size:11px"><tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan4047">set!</tspan><tspan
style="font-size:13px"
id="tspan23275"> balance to $90</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="95"
y="407.36218"
id="text4041"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4043"
x="95"
y="407.36218"
style="font-size:13px">time</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="312.26733"
y="72.362183"
id="text3946"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3948"
x="312.26733"
y="72.362183"
style="font-size:13px;text-align:center;text-anchor:middle">Bank</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="455"
y="72.362183"
id="text3950"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3952"
x="455"
y="72.362183"
style="font-size:13px">Paul</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="312.48993"
y="118.85711"
id="text3954"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3956"
x="312.48993"
y="118.85711"
style="font-size:13px;text-align:center;text-anchor:middle">$100</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="312.47217"
y="313.89536"
id="text3958"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3960"
x="312.47217"
y="313.89536"
style="font-size:13px">$90</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="312.58661"
y="388.89536"
id="text3962"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3964"
x="312.58661"
y="388.89536"
style="font-size:13px;text-align:center;text-anchor:middle">$75</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="432.53577"
y="191.35202"
id="text3966-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3968-6"
x="432.53577"
y="191.35202"
style="font-size:13px">Access balance: $100</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="432.51617"
y="241.35202"
id="text3970-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3972-1"
x="432.51617"
y="241.35202"
style="font-size:13px">new value: 10<tspan
style="letter-spacing:2px"
id="tspan3333"><tspan
style="letter-spacing:2.5px"
id="tspan3374">0</tspan></tspan>2<tspan
style="letter-spacing:2px"
id="tspan3339">5</tspan><tspan
id="tspan3347"
style="letter-spacing:1.4px">=</tspan>75</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="432.53577"
y="351.35205"
id="text3974-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3976-1"
x="432.53577"
y="351.35205"
style="font-size:11px"><tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan4045">set!</tspan><tspan
style="font-size:13px"
id="tspan23277"> balance to $75</tspan></tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

325
src/fig/chap3/Fig3.2b.svg Normal file
View File

@ -0,0 +1,325 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="194.26575"
height="164.85658"
id="svg4796"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.2b.svg"
style="display:inline">
<defs
id="defs4798">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="137.33037"
inkscape:cy="84.117329"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="2"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid4804"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-57px"
originy="-802.40916px" />
</sodipodi:namedview>
<metadata
id="metadata_3.2">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.2</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.2</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>global</rdf:li>
<rdf:li>environment</rdf:li>
<rdf:li>define</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-57,-85.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 130,87.362183 115,0 c 3,0 5,2 5,5 l 0,44.999997 c 0,3 -2,5 -5,5 l -115,0 c -3,0 -5,-2 -5,-5 l 0,-44.999997 c 0,-3 2,-5 5,-5 z"
id="rect5327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 215,180.80861 14.91071,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-31.44643"
id="path3795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 188,127.36218 7.53571,0 c 3.08929,0 5.08929,2 5.08929,5 l 0,35"
id="path3795-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 100,115.36218 23,0"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 189,183.36218 0,27"
id="path4451-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(1.5,1)" />
<path
transform="translate(24.94643,1)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,15.954545,-7.698281)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,-7.545446,-7.6982733)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="68.428558"
y="167.36218"
id="text5489"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5491"
x="68.428558"
y="167.36218" /></text>
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-57,-85.096435)">
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans Italic"
x="140"
y="107.36218"
id="text5493"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5495"
x="140"
y="107.36218">other variables</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="140"
y="130.29076"
id="text5473"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5475"
x="140"
y="130.29076">square:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="60"
y="110.57648"
id="text5477"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5479"
x="60"
y="110.57648"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">global</tspan><tspan
sodipodi:role="line"
x="60"
y="127.47648"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan5507">env</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:139.99999762%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="58"
y="162.36218"
id="text5485"
sodipodi:linespacing="140%"><tspan
sodipodi:role="line"
id="tspan5487"
x="58"
y="162.36218">(define (square x)</tspan><tspan
sodipodi:role="line"
x="58"
y="177.76218"
id="tspan5589"
dy="0 0 0 0 0"> (* x x))</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="160"
y="227.00504"
id="text5497"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499"
x="160"
y="227.00504"
style="line-height:129.99999523%">parameters:<tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5505"> x</tspan></tspan><tspan
sodipodi:role="line"
x="160"
y="245.87202"
id="tspan5501"
style="line-height:129.99999523%">body: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC Medium"
id="tspan8814">(* x x)</tspan></tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

1111
src/fig/chap3/Fig3.30b.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 45 KiB

409
src/fig/chap3/Fig3.31.svg Normal file
View File

@ -0,0 +1,409 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="436.5502"
height="135.53149"
id="svg7429"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.31.svg">
<defs
id="defs7431">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-20"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-02"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-200"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-15"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-58"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-40"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="215.18161"
inkscape:cy="58.942305"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid7437"
originx="-79.557087px"
originy="-814.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.31">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.31</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_fig_3.31</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>signal</rdf:li>
<rdf:li>processing</rdf:li>
<rdf:li>system</rdf:li>
<rdf:li>infinite</rdf:li>
<rdf:li>stream</rdf:li>
<rdf:li>prime</rdf:li>
<rdf:li>sieve</rdf:li>
<rdf:li>car</rdf:li>
<rdf:li>cdr</rdf:li>
<rdf:li>cons</rdf:li>
<rdf:li>filter</rdf:li>
<rdf:li>divisibility</rdf:li>
<rdf:li>Henderson</rdf:li>
<rdf:li>diagram</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Box"
style="display:inline"
transform="translate(-79.557087,-102.09643)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 105,102.36218 382,0 c 6,0 8,2 8,8 l 0,119 c 0,6 -2,8 -8,8 l -382,0 c -5.97955,0 -8,-1.93117 -8,-8 l 0,-119 c 0,-6 2,-8 8,-8 z"
id="rect4940"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
</g>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Lines"
style="display:inline"
transform="translate(-79.557087,-102.09643)">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788"
width="85"
height="55"
x="200"
y="157.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 285,184.89789 23,0"
id="path8845"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 170,129.89789 c 3,-1 5,1 5,3.54331 l 0,47.91339 c 0,2.5433 -2,4.5433 -5,3.5433 l -54,-24 c -4,-2 -4,-5 0,-7 z"
id="rect6788-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscccc" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 425,129.89789 c -3,-1 -5,1 -5,3.54331 l 0,47.91339 c 0,2.5433 2,4.5433 5,3.5433 l 54,-24 c 4,-2 4,-5 0,-7 z"
id="rect6788-0-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 175,169.89789 23,0"
id="path8845-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 395,169.89789 23,0"
id="path8845-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 80,157.36218 31,0"
id="path8845-1-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 482,157.36218 33,0"
id="path8845-1-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.54330709, 3.54330709;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 175,144.89792 243,0"
id="path8845-1-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.88582677;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.54330709, 3.54330709;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 241.08929,145.36218 0,10"
id="path8845-1-7-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(5,16.535716)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.41732287;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path9674-6"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7"
width="85"
height="55"
x="310"
y="157.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-79.557087,-102.09643)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="210"
y="174.36218"
id="text8815"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8817"
x="210"
y="174.36218">filter:</tspan><tspan
sodipodi:role="line"
x="210"
y="188.11218"
id="tspan8819">not</tspan><tspan
sodipodi:role="line"
x="210"
y="201.86218"
id="tspan8821">divisible?</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="320"
y="174.36218"
id="text8841"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8843"
x="320"
y="174.36218">sieve</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="110"
y="121.36218"
id="text8841-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8843-3"
x="110"
y="121.36218">sieve</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="171.49492"
y="147.8979"
id="text9060"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9062"
x="171.49492"
y="147.8979">car</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="171.49492"
y="172.8979"
id="text9064"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9066"
x="171.49492"
y="172.8979">cdr</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="425"
y="160.36218"
id="text9178"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9180"
x="425"
y="160.36218">cons</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

338
src/fig/chap3/Fig3.32.svg Normal file
View File

@ -0,0 +1,338 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="398.36417"
height="118.85976"
id="svg9764"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.32.svg">
<defs
id="defs9766">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-54"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-16"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="196.96511"
inkscape:cy="38.819831"
inkscape:document-units="px"
inkscape:current-layer="layer7"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid9772"
originx="-64.610236px"
originy="-694.61024px" />
</sodipodi:namedview>
<metadata
id="metadata_3.32">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.32</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_fig_3.32</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>signal</rdf:li>
<rdf:li>processing</rdf:li>
<rdf:li>system</rdf:li>
<rdf:li>integral</rdf:li>
<rdf:li>scale</rdf:li>
<rdf:li>add</rdf:li>
<rdf:li>cons</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Lines"
style="display:inline"
transform="translate(-64.610236,-238.89218)">
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 65,294.8571 48,0"
id="path8845-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 335,267.45143 c -3,-1 -5,1 -5,3.54331 l 0,47.91339 c 0,2.5433 2,4.5433 5,3.5433 l 54,-24 c 4,-2 4,-5 0,-7 z"
id="rect6788-0-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 295,312.36218 33,0"
id="path8845"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.11811018, 3.11811018;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 311,252.36218 0,20 c 0,3 2,5 5,5 l 12,0"
id="path8845-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 195.08929,294.89792 35.91071,0"
id="path8845-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 392.08929,294.89792 69.91071,0"
id="path8845-1-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 405,295.36218 0,57 c 0,3 -2,5 -5,5 l -180,0 c -3,0 -5,-2 -5,-5 l 0.0281,-17.41081 c 0,-3.14335 1.8998,-5.05341 4.97187,-5.05341 l 10.91079,0"
id="path8845-7-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
transform="translate(169,166.53572)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path9674-69"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 238,285.00504 c -3,-1 -5,1 -5,3.54331 l 0,47.91339 c 0,2.5433 2,4.5433 5,3.5433 l 54,-24 c 4,-2 4,-5 0,-7 z"
id="rect6788-0-5-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscccc" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788"
width="80"
height="55"
x="115"
y="267.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="Text"
style="display:inline"
transform="translate(-64.610236,-238.89218)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="242"
y="315.46933"
id="text9178-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9180-6"
x="242"
y="315.46933">add</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="339"
y="297.91571"
id="text9178"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9180"
x="339"
y="297.91571">cons</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="310"
y="247.36218"
id="text10580"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10582"
x="310"
y="247.36218">initial-value</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="425"
y="287.36218"
id="text10576"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10578"
x="425"
y="287.36218">integral</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="70"
y="287.71933"
id="text10572"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10574"
x="70"
y="287.71933">input</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="155"
y="297.89786"
id="text8815"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="155"
y="297.89786"
id="tspan8821">scale: dt</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

606
src/fig/chap3/Fig3.33.svg Normal file
View File

@ -0,0 +1,606 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="366.54276"
height="209.19559"
id="svg10777"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.33.svg">
<title
id="title3070">SICP Figure 3.33</title>
<defs
id="defs10779">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-88"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-05"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-86"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="219.70511"
inkscape:cy="101.45925"
inkscape:document-units="px"
inkscape:current-layer="layer10"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid10785"
originx="-49.610236px"
originy="-461.81042px" />
</sodipodi:namedview>
<metadata
id="metadata_3.33">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.33</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_fig_3.33</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>signal</rdf:li>
<rdf:li>flow</rdf:li>
<rdf:li>diagram</rdf:li>
<rdf:li>RC</rdf:li>
<rdf:li>circuit</rdf:li>
<rdf:li>voltage</rdf:li>
<rdf:li>current</rdf:li>
<rdf:li>integral</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Lines"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(-49.610236,-381.35618)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:cmex10;-inkscape-font-specification:cmex10"
x="468.57144"
y="490.21933"
id="text10821"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10823"
x="468.57144"
y="490.21933" /></text>
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788"
width="80"
height="55"
x="90"
y="416.82651"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-91"
width="80"
height="55"
x="205"
y="499.91574"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 325,482.46171 c -3,-1 -5,1 -5,3.54331 l 0,47.91339 c 0,2.5433 2,4.5433 5,3.5433 l 54,-24 c 4,-2 4,-5 0,-7 z"
id="rect6788-0-5-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 285,527.36218 33,0"
id="path8845"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 170,444.8979 127,0 c 3,0 5,2 5,5 l 4e-5,37.41087 c 0,3.14335 1.8998,5.05341 4.97187,5.05341 l 10.91079,0"
id="path8845-7-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 170,527.36218 33,0"
id="path8845-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 50,527.36218 38,0"
id="path8845-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 70,527.36218 0,-80 c 0,-3 2,-5 5,-5 l 13,0"
id="path8845-9-7-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
transform="translate(-166.06313,398.97763)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path9674-69"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 382.17858,509.89792 33,0"
id="path8845-9-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.11811024, 3.11811024;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 245,577.36218 0,-21"
id="path8845-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-9"
width="80"
height="55"
x="90"
y="499.91574"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer10"
inkscape:label="Text"
style="display:inline"
transform="translate(-49.610236,-381.35618)">
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="397"
y="504.36218"
id="text11756"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11758"
x="397"
y="504.36218">v</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="246"
y="587.36218"
id="text11762"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11764"
x="246"
y="587.36218"
dx="0 1.623458e-08">v<tspan
style="font-size:65.00091553%;font-style:normal;baseline-shift:sub;-inkscape-font-specification:Linux Libertine O"
id="tspan11766">0</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="60"
y="522.36218"
id="text11768"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11770"
x="60"
y="522.36218">i</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mend-4);display:inline"
d="m 270,412.36218 23,0 c 1.73214,0 2,-1 2.33639,-1.89851 C 296,409.36218 297,404.36218 299,404.36218 c 3,0 5,16 8,16 3,0 5,-16 8,-16 3,0 5,16 8,16 3,0 5,-16 8,-16 3,0 5,16 8,16 2,0 3.12627,-4.74746 3.62119,-6 0.4356,-0.92095 0.69448,-2 2.43289,-2 l 34.94592,0"
id="path11772"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccssssssccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 388,397.8571 0,29"
id="path11968-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 388,412.36218 25,0"
id="path11988"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 380,397.8571 0,29"
id="path11968"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 248,412.39284 20,0"
id="path4243"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="319"
y="435.85712"
id="text11996"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11998"
x="319"
y="435.85712">R</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="384"
y="444.85712"
id="text12000"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12002"
x="384"
y="444.85712">C</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="256"
y="427.36218"
id="text12004"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12006"
x="256"
y="427.36218">i</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="255"
y="387.36218"
id="text12008"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12010"
x="255"
y="387.36218">+</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="405"
y="387.46347"
id="text12012"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12014"
x="405"
y="387.46347"
dx="0 -1.0714287">--</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="330"
y="387.36218"
id="text12016"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12018"
x="330"
y="387.36218">v</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="130"
y="447.36218"
id="text8815"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="130"
y="447.36218"
id="tspan8821">scale: <tspan
style="font-style:oblique;-inkscape-font-specification:Inconsolata LGC Oblique"
id="tspan11581">R</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="245"
y="530.45142"
id="text8815-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="245"
y="530.45142"
id="tspan8821-0">integral</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="329"
y="512.92603"
id="text9178-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9180-6"
x="329"
y="512.92603">add</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="130"
y="530.45142"
id="text8815-8"
sodipodi:linespacing="125%"><tspan
dy="0 0 0 0 0 0 0 -6"
dx="0 0 0 0 0 0 0 0"
sodipodi:role="line"
x="130"
y="530.45142"
id="tspan8821-8">scale: 1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="149.07915"
y="538.4873"
id="text11562"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11564"
x="149.07915"
y="538.4873"
style="font-style:oblique;-inkscape-font-specification:Inconsolata LGC Oblique">C</tspan></text>
<g
id="g3089"
transform="translate(-76.03572,1.7321344)">
<g
id="g12148"
style="display:inline" />
</g>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:jsMath-cmex10;-inkscape-font-specification:jsMath-cmex10 Medium"
x="461.63971"
y="620.52197"
id="text3080"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3082"
x="461.63971"
y="620.52197" /></text>
<g
id="g4022">
<text
sodipodi:linespacing="125%"
id="text10849"
y="580.52289"
x="291"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
xml:space="preserve"><tspan
dy="0 0 0 0 0 0 0 0 0 0 -6.5 5.4600024 0 0 0 0 1"
dx="0 0 0 -0.5 0 0 0 0 0 0 0 0 0 0 0 0 -1 2 -0.30000001 0 0 -0.30000001 0 1.5"
y="580.52289"
x="291"
id="tspan10851"
sodipodi:role="line">v <tspan
dx="0.5"
id="tspan3969"
style="font-style:normal;-inkscape-font-specification:Linux Libertine O">=</tspan> v<tspan
id="tspan11388"
style="font-size:65.00091553%;font-style:normal;baseline-shift:sub;-inkscape-font-specification:Linux Libertine O">0</tspan><tspan
id="tspan11392"
style="font-style:normal;-inkscape-font-specification:Linux Libertine O"> + 1</tspan> i<tspan
id="tspan11422"
style="font-style:italic;-inkscape-font-specification:Linux Libertine O Italic">d</tspan>t <tspan
dx="0.30000001"
id="tspan11394"
style="font-style:normal;-inkscape-font-specification:Linux Libertine O">+</tspan> Ri</tspan></text>
<g
transform="translate(-143.75761,173.21937)"
id="g11402"
style="display:inline">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="496.46432"
y="414.64789"
id="text10829"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10831"
x="496.46432"
y="414.64789"
style="font-size:65.00091553%;baseline-shift:sub">0</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="502"
y="399.64789"
id="text10833"
sodipodi:linespacing="125%"><tspan
dx="0.5"
sodipodi:role="line"
id="tspan10835"
x="502"
y="399.64789"
style="font-size:65.00091553%;baseline-shift:super">t</tspan></text>
</g>
<text
sodipodi:linespacing="125%"
id="text10853"
y="587.30859"
x="335.7373"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
xml:space="preserve"><tspan
y="587.30859"
x="335.7373"
id="tspan10855"
sodipodi:role="line">C</tspan></text>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path10857"
d="m 336.20666,576.89789 9,0"
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<text
sodipodi:linespacing="125%"
id="text3088"
y="564.55414"
x="346.66946"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:jsMath-cmex10;-inkscape-font-specification:jsMath-cmex10 Medium"
xml:space="preserve"><tspan
y="564.55414"
x="346.66946"
id="tspan3090"
sodipodi:role="line">Z</tspan></text>
</g>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.89999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 99.389764,146.20241 8.999996,0"
id="path11576"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

275
src/fig/chap3/Fig3.34.svg Normal file
View File

@ -0,0 +1,275 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="261.36417"
height="110.09676"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.34.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-28"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="129.5545"
inkscape:cy="43.856051"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2985"
originx="-149.61024px"
originy="-754.61024px" />
</sodipodi:namedview>
<metadata
id="metadata_3.34">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.34</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_fig_3.34</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>analog</rdf:li>
<rdf:li>computer</rdf:li>
<rdf:li>circuit</rdf:li>
<rdf:li>differential</rdf:li>
<rdf:li>equation</rdf:li>
<rdf:li>map</rdf:li>
<rdf:li>integral</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Lines"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(-149.61024,-187.65518)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-91"
width="80"
height="55"
x="285"
y="222.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788"
width="80"
height="55"
x="170"
y="222.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 250,249.91573 33,0"
id="path8845-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 365,249.89792 45,0"
id="path8845-9-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 385,250.36218 0,42 c 0,3 -2,5 -5,5 l -225,0 c -3,0 -5,-2 -5,-5 l 0,-35 c 0,-3 2,-5 5,-5 l 13,0"
id="path8845-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
transform="translate(149,121.46426)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.11811024, 3.11811024;stroke-dashoffset:0;marker-end:url(#Arrow1Mend);display:inline"
d="m 325,199.36218 0,21"
id="path8845-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Text"
style="display:inline"
transform="translate(-149.61024,-187.65518)">
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="326"
y="193.36218"
id="text11762"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11764"
x="326"
y="193.36218"
dx="0 1.623458e-08">y<tspan
style="font-size:65.00091553%;font-style:normal;baseline-shift:sub;-inkscape-font-specification:Linux Libertine O"
id="tspan11766">0</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="266"
y="243.36218"
id="text3452"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3454"
x="266"
y="243.36218">dy</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="396"
y="243.36218"
id="text3456"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3458"
x="396"
y="243.36218">y</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="325"
y="252.89783"
id="text8815-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="325"
y="252.89783"
id="tspan8821-0">integral</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="210"
y="252.89786"
id="text8815"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="210"
y="252.89786"
id="tspan8821">map: <tspan
style="font-style:oblique;-inkscape-font-specification:Inconsolata LGC Oblique"
id="tspan11581">f</tspan></tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

515
src/fig/chap3/Fig3.35a.svg Normal file
View File

@ -0,0 +1,515 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="356.36417"
height="232.33975"
id="svg3497"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.35a.svg">
<defs
id="defs3499">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker4370"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4372"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker4374"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4376"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker4378"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4380"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-56"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-04"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="266.62823"
inkscape:cy="107.72499"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3505"
originx="-64.610236px"
originy="-374.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.35">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.35</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_fig_3.35</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>signal</rdf:li>
<rdf:li>flow</rdf:li>
<rdf:li>diagram</rdf:li>
<rdf:li>solution</rdf:li>
<rdf:li>second</rdf:li>
<rdf:li>order</rdf:li>
<rdf:li>linear</rdf:li>
<rdf:li>differential</rdf:li>
<rdf:li>equation</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-64.610236,-445.28818)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-91"
width="80"
height="55"
x="295"
y="482.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 255,509.91573 38.50508,0"
id="path8845-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 375,509.89792 45,0"
id="path8845-9-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-04);display:inline"
d="m 395,509.85711 0,135.04079 c 0,3 -2,5 -5,5 l -133.50508,0"
id="path5001"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-04);display:inline"
d="m 87.821429,614.91575 -17.821429,0 c -3,0 -5,-2 -5,-5 l 0,-94.83928 c 0,-3 2,-5 5,-5 l 103.50508,0"
id="path8845-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssssc" />
<path
transform="translate(159,381.46426)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.11811024, 3.11811024;stroke-dashoffset:0;marker-end:url(#Arrow1Mend);display:inline"
d="m 335,460.36218 0,20.50508"
id="path8845-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788"
width="80"
height="55"
x="175"
y="482.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.11811024, 3.11811024;stroke-dashoffset:0;marker-end:url(#Arrow1Mend);display:inline"
d="m 215,460.36218 0,20.50508"
id="path8845-9-4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-0"
width="80"
height="55"
x="175"
y="552.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 145,587.37244 c 3,-1 5,1 5,3.54331 l 0,47.91339 c 0,2.5433 -2,4.5433 -5,3.5433 l -54,-24 c -4,-2 -4,-5 0,-7 z"
id="rect6788-0-5-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 275,509.85711 0,65.05864 c 0,3 -2,5 -5,5 l -13.50508,0"
id="path8845-9-7-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
transform="translate(39,381.46426)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69-9"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 175,632.36218 -23.50508,0"
id="path8845-9-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 175,597.36218 -23.50508,0"
id="path8845-9-5-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-0-6"
width="80"
height="55"
x="175"
y="622.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-64.610236,-445.28818)">
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="115.99999"
y="503.36218"
id="text3452-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3454-1"
x="115.99999"
y="503.36218"
dx="0 -0.30000001 -0.30000001">ddy</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="336"
y="454.36218"
id="text11762"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11764"
x="336"
y="454.36218"
dx="0 1.623458e-08">y<tspan
style="font-size:65.00091553%;font-style:normal;baseline-shift:sub;-inkscape-font-specification:Linux Libertine O"
id="tspan11766">0</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="276"
y="503.36218"
id="text3452"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3454"
x="276"
y="503.36218"
dx="0 -0.30000001">dy</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="406"
y="503.36218"
id="text3456"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3458"
x="406"
y="503.36218">y</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="215"
y="652.89789"
id="text8815-2-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="215"
y="652.89789"
id="tspan8821-4-5">scale: <tspan
style="font-style:oblique;-inkscape-font-specification:Inconsolata LGC Oblique"
id="tspan11581-0">b</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="335"
y="512.89783"
id="text8815-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="335"
y="512.89783"
id="tspan8821-0">integral</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="215"
y="512.89783"
id="text8815"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="215"
y="512.89783"
id="tspan8821">integral</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="215"
y="582.89789"
id="text8815-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="215"
y="582.89789"
id="tspan8821-4">scale: <tspan
style="font-style:oblique;-inkscape-font-specification:Inconsolata LGC Oblique"
id="tspan11581">a</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="118"
y="617.83673"
id="text9178-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9180-6"
x="118"
y="617.83673">add</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="216"
y="454.36218"
id="text11762-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11764-1"
x="216"
y="454.36218"
dx="0 -0.30000001 1.623458e-08">dy<tspan
style="font-size:65.00091553%;font-style:normal;baseline-shift:sub;-inkscape-font-specification:Linux Libertine O"
id="tspan11766-9">0</tspan></tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

339
src/fig/chap3/Fig3.36.svg Normal file
View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="232.8252"
height="126.09677"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.36.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="110.74856"
inkscape:cy="57.551521"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2985"
originx="-332.42074px"
originy="-819.61023px" />
</sodipodi:namedview>
<metadata
id="metadata_3.36">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.36</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_fig_3.36</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>series</rdf:li>
<rdf:li>RLC</rdf:li>
<rdf:li>circuit</rdf:li>
<rdf:li>resistor</rdf:li>
<rdf:li>capacitor</rdf:li>
<rdf:li>inductor</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-332.42074,-106.65518)">
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mend-4);display:inline"
d="m 415,127.36218 9,0 c 1.73214,0 2,-1 2.33639,-1.89851 C 427,124.36218 428,119.36218 430,119.36218 c 3,0 5,16 8,16 3,0 5,-16 8,-16 3,0 5,16 8,16 3,0 5,-16 8,-16 3,0 5,16 8,16 2,0 3.12627,-4.74746 3.62119,-6 0.4356,-0.92095 0.69448,-2 2.43289,-2 l 55.94592,0 c 2,0 3,1 3,3 l 0,17"
id="path11772"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccsssssscccsc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 412,127.36218 -44,0 c -2,0 -3,1 -3,3 l 0,32"
id="path3938"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mend-4)"
d="m 535,147.36218 0,8 c 0,1.17857 0.80513,1.97126 1.9641,2.09127 6.1906,0.59481 9.2859,4.00177 9.2859,7.40873 0,3.75 -3.2158,7.5 -12.2158,7.5 -7.05357,0 -10.2842,-1.875 -10.2842,-5 0,-2.94643 3.49849,-5 10.2842,-5 9,0 12.97357,5.76191 12.9658,11.51786 -0.008,5.74404 -3.9658,11.48214 -12.9658,11.48214 -7.01631,0 -10.23941,-2.02743 -10.28813,-4.96274 -0.0506,-3.04793 3.18028,-5.03726 10.25393,-5.03726 9.0342,0 12.97571,5.72598 12.96003,11.46393 -0.0158,5.762 -3.92583,11.53607 -13.21257,11.53607 -6.83809,0 -10.02211,-1.82522 -10.02211,-4.92648 0,-3.06341 3.22735,-5.07352 10.40092,-5.07352 8.90793,0 12.25082,3.85622 12.13252,7.65821 -0.10388,3.33861 -3.1723,6.63541 -9.2134,7.24254 -1.31642,0.17416 -2.0454,0.98314 -2.04542,2.04568 l 3e-5,24.05358 c 0,2 -1,3 -3,3 l -164,-1e-5 c -2,0 -3,-1 -3,-3 l 0,-45"
id="path3943"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccscscscscscscsccccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 380,175.8571 -30,0"
id="path11968"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 380,183.8571 -30,0"
id="path11968-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:url(#Arrow1Mend-4)"
d="m 365,165.36218 0,10"
id="path4321"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-332.42074,-106.65518)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="425"
y="112.86726"
id="text12008"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12010"
x="425"
y="112.86726">+</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="475"
y="112.36218"
id="text12012"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12014"
x="475"
y="112.36218"
dx="0 -1.0714287">--</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="450"
y="112.36218"
id="text12016"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12018"
x="450"
y="112.36218">v<tspan
style="font-size:65.00091553%;baseline-shift:sub"
id="tspan5218">R</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="450"
y="150.8571"
id="text11996"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11998"
x="450"
y="150.8571">R</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="415"
y="142.36218"
id="text12004"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12006"
x="415"
y="142.36218"
dx="0 8.1172846e-09">i<tspan
style="font-size:65.00091553%;baseline-shift:sub"
id="tspan5339">R</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="513.75769"
y="183.87738"
id="text12000-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12002-9"
x="513.75769"
y="183.87738">L</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="560"
y="182.36218"
id="text12016-91"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12018-3"
x="560"
y="182.36218">v<tspan
style="font-size:65.00091553%;baseline-shift:sub"
id="tspan5218-5">L</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="559.24231"
y="160.36218"
id="text12008-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12010-4"
x="559.24231"
y="160.36218">+</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="559.24231"
y="207.36218"
id="text12012-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12014-9"
x="559.24231"
y="207.36218"
dx="0 -1.0714287">--</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="522.75769"
y="146.60458"
id="text12004-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12006-7"
x="522.75769"
y="146.60458"
dx="0">i<tspan
style="font-size:65.00091553%;baseline-shift:sub"
id="tspan5339-9">L</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="390.98987"
y="183.87738"
id="text12000"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12002"
x="390.98987"
y="183.87738">C</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="378"
y="164.36218"
id="text12004-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12006-6"
x="378"
y="164.36218"
dx="0">i<tspan
style="font-size:65.00091553%;baseline-shift:sub"
id="tspan5339-4">C</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="337.2424"
y="182.36218"
id="text12016-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12018-4"
x="337.2424"
y="182.36218">v<tspan
style="font-size:65.00091553%;baseline-shift:sub"
id="tspan5218-3">C</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="335.7576"
y="162.36218"
id="text12008-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12010-3"
x="335.7576"
y="162.36218">+</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="335.7576"
y="203.87738"
id="text12012-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan12014-1"
x="335.7576"
y="203.87738"
dx="0 -1.0714287">--</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

575
src/fig/chap3/Fig3.37a.svg Normal file
View File

@ -0,0 +1,575 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="251.39227"
height="295.4252"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.37a.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-1"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-15"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-96"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-42"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-71"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-74"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-16"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-99"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="226.16094"
inkscape:cy="149.30789"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2985"
originx="-459.58214px"
originy="-704.7874px" />
</sodipodi:namedview>
<metadata
id="metadata_3.37">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.37</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_fig_3.37</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>series</rdf:li>
<rdf:li>RLC</rdf:li>
<rdf:li>circuit</rdf:li>
<rdf:li>solution</rdf:li>
<rdf:li>signal</rdf:li>
<rdf:li>flow</rdf:li>
<rdf:li>diagram</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-459.58214,-52.149584)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.42519686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-9-4"
width="80"
height="35"
x="580"
y="52.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.42519686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-9-4-0"
width="80"
height="35"
x="580"
y="117.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.42519686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-9-4-1"
width="80"
height="35"
x="580"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.42519686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-9-4-1-4"
width="80"
height="35"
x="580"
y="247.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.42519686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-9-4-1-4-4"
width="80"
height="35"
x="580"
y="312.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.42519686;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 485,237.46171 c -3,-1 -5,1 -5,3.54331 l 0,47.91339 c 0,2.5433 2,4.5433 5,3.5433 l 54,-24 c 4,-2 4,-5 0,-7 z"
id="rect6788-0-5-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 542.17858,264.89792 35.82142,0"
id="path8845-9-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 660,134.89792 50,0"
id="path8845-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(443.93687,6.5133184)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 660,264.86722 50,0"
id="path8845-9-7-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(443.93687,136.48267)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69-7"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 680,134.36218 0,-59.464287 c 0,-3 -2,-4.999996 -5,-4.999996 l -13,0"
id="path8845-9-7-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 680,264.36218 0,-59.44643 c 0,-3 -2,-5 -5,-5 l -13,0"
id="path8845-9-7-4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 680,265.36218 0,59.55357 c 0,3 -2,5 -5,5 l -13,0"
id="path8845-9-7-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 579.80353,329.8264 -114.83163,0 c -3,0 -5,-2 -5,-5 L 460,287.36218 c 0,-3.14335 1.8998,-5.05341 4.97187,-5.05341 l 13.02813,0"
id="path8845-7-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 579.87373,69.897897 -114.87373,0 c -3,0 -5,2 -5,5 l 0.0281,167.410873 c 0,3.14335 1.8998,5.05341 4.97187,5.05341 l 13.02813,0"
id="path8845-7-8-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 579.82143,199.84432 -14.82143,0 c -3,0 -5,-2 -5,-5 l 0,-54.92857 c 0,-3 2,-5 5,-5 l 13,0"
id="path8845-9-7-4-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.11811024, 3.11811024;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 640,167.36218 -15,0 c -3,0 -5,-2 -5,-5 l 0,-8"
id="path8845-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3.11811024, 3.11811024;stroke-dashoffset:0;marker-end:url(#Arrow1Mend)"
d="m 640,297.36218 -15,0 c -3,0 -5,-2 -5,-5 l 0,-8"
id="path8845-1-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-459.58214,-52.149584)">
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="560"
y="257.36218"
id="text11756"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11758"
x="560"
y="257.36218"
style="text-align:center;text-anchor:middle">di<tspan
style="font-size:65.00091553%;text-align:center;text-anchor:middle;baseline-shift:sub"
id="tspan4109">L</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="652"
y="169.36218"
id="text11756-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11758-4"
x="652"
y="169.36218"
style="text-align:center;text-anchor:middle">v<tspan
style="font-size:65.00091553%;text-align:center;text-anchor:middle;baseline-shift:sub"
id="tspan4109-4">C<tspan
style="font-size:5.5px"
id="tspan4486">0</tspan></tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="695"
y="257.36218"
id="text11756-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11758-40"
x="695"
y="257.36218"
style="text-align:center;text-anchor:middle">i<tspan
style="font-size:65.00091553%;text-align:center;text-anchor:middle;baseline-shift:sub"
id="tspan4109-0">L</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="695"
y="127.40292"
id="text11756-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11758-5"
x="695"
y="127.40292"
style="text-align:center;text-anchor:middle">v<tspan
style="font-size:65.00091553%;text-align:center;text-anchor:middle;baseline-shift:sub"
id="tspan4109-7">C</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="546"
y="169.36218"
id="text11756-5-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11758-5-1"
x="546"
y="169.36218"
style="text-align:center;text-anchor:middle"
dx="0 -0.30000001">dv<tspan
style="font-size:65.00091553%;text-align:center;text-anchor:middle;baseline-shift:sub"
id="tspan4109-7-8">C</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans Italic"
x="652"
y="299.36218"
id="text11756-2-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11758-4-4"
x="652"
y="299.36218"
style="text-align:center;text-anchor:middle">i<tspan
style="font-size:65.00091553%;text-align:center;text-anchor:middle;baseline-shift:sub"
id="tspan4109-4-4">L<tspan
style="font-size:5.5px"
id="tspan4486-5">0</tspan></tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="620"
y="73.119774"
id="text8815-8-3"
sodipodi:linespacing="125%"><tspan
dy="0 0 0 0 0 0 0 0"
dx="0 0 0 0 0 0 0 0"
sodipodi:role="line"
x="620"
y="73.119774"
id="tspan8821-8-7"
style="font-size:10.5px">scale: <tspan
id="tspan4065"
style="font-size:10.5px;font-style:oblique;-inkscape-font-specification:Inconsolata LGC Oblique"><tspan
id="tspan4548"
style="font-size:10.5px;font-style:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan>/L</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="620"
y="138.11977"
id="text8815-8-3-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="620"
y="138.11977"
id="tspan8821-8-7-7"
style="font-size:10.5px">integral</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="620"
y="203.11977"
id="text8815-8-3-6"
sodipodi:linespacing="125%"><tspan
dy="0 0 0 0 0 0 0 0"
dx="0 0 0 0 0 0 0 0"
sodipodi:role="line"
x="620"
y="203.11977"
id="tspan8821-8-7-1"
style="font-size:10.5px">scale:-<tspan
id="tspan4061"
style="font-size:10.5px;font-style:oblique;-inkscape-font-specification:Inconsolata LGC Oblique"><tspan
id="tspan4550"
style="font-size:10.5px;font-style:normal;-inkscape-font-specification:Inconsolata LGC">1</tspan>/C</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="620"
y="268.11978"
id="text8815-8-3-6-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="620"
y="268.11978"
id="tspan8821-8-7-1-7"
style="font-size:10.5px">integral</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="620"
y="333.11978"
id="text8815-8-3-6-3-5"
sodipodi:linespacing="125%"><tspan
dy="0 0 0 0 0 0"
dx="0 0 0 0 0 0"
sodipodi:role="line"
x="620"
y="333.11978"
id="tspan8821-8-7-1-7-5"
style="font-size:10.5px">scale:-<tspan
id="tspan4057"
style="font-size:10.5px;font-style:oblique;-inkscape-font-specification:Inconsolata LGC Oblique">R/L</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="489"
y="268.43106"
id="text9178-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9180-6"
x="489"
y="268.43106"
style="font-size:10.5px">add</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

255
src/fig/chap3/Fig3.38.svg Normal file
View File

@ -0,0 +1,255 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="344.36417"
height="55.531494"
id="svg4566"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.38.svg">
<defs
id="defs4568">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-44"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-1"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-31"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="180.75997"
inkscape:cy="22.002498"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4574"
originx="-64.610236px"
originy="-814.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_3.38">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.38</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-24.html#%_fig_3.38</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>stream</rdf:li>
<rdf:li>merge</rdf:li>
<rdf:li>transaction</rdf:li>
<rdf:li>bank</rdf:li>
<rdf:li>account</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-64.610236,-182.09643)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-91"
width="80"
height="55"
x="180"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-91-7"
width="80"
height="55"
x="295"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 260,209.8571 33,0"
id="path8845-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 375,209.8571 33,0"
id="path8845-9-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 65,204.89789 113,0"
id="path8845-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 65,224.89789 113,0"
id="path8845-9-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-64.610236,-182.09643)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="220"
y="212.89783"
id="text8815-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="220"
y="212.89783"
id="tspan8821-0">merge</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="312.73413"
y="205.99487"
id="text8815-0-7"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
x="312.73413"
y="205.99487"
id="tspan8821-0-9"
style="line-height:129.99999523%">bank</tspan><tspan
id="tspan5224"
sodipodi:role="line"
x="312.73413"
y="222.89487"
style="line-height:129.99999523%">account</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="75"
y="219.8979"
id="text5230"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5232"
x="75"
y="219.8979"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">Paul's requests</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Libertine O;-inkscape-font-specification:Sans"
x="75"
y="199.8979"
id="text5230-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5232-4"
x="75"
y="199.8979"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">Peter's requests</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

390
src/fig/chap3/Fig3.3b.svg Normal file
View File

@ -0,0 +1,390 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="307.39575"
height="163.85658"
id="svg5629"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.3b.svg"
style="display:inline">
<defs
id="defs5631">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker6172"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path6174"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker6178"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path6180"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="155.06257"
inkscape:cy="95.03161"
inkscape:document-units="px"
inkscape:current-layer="layer7"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
fit-margin-top="1"
fit-margin-left="1"
fit-margin-right="1"
fit-margin-bottom="1">
<inkscape:grid
type="xygrid"
id="grid5637"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-63.87px"
originy="-812.40916px" />
</sodipodi:namedview>
<metadata
id="metadata_3.3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.3</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.3</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>environment</rdf:li>
<rdf:li>square</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Lines"
style="display:inline"
transform="translate(-63.87,-76.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 135,77.362183 230,0 c 3,0 5,2 5,5 l 0,44.999997 c 0,3 -2,5 -5,5 l -230,0 c -3,0 -5,-2 -5,-5 l 0,-44.999997 c 0,-3 2,-5 5,-5 z"
id="rect5327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 220,170.8086 14.91071,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-31.44642"
id="path3795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 193,117.36218 7.53571,0 c 3.08929,0 5.08929,2 5.08929,5 l 0,35"
id="path3795-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 105,105.36218 23,0"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 194,173.36217 0,27"
id="path4451-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(6.5,-8.9999992)" />
<path
transform="translate(29.94643,-8.9999992)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,20.954545,-17.69828)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,-2.545446,-17.698273)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170807"
sodipodi:ry="11.170807"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.1708 11.17081,-11.1708 6.16947,0 11.17081,5.00134 11.17081,11.1708 z" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 315,157.36218 50,0 c 3,0 5,2 5,5 l 0,20 c 0,3 -2,5 -5,5 l -50,0 c -3,0 -5,-2 -5,-5 l 0,-20 c 0,-3 2,-5 5,-5 z"
id="rect5327-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 285,172.36218 23,0"
id="path4451-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 340,157.36218 0,-23"
id="path4451-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Text"
style="display:inline"
transform="translate(-63.87,-76.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="268"
y="176.07648"
id="text6301"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303"
x="268"
y="176.07648">E1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="317"
y="205.36218"
id="text6293"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6295"
x="317"
y="205.36218"
dy="0 0 0">(* x x)</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="165"
y="217.00504"
id="text5497"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499"
x="165"
y="217.00504"
style="line-height:129.99999523%">parameters: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5505">x</tspan></tspan><tspan
sodipodi:role="line"
x="165"
y="235.87202"
id="tspan5501"
style="line-height:129.99999523%">body: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5503"
dy="0 0 0">(* x x)</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="63"
y="157.36218"
id="text5485"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="63"
y="157.36218"
id="tspan5589"
dy="0 0 0 0 0 0 0 0 0 0">(square 5)</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="65"
y="100.57648"
id="text5477"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5479"
x="65"
y="100.57648"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">global</tspan><tspan
sodipodi:role="line"
x="65"
y="117.47648"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan5507">env</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans Italic"
x="145"
y="97.362183"
id="text5493"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5495"
x="145"
y="97.362183">other variables</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="145"
y="120.29076"
id="text5473"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5475"
x="145"
y="120.29076">square:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="319.71329"
y="175.65131"
id="text6297"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299"
x="319.71329"
y="175.65131">x:5</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

572
src/fig/chap3/Fig3.4a.svg Normal file
View File

@ -0,0 +1,572 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="413.05865"
height="201.58542"
id="svg6455"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.4a.svg"
style="display:inline">
<defs
id="defs6457">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker6488"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path6490"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker6494"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path6496"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-48"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-54"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="223.95144"
inkscape:cy="101.18562"
inkscape:document-units="px"
inkscape:current-layer="layer9"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid6463"
originx="-60.416px"
originy="-778.68033px" />
</sodipodi:namedview>
<metadata
id="metadata_3.4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.4</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.4</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>environment</rdf:li>
<rdf:li>define</rdf:li>
<rdf:li>f</rdf:li>
<rdf:li>square</rdf:li>
<rdf:li>sum-of-squares</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="Lines"
style="display:inline"
transform="translate(-60.416,-72.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 135,72.362183 305,0 c 3,0 5,2 5,5 l 0,54.999997 c 0,3 -2,5 -5,5 l -305,0 c -3,0 -5,-2 -5,-5 l 0,-54.999997 c 0,-3 2,-5 5,-5 z"
id="rect5327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssscsss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 193,175.8086 14.91071,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-31.44641"
id="path3795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 160,122.36218 13.53571,0 c 3.08929,0 5.08929,2 5.08929,5 l 0,35"
id="path3795-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 100,110.36218 28,0"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 167,178.36217 0,27"
id="path4451-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(-20.5,-3.9999992)" />
<path
transform="translate(2.94643,-3.9999992)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,-6.045455,-12.69828)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,-29.545446,-12.698273)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 193,104.85712 87.53571,0 c 3.08929,0 5.08929,2 5.08929,4.99999 l 0,52.50507"
id="path3795-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 246,87.005049 142.55357,0 c 3.08929,0 5.08929,2 5.08929,4.999994 l 0,70.357137"
id="path3795-5-0-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
transform="matrix(1.0454545,0,0,1.0454545,100.95454,-12.698283)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-0"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170807"
sodipodi:ry="11.170807"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.1708 11.17081,-11.1708 6.16947,0 11.17081,5.00134 11.17081,11.1708 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,77.454554,-12.698273)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6-2"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-77"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(86.500004,-4.0000029)" />
<path
transform="translate(109.94643,-4.0000029)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7-1"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 274,178.36216 0,27"
id="path4451-5-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 300,175.80859 14.91071,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-31.44641"
id="path3795-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 408,175.80858 14.91071,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-31.44641"
id="path3795-2-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
transform="matrix(1.0454545,0,0,1.0454545,208.95454,-12.698283)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-0-8"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
transform="translate(217.94643,-4.0000036)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7-1-0"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-77-0"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(194.5,-4.0000036)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 382,178.36215 0,27"
id="path4451-5-0-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="matrix(1.0454545,0,0,1.0454545,185.45455,-12.698273)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6-2-1"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
</g>
<g
inkscape:groupmode="layer"
id="layer9"
inkscape:label="Text"
style="display:inline"
transform="translate(-60.416,-72.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="145"
y="107.36218"
id="text7282"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan7284"
x="145"
y="107.36218">square:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="145"
y="89.867264"
id="text5493"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5495"
x="145"
y="89.867264">sum-of-squares:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="145"
y="125.29076"
id="text5473"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5475"
x="145"
y="125.29076">f:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="60"
y="105.78569"
id="text5477"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5479"
x="60"
y="105.78569"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">global</tspan><tspan
sodipodi:role="line"
x="60"
y="122.68569"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan5507">env</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="90"
y="222.36218"
id="text5497"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499"
x="90"
y="222.36218"
style="line-height:129.99999523%">parameters: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan7268">a</tspan></tspan><tspan
sodipodi:role="line"
x="90"
y="241.22917"
id="tspan5501"
style="line-height:129.99999523%">body: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5503"
dy="0">(sum-of-squares</tspan></tspan><tspan
sodipodi:role="line"
x="90"
y="257.15985"
id="tspan7270"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"> (+ a 1)</tspan><tspan
sodipodi:role="line"
x="90"
y="271.45984"
id="tspan7274"
style="font-size:11px;line-height:129.99999523%"><tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan7276"
dy="0 0 0 0 0 0 0 0 0 0"> (* a 2))</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="245"
y="222.36218"
id="text5497-6"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499-8"
x="245"
y="222.36218"
style="line-height:129.99999523%">parameters: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan7508">x</tspan></tspan><tspan
sodipodi:role="line"
x="245"
y="241.22917"
id="tspan7274-5"
style="line-height:129.99999523%">body: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5503-6"
dy="0">(* x x)</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="350"
y="222.36218"
id="text5497-1"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499-2"
x="350"
y="222.36218"
style="line-height:129.99999523%">parameters: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan7517"
dx="0 0 1.6">x,y</tspan></tspan><tspan
sodipodi:role="line"
x="350"
y="241.22917"
id="tspan5501-8"
style="line-height:129.99999523%">body: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5503-3"
dy="0">(+ (square x)</tspan></tspan><tspan
sodipodi:role="line"
x="350"
y="257.15985"
id="tspan7270-5"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"> (square y))</tspan><tspan
sodipodi:role="line"
x="350"
y="271.45984"
id="tspan7274-6"
style="line-height:129.99999523%" /></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

545
src/fig/chap3/Fig3.5a.svg Normal file
View File

@ -0,0 +1,545 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="388.0386"
height="183.28775"
id="svg3170"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.5a.svg">
<defs
id="defs3172">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker3973"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3975"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker3977"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3979"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker3981"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3983"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker3987"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3989"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker4149"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4151"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker4580"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4582"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-51"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker4680"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4682"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="205.52368"
inkscape:cy="102.4899"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3178"
originx="-87.22714px"
originy="-771.978px" />
</sodipodi:namedview>
<metadata
id="metadata_3.5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.5</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.5</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>environment</rdf:li>
<rdf:li>f</rdf:li>
<rdf:li>square</rdf:li>
<rdf:li>sum-of-squares</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-87.22714,-97.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 150,97.362183 320,0 c 3,0 5,2 5,4.999997 l 0,50 c 0,3 -2,5 -5,5 l -320,0 c -3,0 -5,-2 -5,-5 l 0,-50 c 0,-2.999997 2,-4.999997 5,-4.999997 z"
id="rect5327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 125,127.36218 18,0"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 340,177.36218 35,0 c 3,0 5,2 5,5 l 0,35.00001 c 0,3 -2,5 -5,5 l -35,0 c -3,0 -5,-2 -5,-5 l 0,-35.00001 c 0,-3 2,-5 5,-5 z"
id="rect5327-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 320,200.00505 13,0"
id="path4451-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 357.64286,177.36219 0,-18.00001"
id="path4451-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 150,177.36218 35,0 c 3,0 5,2 5,5 l 0,35.00001 c 0,3 -2,5 -5,5 l -35,0 c -3,0 -5,-2 -5,-5 l 0,-35.00001 c 0,-3 2,-5 5,-5 z"
id="rect5327-2-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 130,200.00505 13,0"
id="path4451-8-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 167.64286,177.36219 0,-18.00001"
id="path4451-8-3-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 245,177.36218 35,0 c 3,0 5,2 5,5 l 0,35.00001 c 0,3 -2,5 -5,5 l -35,0 c -3,0 -5,-2 -5,-5 l 0,-35.00001 c 0,-3 2,-5 5,-5 z"
id="rect5327-2-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 225,200.00505 13,0"
id="path4451-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 262.64287,177.36219 0,-18.00001"
id="path4451-8-3-57"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 435,177.36218 35,0 c 3,0 5,2 5,5 l 0,35.00001 c 0,3 -2,5 -5,5 l -35,0 c -3,0 -5,-2 -5,-5 l 0,-35.00001 c 0,-3 2,-5 5,-5 z"
id="rect5327-2-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 415,200.00505 13,0"
id="path4451-8-34"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 452.64287,177.36219 0,-18.00001"
id="path4451-8-3-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-87.22714,-97.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="430"
y="247.36218"
id="text6293-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6295-8"
x="430"
y="247.36218"
dy="0 0 0">(* x x)</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="439.71332"
y="195.65132"
id="text6297-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299-6"
x="439.71332"
y="195.65132">x:10</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="399"
y="203.71935"
id="text6301-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303-99"
x="399"
y="203.71935">E4</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="335"
y="247.36218"
id="text6293"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6295"
x="335"
y="247.36218"
dy="0 0 0">(* x x)</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="344.71329"
y="195.65132"
id="text6297"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299"
x="344.71329"
y="195.65132">x:6</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="304"
y="203.71935"
id="text6301"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303"
x="304"
y="203.71935">E3</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:139.99999762%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="220"
y="247.36218"
id="text6293-6"
sodipodi:linespacing="140%"><tspan
sodipodi:role="line"
id="tspan6295-6"
x="220"
y="247.36218"
dy="0">(+ (square x)</tspan><tspan
sodipodi:role="line"
x="220"
y="262.76218"
dy="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
id="tspan4730"> (square y))</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="249.71329"
y="195.65132"
id="text6297-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299-83"
x="249.71329"
y="195.65132">x:6</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="250"
y="210.3622"
id="text6297-5-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299-9-9"
x="250"
y="210.3622">y:10</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="209"
y="203.71935"
id="text6301-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303-9"
x="209"
y="203.71935">E2</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:139.99999762%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="100"
y="247.36218"
id="text6293-4"
sodipodi:linespacing="140%"><tspan
sodipodi:role="line"
id="tspan6295-2"
x="100"
y="247.36218">(sum-of-squares</tspan><tspan
sodipodi:role="line"
x="100"
y="262.76218"
id="tspan4564"> (+ a 1)</tspan><tspan
sodipodi:role="line"
x="100"
y="278.16217"
id="tspan4566"
dy="0 0 0 0 0"> (* a 2))</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="154.71329"
y="195.65132"
id="text6297-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299-8"
x="154.71329"
y="195.65132">a:5</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="114"
y="203.71935"
id="text6301-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303-1"
x="114"
y="203.71935">E1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="85.35714"
y="172.36218"
id="text5485"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
x="85.35714"
y="172.36218"
id="tspan5589"
dy="0 0 0 0 0">(f 5)</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="87"
y="122.78568"
id="text5477"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5479"
x="87"
y="122.78568"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">global</tspan><tspan
sodipodi:role="line"
x="87"
y="139.68568"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan5507">env</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

301
src/fig/chap3/Fig3.6b.svg Normal file
View File

@ -0,0 +1,301 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="355.71255"
height="204.27902"
id="svg7118"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.6b.svg"
style="display:inline">
<defs
id="defs7120">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7661"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7663"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7667"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7669"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="198.82446"
inkscape:cy="113.31078"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid7126"
originx="-65.416px"
originy="-765.98673px" />
</sodipodi:namedview>
<metadata
id="metadata_3.6">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.6</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.6</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>environment</rdf:li>
<rdf:li>define</rdf:li>
<rdf:li>make-withdraw</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-65.416,-82.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 135,82.362183 225,0 c 3,0 5,2 5,5 l 0,44.999997 c 0,3 -2,5 -5,5 l -225,0 c -3,0 -5,-2 -5,-5 l 0,-44.999997 c 0,-3 2,-5 5,-5 z"
id="rect5327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 274.46429,170.80859 14.91071,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-26.44641"
id="path3795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 240,110.36218 15,0 c 3.08929,0 5.08929,2 5.08929,5 l 0,42"
id="path3795-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 105,110.10964 23,0"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 248.46429,173.36216 0,27"
id="path4451-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="matrix(1.0454545,0,0,1.0454545,75.418835,-17.698277)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170807"
sodipodi:ry="11.170807"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.1708 11.17081,-11.1708 6.16947,0 11.17081,5.00134 11.17081,11.1708 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,51.918844,-17.69827)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path5407"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(60.96429,-8.9999968)" />
<path
transform="translate(84.41072,-8.9999968)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path5407-7"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-65.416,-82.096435)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="80"
y="202.36218"
id="text5497"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499"
x="80"
y="202.36218"
style="line-height:129.99999523%">parameters:<tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan8113"> balance</tspan></tspan><tspan
sodipodi:role="line"
x="80"
y="221.22917"
id="tspan5501"
style="line-height:129.99999523%">body:<tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5503"
dy="0"> (lambda (amount)</tspan></tspan><tspan
sodipodi:role="line"
x="80"
y="237.95345"
id="tspan7827"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:139.99999762%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"> (if (&gt;= balance amount)</tspan><tspan
sodipodi:role="line"
x="80"
y="253.35345"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:139.99999762%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan7831"
dx="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.6 -4 -1"> (begin (set! balance (-- balance amount))</tspan><tspan
sodipodi:role="line"
x="80"
y="268.75345"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:139.99999762%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan7833"> balance)</tspan><tspan
sodipodi:role="line"
x="80"
y="284.15344"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:139.99999762%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan7835"> &quot;insufficient funds&quot;))</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="65"
y="105.78568"
id="text5477"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5479"
x="65"
y="105.78568"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">global</tspan><tspan
sodipodi:role="line"
x="65"
y="122.68568"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan5507">env</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="145"
y="113.62489"
id="text5473"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5475"
x="145"
y="113.62489">make-withdraw:</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

494
src/fig/chap3/Fig3.7a.svg Normal file
View File

@ -0,0 +1,494 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="390.26575"
height="241.38408"
id="svg4152"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.7a.svg"
style="display:inline">
<defs
id="defs4154">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5058"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5060"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5062"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5064"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5066"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5068"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5074"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-68"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="222.88606"
inkscape:cy="130.05247"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4160"
originx="-75px"
originy="-738.88166px" />
</sodipodi:namedview>
<metadata
id="metadata_3.7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.7</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.7</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>environment</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-75,-72.096438)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 145,72.362186 315,0 c 3,0 5,2 5,5 l 0,44.999994 c 0,3 -2,5 -5,5 l -315,0 c -3,0 -5,-2 -5,-5 l 0,-44.999994 c 0,-3 2,-5 5,-5 z"
id="rect5327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 205,197.36218 84.91071,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-13"
id="path3795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 178,112.36218 7.53571,0 c 3.08929,0 5.08929,2 5.08929,5 l 0,67"
id="path3795-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 115,100.36218 23,0"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 179,199.91575 0,27"
id="path4451-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(-8.5,17.553592)" />
<path
transform="translate(14.94643,17.553592)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,5.954545,8.8553103)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170807"
sodipodi:ry="11.170807"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.1708 11.17081,-11.1708 6.16947,0 11.17081,5.00134 11.17081,11.1708 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,-17.545446,8.8553173)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170807"
sodipodi:ry="11.170807"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.1708 11.17081,-11.1708 6.16947,0 11.17081,5.00134 11.17081,11.1708 z" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 250,147.36218 90,0 c 3,0 5,2 5,5 l 0,20 c 0,3 -2,5 -5,5 l -90,0 c -3,0 -5,-2 -5,-5 l 0,-20 c 0,-3 2,-5 5,-5 z"
id="rect5327-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 230,162.36218 13,0"
id="path4451-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 295,147.36218 0,-18"
id="path4451-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 250,89.499969 143.26785,0 c 3.08929,0 5.08929,2 5.08929,4.999994 l 0,54.862217"
id="path3795-5-0-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 412.50001,162.30352 27.49999,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-27.94134"
id="path3795-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 386.50001,164.85709 0,35.50509"
id="path4451-5-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-5"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(199.00001,-17.505068)" />
<path
transform="translate(222.44644,-17.505068)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7-5"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,213.45455,-26.203348)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-4"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,189.95456,-26.203348)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6-0"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-75,-72.096438)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="214"
y="166.07648"
id="text6301"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303"
x="214"
y="166.07648">E1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="155"
y="92.362183"
id="text5493"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5495"
x="155"
y="92.362183">make-withdraw:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="155"
y="115.29076"
id="text5473"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5475"
x="155"
y="115.29076">W1:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="75"
y="95.785683"
id="text5477"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5479"
x="75"
y="95.785683"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">global</tspan><tspan
sodipodi:role="line"
x="75"
y="112.68568"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan5507">env</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="295"
y="165.65131"
id="text6297"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299"
x="295"
y="165.65131">balance: 100</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="345"
y="217.36218"
id="text5497-1"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499-5"
x="345"
y="217.36218"
style="line-height:129.99999523%">parameters: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5505">balance</tspan></tspan><tspan
sodipodi:role="line"
x="345"
y="236.22917"
id="tspan5501-8"
style="line-height:129.99999523%">body: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5503-8">...</tspan></tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="75"
y="244.86725"
id="text5497"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499"
x="75"
y="244.86725"
style="line-height:129.99999523%">parameters: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5868"
dx="2.5">amount</tspan></tspan><tspan
sodipodi:role="line"
x="75"
y="263.73422"
id="tspan5501"
style="line-height:129.99999523%">body: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5503"
dx="2.5999999">(if (&gt;= balance amount)</tspan></tspan><tspan
sodipodi:role="line"
x="75"
y="280.45853"
id="tspan5910"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:139.99999762%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"> (begin (set! balance (- balance amount))</tspan><tspan
sodipodi:role="line"
x="75"
y="295.85852"
id="tspan5912"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:139.99999762%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"> balance)</tspan><tspan
sodipodi:role="line"
x="75"
y="311.25851"
id="tspan5914"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:139.99999762%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"> &quot;insufficient funds&quot;)</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

485
src/fig/chap3/Fig3.8c.svg Normal file
View File

@ -0,0 +1,485 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="384.84976"
height="244.08774"
id="svg4152"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.8c.svg"
style="display:inline">
<defs
id="defs4154">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5058"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5060"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5062"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5064"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5066"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5068"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5074"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-68"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="242.93698"
inkscape:cy="130.30509"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4160"
originx="-75.416px"
originy="-736.178px" />
</sodipodi:namedview>
<metadata
id="metadata_3.8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.8</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.8</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>environment</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-75.416,-72.096438)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 145,72.362186 310,0 c 3,0 5,2 5,5 l 0,44.999994 c 0,3 -2,5 -5,5 l -310,0 c -3,0 -5,-2 -5,-5 l 0,-44.999994 c 0,-3 2,-5 5,-5 z"
id="rect5327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 205,204.85711 60,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-20.49493"
id="path3795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 178,112.36218 7.53571,0 c 3.08929,0 5.08929,2 5.08929,5 l 0,74"
id="path3795-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 115,100.36218 23,0"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 179,207.41068 0,27"
id="path4451-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(-8.5,25.048526)" />
<path
transform="translate(14.94643,25.048526)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,5.954545,16.350244)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,-17.545446,16.350251)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 250,147.36218 90,0 c 3,0 5,2 5,5 l 0,20 c 0,3 -2,5 -5,5 l -90,0 c -3,0 -5,-2 -5,-5 l 0,-20 c 0,-3 2,-5 5,-5 z"
id="rect5327-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 230,162.36218 13,0"
id="path4451-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 295,147.36218 0,-18"
id="path4451-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 300,197.36218 90,0 c 3,0 5,2 5,5 l 0,20 c 0,3 -2,5 -5,5 l -90,0 c -3,0 -5,-2 -5,-5 l 0,-20 c 0,-3 2,-5 5,-5 z"
id="rect5327-2-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-75.416,-72.096438)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="214"
y="166.07648"
id="text6301"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303"
x="214"
y="166.07648">E1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="155"
y="92.362183"
id="text5493"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5495"
x="155"
y="92.362183">make-withdraw: ...</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="155"
y="115.29076"
id="text5473"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5475"
x="155"
y="115.29076">W1:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="75"
y="95.280609"
id="text5477"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5479"
x="75"
y="95.280609"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">global</tspan><tspan
sodipodi:role="line"
x="75"
y="112.18061"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan5507">env</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="295"
y="166.18703"
id="text6297"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299"
x="295"
y="166.18703">balance: 100</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="75.010147"
y="252.86726"
id="text5497"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499"
x="75.010147"
y="252.86726"
style="line-height:129.99999523%">parameters: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5868"
dx="2.5">amount</tspan></tspan><tspan
sodipodi:role="line"
x="75.010147"
y="271.73425"
id="tspan5914"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Sans">body: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5503">...</tspan></tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 320,197.36218 0,-18"
id="path4451-8-3-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="345"
y="216.18703"
id="text6297-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299-8"
x="345"
y="216.18703">amount: 50</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="358.73734"
y="149.60455"
id="text6205"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan6207"
x="358.73734"
y="149.60455"
style="font-size:12px;line-height:129.99999523%">Here is the balance</tspan><tspan
sodipodi:role="line"
x="358.73734"
y="165.20456"
id="tspan6209"
style="font-size:12px;line-height:129.99999523%">that will be changed</tspan><tspan
sodipodi:role="line"
x="358.73734"
y="180.80455"
id="tspan6211"
style="font-size:12px;line-height:129.99999523%">by the set!</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:139.99999762%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="224.35713"
y="252.36218"
id="text6213"
sodipodi:linespacing="140%"><tspan
sodipodi:role="line"
x="224.35713"
y="252.36218"
id="tspan3075">(if (&gt;= balance amount)</tspan><tspan
sodipodi:role="line"
x="224.35713"
y="267.76218"
id="tspan3097"> (begin (set! balance </tspan><tspan
sodipodi:role="line"
x="224.35713"
y="283.16217"
id="tspan3099"> (- balance amount))</tspan><tspan
sodipodi:role="line"
x="224.35713"
y="298.56219"
id="tspan3101"> balance)</tspan><tspan
sodipodi:role="line"
x="224.35713"
y="313.96219"
id="tspan3103"> &quot;insufficient funds&quot;)</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

412
src/fig/chap3/Fig3.9a.svg Normal file
View File

@ -0,0 +1,412 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="374.84976"
height="194.21373"
id="svg4152"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig3.9a.svg">
<defs
id="defs4154">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5058"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5060"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5062"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5064"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5066"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5068"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5072"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5074"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-68"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path3809-6-2-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="197.01603"
inkscape:cy="107.51788"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4160"
originx="-75.416px"
originy="-786.05201px" />
</sodipodi:namedview>
<metadata
id="metadata_3.9">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 3.9</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-21.html#%_fig_3.9</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>environment</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-75.416,-72.096438)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 145,72.362186 300,0 c 3,0 5,2 5,5 l 0,44.999994 c 0,3 -2,5 -5,5 l -300,0 c -3,0 -5,-2 -5,-5 l 0,-44.999994 c 0,-3 2,-5 5,-5 z"
id="rect5327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 205,197.36218 85,0 c 3.08929,0 5.08929,-2 5.08929,-5 l 0,-13"
id="path3795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 178,112.36218 7.53571,0 c 3.08929,0 5.08929,2 5.08929,5 l 0,66"
id="path3795-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 115,100.36218 23,0"
id="path4451"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 179,199.91575 0,27"
id="path4451-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z"
transform="translate(-8.4999995,17.553579)" />
<path
transform="translate(14.94643,17.553579)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.35433072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5407-7"
sodipodi:cx="187.5"
sodipodi:cy="179.86218"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 190,179.86218 c 0,1.38071 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.11929 -2.5,-2.5 0,-1.38071 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.11929 2.5,2.5 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,5.9545455,8.8552982)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170808"
sodipodi:ry="11.170808"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.17081 11.17081,-11.17081 6.16947,0 11.17081,5.00135 11.17081,11.17081 z" />
<path
transform="matrix(1.0454545,0,0,1.0454545,-17.545446,8.8553052)"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.50838757;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path5435-9-6"
sodipodi:cx="188"
sodipodi:cy="180.36218"
sodipodi:rx="11.170807"
sodipodi:ry="11.170807"
d="m 199.17081,180.36218 c 0,6.16947 -5.00134,11.17081 -11.17081,11.17081 -6.16947,0 -11.17081,-5.00134 -11.17081,-11.17081 0,-6.16946 5.00134,-11.1708 11.17081,-11.1708 6.16947,0 11.17081,5.00134 11.17081,11.1708 z" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 250,147.36218 90,0 c 3,0 5,2 5,5 l 0,20 c 0,3 -2,5 -5,5 l -90,0 c -3,0 -5,-2 -5,-5 l 0,-20 c 0,-3 2,-5 5,-5 z"
id="rect5327-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 230,162.36218 13,0"
id="path4451-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend-6)"
d="m 295,147.36218 0,-18"
id="path4451-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-75.416,-72.096438)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="214"
y="166.07648"
id="text6301"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6303"
x="214"
y="166.07648">E1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="155"
y="92.362183"
id="text5493"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5495"
x="155"
y="92.362183">make-withdraw: ...</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="155"
y="115.29076"
id="text5473"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5475"
x="155"
y="115.29076">W1:</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="75"
y="95.280609"
id="text5477"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5479"
x="75"
y="95.280609"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O">global</tspan><tspan
sodipodi:role="line"
x="75"
y="112.18061"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
id="tspan5507">env</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="295"
y="166.18703"
id="text6297"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6299"
x="295"
y="166.18703">balance: 50</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Sans"
x="120"
y="244.36218"
id="text5497"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5499"
x="120"
y="244.36218"
style="line-height:129.99999523%">parameters: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5868"
dx="2.5">amount</tspan></tspan><tspan
sodipodi:role="line"
x="120"
y="263.22916"
id="tspan5914"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Linux Biolinum O;-inkscape-font-specification:Sans">body: <tspan
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:129.99999523%;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
id="tspan5503">...</tspan></tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

260
src/fig/chap4/Fig4.1.svg Normal file
View File

@ -0,0 +1,260 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="388.39911"
height="164.48775"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig4.1.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path3899"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path3887"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path3881"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible">
<path
id="path3884"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="190.53278"
inkscape:cy="84.291925"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2985"
originx="-55.208px"
originy="-832.75613px" />
</sodipodi:namedview>
<metadata
id="metadata_4.1">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 4.1</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-26.html#%_fig_4.1</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>eval</rdf:li>
<rdf:li>apply</rdf:li>
<rdf:li>cycle</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-55.208,-55.118304)">
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path3768"
sodipodi:cx="245"
sodipodi:cy="137.36218"
sodipodi:rx="75"
sodipodi:ry="75"
d="m 320,137.36218 c 0,41.42136 -33.57864,75 -75,75 -41.42136,0 -75,-33.57864 -75,-75 0,-41.421354 33.57864,-74.999997 75,-74.999997 41.42136,0 75,33.578643 75,74.999997 z" />
<path
id="path3770-3-3"
transform="matrix(1,0,0,-1,0,277.22437)"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;display:inline"
d="m 320,139.86218 c 0,20.71068 -16.78932,37.5 -37.5,37.5 -20.71068,0 -34.5,-14.49999 -37.5,-37.5 l 0,0 m 0,1e-5 c -3,-23 -16.78932,-37.5 -37.5,-37.5 -20.71068,0 -37.5,16.78932 -37.5,37.5 l 0,0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscccscc" />
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:none"
d="m 240.35714,211.44352 c -28.70393,-1.47148 -54.80687,-20.92554 -65.1044,-48.52114 -1.23131,-3.29971 -2.76726,-8.74153 -2.73848,-9.70236 0.008,-0.26192 0.48503,0.45336 1.06041,1.58951 4.76169,9.40252 13.58249,16.51587 24.1039,19.43809 3.30438,0.91777 4.05211,0.99128 10,0.98323 5.87064,-0.008 6.73148,-0.0925 9.9187,-0.97367 8.4569,-2.33821 15.38814,-7.30038 20.07294,-14.37052 4.25046,-6.41463 6.22224,-11.85446 7.87842,-21.73532 1.46937,-8.76634 2.86687,-13.32352 5.79297,-18.89051 5.65025,-10.74976 15.39403,-17.32778 27.3414,-18.45818 19.56215,-1.850856 36.6965,11.27652 40.09954,30.72201 0.69845,3.9911 0.51927,12.03002 -0.38927,17.46417 -4.14688,24.80338 -20.00582,45.52832 -42.83983,55.98438 -11.30266,5.17568 -22.01949,7.14581 -35.1963,6.47031 z"
id="path3811"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#Arrow2Lstart);marker-end:none;display:inline"
id="path3768-5"
sodipodi:cx="245"
sodipodi:cy="137.36218"
sodipodi:rx="115"
sodipodi:ry="115"
d="m 163.68272,218.67946 c -44.91029,-44.91029 -44.91029,-117.72426 0,-162.634556"
sodipodi:start="2.3561945"
sodipodi:end="3.9269908"
sodipodi:open="true" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#Arrow2Lstart);display:inline"
id="path3768-5-2"
sodipodi:cx="245"
sodipodi:cy="137.36218"
sodipodi:rx="115"
sodipodi:ry="115"
d="m 326.31728,56.044899 c 44.91029,44.910291 44.91029,117.724261 0,162.634561 0,0 0,0 0,0"
sodipodi:start="5.4977871"
sodipodi:end="7.0685835"
sodipodi:open="true" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-55.208,-55.118304)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="207.32143"
y="140.71933"
id="text3813"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3815"
x="207.32143"
y="140.71933">Eval</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="282.32141"
y="140.71933"
id="text3817"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3819"
x="282.32141"
y="140.71933">Apply</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="55"
y="133.71931"
id="text5250"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5252"
x="55"
y="133.71931"
style="line-height:129.99999523%">Procedure,</tspan><tspan
sodipodi:role="line"
x="55"
y="150.61931"
id="tspan5254"
style="line-height:129.99999523%">Arguments</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="375"
y="133.79077"
id="text5256"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5258"
x="375"
y="133.79077"
style="line-height:129.99999523%">Expression,</tspan><tspan
sodipodi:role="line"
x="375"
y="150.69077"
id="tspan5260"
style="line-height:129.99999523%">Environment</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

548
src/fig/chap4/Fig4.2.svg Normal file
View File

@ -0,0 +1,548 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="326.6601"
height="225.53149"
id="svg5865"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig4.2.svg">
<defs
id="defs5867">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-5"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-1"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-87"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-82"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-87"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-69"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="163.43739"
inkscape:cy="129.57865"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid5873"
originx="-63.372297px"
originy="-764.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_4.2">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 4.2</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-26.html#%_fig_4.2</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>factorial</rdf:li>
<rdf:li>abstract</rdf:li>
<rdf:li>machine</rdf:li>
<rdf:li>flow</rdf:li>
<rdf:li>diagram</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-63.372297,-62.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 113,62.362183 209,0 c 6,0 8,2 8,8 l 0,208.999997 c 0,6 -2,8 -8,8 l -209,0 c -5.97955,0 -8,-1.93117 -8,-8 l 0,-208.999997 c 0,-6 2,-8 8,-8 z"
id="rect4940"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<g
id="g6635"
transform="translate(0,-1.4848022)"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<rect
ry="3.5433071"
rx="3.5433071"
y="218.84698"
x="185"
height="30"
width="80"
id="rect6788-7-9"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
</g>
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2"
width="30"
height="30"
x="200"
y="117.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-6"
width="30"
height="30"
x="280"
y="177.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7"
width="30"
height="30"
x="125"
y="217.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-6-4"
width="30"
height="40"
x="280"
y="112.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 155,232.36218 28,0"
id="path8845"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 265,232.36218 25,0 c 3,0 5,-2 5,-5 l 4e-5,-18"
id="path8845-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 140,267.36218 0,-18"
id="path8845-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
d="m 295,177.36218 0,-23"
id="path8845-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 140,192.36218 138,0"
id="path8845-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 75,132.36218 123,0"
id="path8845-23"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 230,132.36218 48,0"
id="path8845-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 303,132.36218 62,0"
id="path8845-65"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 140,132.36218 0,83"
id="path8845-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
d="m 215,92.362183 0,22.999997"
id="path8845-4-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
d="m 295,92.362183 0,17.999997"
id="path8845-4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(-95.999995,3.9552617)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
transform="translate(-95.999995,63.955265)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69-6"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 303,132.36218 -15.55806,10.75761"
id="path3517"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="translate(67,3.95527)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69-6-8"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
transform="translate(55,-6.04473)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69-6-1"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
transform="translate(55,13.95527)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69-6-3"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-63.372297,-62.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="215"
y="135.82651"
id="text6681"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6683"
x="215"
y="135.82651">=</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="225"
y="236.11978"
id="text8841-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8843-9"
x="225"
y="236.11978">factorial</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="140.25253"
y="236.11978"
id="text6689"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691"
x="140.25253"
y="236.11978"
dx="0 -4">--</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="295"
y="196.09435"
id="text6693"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6695"
x="295"
y="196.09435">*</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="118"
y="82.362183"
id="text8841-2-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8843-9-7"
x="118"
y="82.362183">factorial</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="69"
y="136.35205"
id="text3465"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3467"
x="69"
y="136.35205">6</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="371"
y="136.36218"
id="text3469"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3471"
x="371"
y="136.36218">720</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="215"
y="87.362183"
id="text3473"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3475"
x="215"
y="87.362183">1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="295"
y="87.362183"
id="text3477"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3479"
x="295"
y="87.362183">1</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="148"
y="272.36218"
id="text3481"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3483"
x="148"
y="272.36218">1</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

258
src/fig/chap4/Fig4.3.svg Normal file
View File

@ -0,0 +1,258 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="267.03726"
height="169.20978"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig4.3.svg">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="146.03113"
inkscape:cy="70.048053"
inkscape:document-units="px"
inkscape:current-layer="layer3"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2985"
originx="-102.71182px"
originy="-761.05597px" />
</sodipodi:namedview>
<metadata
id="metadata_4.3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 4.3</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-26.html#%_fig_4.3</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>evaluator</rdf:li>
<rdf:li>factorial</rdf:li>
<rdf:li>machine</rdf:li>
<rdf:li>emulator</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Bitmap"
inkscape:groupmode="layer"
id="layer1"
style="opacity:0.29707115;display:none"
transform="translate(-102.71182,-122.09643)">
<image
y="120.21932"
x="106.64286"
id="image3080"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQUAAACqCAYAAACkq1oeAAAABHNCSVQICAgIfAhkiAAACDNJREFU eJzt3duy2yoQRVE5lf//ZeUlToQ2d2jobuaoOnWS2BYIiSWMdflc8ObeXYEJPrsrAHhiPRSs19+8 X7srAEAXQgFAgFAAECAUAAQIBQABQgFAgFAAECAUAAQIBQCB37srAFeeZyNyqrJRhIId96W/o33r 5/1U5dFtEWufVNu9yxEPXk+h4P0o9bnKO0yL1LLe7Zj7+4x6WDRjW+QC9LmsO/Leb/kiBwovofBs LM9mHzViO1+p4+fqcJJSO+S2R+9rz9dT22mYh1C4X38uNarXnbhlve7X/5//HguGd3hI87CNWg5U sfdsO9B5CIWv2iGVp9FErOPWdKhvW/UGqPTcgcVt1PN1ItV+W0e+nkLhugSHVErMnFMoLS8XHKkR xnvU9l6mNxLzWO92e2+DWFtP5S0UPJs9qdQ7rD1lFJYzM/BSy0jN69zXGYE77H79dzLr62+9/uZ5 GSmQmMAknOYMIEAoAAgQCgAChAKAAKEAIEAoAAgQCgACXs5TQIgTgAAsxZmjjvH1AUCAUEArRgjO EQoAAoQCWjBKOAChACBAKAAIEAqoZeG5E5iAUEAPwsExQgE1xG8WCj0IBdRgZHAQQgG9CAqnCAUA QDfmFA7ASAFAgFBALUYJhyAUAAQIBQABQgEA0IU5hUMwUgAQIBRQg1HCQQgFAAFCAUCAUAAANGNO 4SCMFAAECAWUMEo4DKEAIEAoAAgQCgCAJswpHIaRAoAAoYAcRgkHIhQABAgFAAFCAQBQjTmFAzFS QAqBcChCAUCAUAAQIBQABAgFAEAVJhoPxUgBMQTCwX7vrgCOUxs4H9FaIIlQkBfrBKfs8CPrfnK7 bUUozJM6AsZ25NzR0vKO/16vkXWpbTfL7aUSDTruu6POasvnjr9r+7Ss0+767i7fHRqxz6odcdcO fxfK09oRtdbLFBquzexRQU/Z0uWn1tFah9u5rUyb3WAjP2Vp3XgaO4NknZ6dSeO6t/KwDkuNNtLM iSVtk0hWjjSztoG29pdgZZtuNboDSTfuzNBpLdPijuNxpCaB0UNGS4NoaEiJkNgRPNDD8kFARMtP ThobbcbpuBrXC+tp3s9V4Rx4nOa+2O+TaBic7L4IiAANAfx3VDikTlDhexXwk4bJdnFuVwwQ5jYg nitTOt8dQJyrn7W/lScQgHlMnx26+34KhBE8ar2HRu8yRUiHQm7isqeRcsO0HQFTc0Vh7PXWMqTW q3XZEt+jT5ncnnWd0ZJ2kvyppbTslrI1/iQUq9PselpZb03L80y8rSTnFGLJlvuuVRoF1Hyu9Jna 8mqMrl/ps+9Ll2OfeX+udv1zR/zaMkfutfhe5imjhVmWjIol0ue9zNgJIHfizzV/L5VXWkbr8mvK a1lOqS534rVcWe9llk66qanrjNFQTVszWmgj1l6rJxpT6ZbqAFKJuLq8WFk5M+vQOwKCbs8R39R9 9hsK3wJW3B8hNexfOVG4urxnuddVN+rJBajE7PZTbT2xl8jXf8nZ+9rv3N/39H4fT70WC53a8mrM mFPI1SX3WqrMGfMbI3WJKW2H53uYU+gjeoBjVrmN9/VbhXYcJ9qGBEMb7+snjfabx1QwAFiDYAAQ EO+3BANgD8EA4AeCAUBgSZ8lGABbXAVD6pz90nn8Nef7t5S3Sq7eu+sG29wEw6yLk1Z9flTp4qfd 9YNdzfvOyLMkpS8cqjmV9/1a6j0t5eUaMbfc3OnBLXXJXdfAacDosew6H6mjV8+lviN1mbkeUpdj 9ywL+Grad0Yund51paG03pECoFVTXx29n4LHYPC0LkCzmTfflLyRZ+9lwL3l9ai5RLjms7HPMKeA GZYewK1fWan9+7r2+sGG5fsRwSBDa71g09L9iZ0X0M/8aAHAfAQDgAChAOAHggFAgFAA8APB8NJ7 mTXgRXTf/7W6FspwhiBOlnsQkRgLR2ELdQSk/Nj/Tx8pANhA+5FYe/0AaUEfYKQAILBqok3jPRdG L7kGvNjWPxmmA3r96598fQCwFaMFQK/7uhgpAFCA0QKgEyMFAHowWgD02dovCQVAJ4Lhr56nXI8s c9Zl25Jt2Pvkbok2W6X36d9S9e4tc6Q+2/vl9gr8FXsG5GjnnR0ytWXspuW5niPl9zyzVNOzVUuv ZcsbfWycB6nTnVue8FSzzNgOV/uUq/frz/rl6pl6LbXDlNZb8tTwWZ0qt24lNe/JnRLcerpwbV17 y9R4eUEVLUeH2L/PHCXk/j33vtQoprS82Ofeyxg90swcDdWM1mq3R27de+oy47Xaz7S26fT6MFLI W3VnmpYyZib/jBGQFJNHOA80nKew5ZZQFT6v/68or3b42vrazPatrSeM0rJxd373+XaYmeXHlpn7 Pl77Hb/mtVSZM57iPVKXklnb4b3OLXNDte0ZW05P/Wvq2ltmb3uqOkDv/inKwjK9095mR/z60Pk5 MQQDtLbZCYEw+lkR6ioEHEZlH1RZKeAA93Xp+PUBAIoYLQDrqe936isIOGKmv5mpKGCcqb5mqrKA QSb7mMlKAwaY7lumKw8oZb5fmV8BQBE3/cnNigAbuetH7lYIWKT3xkEmuF0xQEhVn9FyP4VeZu9B 55xkYLO92zXdW8FDAxMMe+Q6vuT2eJfLto9rublMwEuDStw9Cf+N3lVJUvfO79RwX/DWiITDmNzt 1iw4MSCmj5y8NhzhkGe989fwGBBLRmxeGivl9HA4ofPXsDIPUZqgXVJvrY0zm8ejxnUp2YkM2tFu Nb/IqNheKiqxmJejxnXprbt1Ej+pmtlWZioqaMcQmw4Ptdjx0jgBB0f6A9OTcOW7QBmqAAAAAElF TkSuQmCC "
height="170"
width="261" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-102.71182,-122.09643)">
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 170,137.36218 48.44194,0"
id="path8845-65-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 270,137.36218 50,0"
id="path8845-65"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="M 235,202.36218 245,153.8571"
id="path8845-65-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-9"
width="50"
height="30"
x="220"
y="122.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Cloud"
style="display:inline"
transform="translate(-102.71182,-122.09643)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:none"
d="m 199.64286,195.21932 c 5.02071,0.82119 9.98067,3.42338 15.3392,3.82397 5.35853,0.40059 12.60557,-2.64619 19.654,-2.31988 7.04843,0.32631 13.38658,3.74236 19.75798,3.97933 6.3714,0.23697 13.33233,-1.72438 19.7131,-1.73341 6.38077,-0.009 12.387,1.23974 17.67857,3.39285 6.19937,2.91902 12.68502,6.02612 18.92858,6.78572 5.87875,0.5865 11.05713,0.84971 16.78571,1.07142 5.01875,0.4914 8.58681,1.11236 12.5,2.5 3.56049,1.25802 5.93343,2.65338 8.57143,5 1.55826,1.87302 3.72389,4.15864 5,6.78572 2.12378,4.22432 4.26879,6.89775 7.85714,10 1.91087,2.16886 2.98257,4.5235 3.57143,6.78571 1.87548,4.81935 3.57373,10.97777 4.28571,17.85715 0.59656,3.25916 0.75211,7.46489 -0.35714,10.71428 -1.67312,5.47392 -5.17655,9.20622 -9.64286,12.14286 -4.18929,1.79703 -10.15943,3.80547 -15.35714,4.28571 -5.80029,0.622 -11.62447,-1.26775 -16.60714,0 -13.90063,4.11088 -24.24468,0.23998 -32.26015,1.47408 -8.14736,1.45927 -14.92624,-0.77813 -21.02811,-2.32143 -6.3885,-1.23967 -12.34849,-0.7237 -17.85714,1.07143 -10.52606,4.3578 -13.65743,2.67997 -23.31889,4.41878 -9.66146,1.73881 -16.80175,-3.14895 -24.99999,-3.57143 -8.19825,-0.42249 -14.28801,0.16433 -20.7143,-0.35714 -8.77929,-0.91452 -12.43912,-4.76352 -18.92857,-7.5 -6.48945,-2.73648 -11.22116,-1.7495 -19.64285,-5.89286 -8.42169,-4.14336 -13.15777,-12.64244 -16.78572,-20.53571 -3.62795,-7.89327 -9.11084,-10.06884 -13.92857,-15.71429 -3.42608,-2.86222 -6.56368,-4.16375 -9.28571,-7.85714 -1.38983,-2.54642 -4.35082,-5.45626 -4.64286,-8.57143 -1.65766,-3.18015 -1.46549,-9.54834 -0.35715,-14.28571 1.23758,-2.79646 4.01478,-5.75905 6.78572,-6.42858 5.84564,-2.00611 12.45162,-2.27205 19.07783,-2.14286 5.86295,-0.3204 11.0219,1.6668 16.93499,1.07143 6.98145,0.067 13.41858,-0.75254 20.41575,-2.14286 8.79615,-2.41836 19.5954,-3.47595 29.19679,-2.38007 1.52164,0.10807 2.53507,0.40694 3.66036,0.59438 z"
id="path3910"
inkscape:connector-curvature="0"
sodipodi:nodetypes="czzzzcccccccccccccccczzczzzccccccccccc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-102.71182,-122.09643)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="130"
y="222.36218"
id="text3898"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3900"
x="130"
y="222.36218">(define (factorial n)</tspan><tspan
sodipodi:role="line"
x="130"
y="236.11218"
id="tspan3902"> (if (= n 1)</tspan><tspan
sodipodi:role="line"
x="130"
y="249.86218"
id="tspan3904"> 1</tspan><tspan
sodipodi:role="line"
x="130"
y="263.61218"
id="tspan3906"
dy="0 0 0 0 0 0 0 0 0"> (* (factorial (- n 1)) n)))</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="245"
y="141.11977"
id="text8841-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8843-9"
x="245"
y="141.11977">eval</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="158"
y="141.11978"
id="text4080"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4082"
x="158"
y="141.11978">6</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="327"
y="141.11978"
id="text4084"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4086"
x="327"
y="141.11978">720</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

248
src/fig/chap4/Fig4.4.svg Normal file
View File

@ -0,0 +1,248 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="396.36417"
height="146.117"
id="svg4154"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig4.4.svg">
<defs
id="defs4156">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="218.26687"
inkscape:cy="106.14924"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4162"
originx="-84.610236px"
originy="-802.957px" />
</sodipodi:namedview>
<metadata
id="metadata_4.4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 4.4</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-29.html#%_fig_4.4</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>query</rdf:li>
<rdf:li>frame</rdf:li>
<rdf:li>stream</rdf:li>
<rdf:li>assertion</rdf:li>
<rdf:li>input</rdf:li>
<rdf:li>output</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-84.610236,-103.28818)">
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-9"
width="100"
height="59.999996"
x="200"
y="112.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 85,142.36218 113.50508,0"
id="path8845-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 300,142.36218 180,0"
id="path8845-6-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 250,212.36218 0,-38.50508"
id="path8845-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-84.610236,-103.28818)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="110"
y="112.36218"
id="text4754"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan4756"
x="110"
y="112.36218"
style="line-height:129.99999523%">input stream</tspan><tspan
sodipodi:role="line"
x="110"
y="129.26218"
id="tspan4758"
style="line-height:129.99999523%">of frames</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="320"
y="112.36218"
id="text4760"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
x="320"
y="112.36218"
id="tspan4764"
style="line-height:129.99999523%">output stream of frames,</tspan><tspan
sodipodi:role="line"
x="320"
y="129.26218"
id="tspan4766"
style="line-height:129.99999523%">filtered and extended</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="250"
y="135.36218"
id="text4781"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4783"
x="250"
y="135.36218">query</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="250"
y="157.36218"
id="text4785"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4787"
x="250"
y="157.36218">(job ?x ?y)</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="250"
y="232.36218"
id="text4775"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan4777"
x="250"
y="232.36218"
style="line-height:129.99999523%">stream of assertions</tspan><tspan
sodipodi:role="line"
x="250"
y="249.26218"
id="tspan4779"
style="line-height:129.99999523%">from data base</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

356
src/fig/chap4/Fig4.5.svg Normal file
View File

@ -0,0 +1,356 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="361.36417"
height="132.28375"
id="svg4884"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig4.5.svg">
<defs
id="defs4886">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-6"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-42"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="197.22804"
inkscape:cy="76.62781"
inkscape:document-units="px"
inkscape:current-layer="layer7"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4892"
originx="-59.610236px"
originy="-867.982px" />
</sodipodi:namedview>
<metadata
id="metadata_4.5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 4.5</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-29.html#%_fig_4.5</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>series</rdf:li>
<rdf:li>query</rdf:li>
<rdf:li>frame</rdf:li>
<rdf:li>stream</rdf:li>
<rdf:li>and</rdf:li>
<rdf:li>combination</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Bitmap"
inkscape:groupmode="layer"
id="layer1"
style="opacity:0.30543931;display:none"
transform="translate(-59.610236,-52.096435)">
<image
y="52.362183"
x="60"
id="image4902"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAXcAAACECAYAAABrsWv9AAAABHNCSVQICAgIfAhkiAAABftJREFU eJzt3eGSoygUBlDdmvd/5eyvzLoEEYxEuJ5TNdXTMaCifCF0NOvCDF53bwC3W+/eAOB6wv3ZHH+a /XP3BgBwPeEOEJBwBwhIuAME1Cvcf/UHoB7r8cerMTkuc5ilT4Y/n/50qtfHtp7r3WmuPAdaOuL2 ubXbkKt/zSx3XjONq0/WvY611znXymXvul6ZZWmZGntlazt5Tdmjckf7vvXKPDaqXtvaUu/ZgE+P Wen3X7pr3bl2PNsno/Tz3PIr+/rwcjuSPvY6WPYqLCutp8a2/pY6X8tn2b1yR/Wk/9/b36O6RpJr m1fm397jabvsLavZju3PljKl3+86Dnest7W/7i07qnO2fp4re2Vfv0yvaZlvlV7prqz/7DpyI+vt z+3jvfdlNGnb7LXVu11yo57cNEhtG+4dgzNlt552HH9htn6+LBP19ZHCfdsJa18xS3W0PO/olfeo zlxQ5Z5ztK6IruxYvdebnhN3TsWMpGU0nlu+N701Wz9flon6+tXhnnsLsn01S1/dSo2/bn6WRmPf vGVL15Vb1lI2LVdaVpp+iRYqZ47VN8f4zIg/V8fTXoi30v1fC8uWpe14zd7Pc2WH6+ujBEi0MLva LO1zdjolFyR75UrtUKqjttzeunL79iuzHP8jUfaDSq/kH59mapeZtrXFnfsVoU31c8iYrTPMtr1H 7t6fu9cPdKJzP5vjTzP3lgEISLgDBCTcAQIS7gAB3XGFaunD/z3KAX3oy/x1xVVmT/T0/X+6EY+/ vjy4XrdmzdWfO6i194fYK1e6snCv3NHViC2XFafLe3Fl37Pddfz1Zf46uqfC1a/2LVe85e57k/7M rStdVnpuL0Y7z3bH8deXJzfSXSG/Ubo1Z4vcCfL+fV2+v4UoUKYvX6RnuI/QaK13lDu6nWe6bIR9 hN5GOM/15UYR59xrT4LcnF3rV4X9ao7OnPuzPXXOPWJfhv8JN6qgieNPMxcxAQQU5Q+qtPvVaHCW t7vag1CE+7P1DprZphO0B2GYlgEISLgDBCTcAQIS7gABCXeAgIQ7QEDCHSAg4Q4QkIuY4nlfKHPl BTl7N5CawdXt4UseuFP1+Szc4+lx17vtHfZmu0Pl1e2Ru5XsbG3CvKrPZ+EeV3qwrxh9l77abHQ9 2gPucng+z9xZ+V7rt9WvS9s0x2znVmt7tJadrT2Y2J/FqGUG377tr/0ig9Z6aox4fuVG7a37lk7L 1B6jM+1h2oeS7BSNaZmYenzLzMxfSdb7W3e8A+aXqs5n4R7P1aO89A+ps/1htWd7bM3QFsxvln5H pR6jwl+MNGcazY7cHjO1I4NwERNAQMIdICDhDhCQcAcISLgDBCTcAQIS7gABuYjp2Xx++v+0B/BT I4XO+z4q/Kd3m2hvmpmWAQhIuNPCCPKTNmFIwp0z3AXxkzZhKMIdICDhDhCQcKeW+0h/0iYMS7hz ljnmT9qEYQh3gICEOzVMP3zSJsDXRnqrP9K2jKJ3m2hzmhm5AwQk3AECEu4AAQl3gICEO0BAvqyD GW0/PeLjiJBh5M5s0o8F+pggZBi5c8ZogTra9sDthDut7p4GyQX53dsEwzEtAxCQcGc26SjdqB0y hDszWpOfQEK4AwQk3AECEu4AAQl3gICEO0BAwh0gIB8lm4PL69FXgUfwggcFpmUAAhLuAAEJd4CA hDtAQMIdICDhDhCQcAcISLgDBCTcAQIS7gABCXeAgIQ7QEDCHSAg4Q4QkHAHCEi4AwQk3AECEu4A AQl3gICEO0BAwh0gIOEOEJBwBwhIuAMEJNwBAhLuAAEJd4CAhDtAQMIdAAAAAAAAAAAAAAAAgGm8 HrZeGJYrVLlKS8D2CGMBDxvCnausD103DEmn4Bu50fJ6sKxU5qjOq7eldZn+AoT3Wj7DrzQ18tr5 f816zjwvt31727K3bS37B0P5c/cGMLXSSPZsEF4VoNt3CaU638/bC/Lc40bwDE+4841t0LVOfezV 01KuZXv2Hk/X/V6+ZpbBNJy4fGMvfPfm1kvLjgL9zLuEmjpL8+pn5//hdv8C9AHkMYi2FGgAAAAA SUVORK5CYII= "
height="132"
width="375" />
</g>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Box"
style="display:inline"
transform="translate(-59.610236,-52.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 168,52.362183 129,0 c 6,0 8,2 8,8 l 0,73.999997 c 0,6 -2,8 -8,8 l -129,0 c -5.97955,0 -8,-1.93117 -8,-8 l 0,-73.999997 c 0,-6 2,-8 8,-8 z"
id="rect4940"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="211.42857"
y="169.95148"
id="text5633"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5635"
x="211.42857"
y="169.95148" /></text>
</g>
<g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="Lines"
style="display:inline"
transform="translate(-59.610236,-52.096435)">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7"
width="30"
height="30"
x="185"
y="82.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-9"
width="30"
height="30"
x="250"
y="82.362183"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 280,97.362183 140,0"
id="path8845-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 60,97.362183 123.50508,0"
id="path8845-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 215,97.362183 33.49492,0"
id="path8845-6-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 232,127.36218 28,0 c 3,0 5,-2 5,-5 l 4e-5,-8.50508"
id="path8845-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 232.55355,127.36218 0,40"
id="path5605"
inkscape:connector-curvature="0" />
<path
transform="translate(-3.509563,-1.04473)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69-6-1"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 233,127.36218 -28,0 c -3,0 -5,-2 -5,-5 l -4e-5,-8.50508"
id="path8845-1-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Text"
style="display:inline"
transform="translate(-59.610236,-52.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="232.50003"
y="70.362183"
id="text5625"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5627"
x="232.50003"
y="70.362183">(and A B)</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="232.50003"
y="184.23718"
id="text5629"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5631"
x="232.50003"
y="184.23718">data base</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="70.458138"
y="67.210915"
id="text5637"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5639"
x="70.458138"
y="67.210915"
style="line-height:129.99999523%">input stream</tspan><tspan
sodipodi:role="line"
x="70.458138"
y="84.110916"
id="tspan5641"
style="line-height:129.99999523%">of frames</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="325"
y="67.362183"
id="text5637-3"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5639-9"
x="325"
y="67.362183"
style="line-height:129.99999523%">output stream</tspan><tspan
sodipodi:role="line"
x="325"
y="84.262184"
id="tspan5641-4"
style="line-height:129.99999523%">of frames</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="200"
y="101.62485"
id="text6689"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691"
x="200"
y="101.62485">A</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="265"
y="101.62485"
id="text6689-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-9"
x="265"
y="101.62485">B</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

483
src/fig/chap4/Fig4.6.svg Normal file
View File

@ -0,0 +1,483 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="416.36417"
height="250.40875"
id="svg5767"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig4.6.svg">
<defs
id="defs5769">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5789"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5791"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5793"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5795"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5797"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5799"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5801"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5803"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker6673"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path6675"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker6673-8"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path6675-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-73"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker6673-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path6675-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-77"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-09"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="212.0505"
inkscape:cy="137.56714"
inkscape:document-units="px"
inkscape:current-layer="layer10"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid5775"
originx="-4.6102362px"
originy="-789.857px" />
</sodipodi:namedview>
<metadata
id="metadata_4.6">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 4.6</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-29.html#%_fig_4.6</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>parallel</rdf:li>
<rdf:li>query</rdf:li>
<rdf:li>frame</rdf:li>
<rdf:li>stream</rdf:li>
<rdf:li>or</rdf:li>
<rdf:li>combination</rdf:li>
<rdf:li>merge</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer9"
inkscape:label="Box"
style="display:inline"
transform="translate(-4.6102362,-12.096435)">
<path
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 108,12.362183 194,0 c 6,0 8,2 8,8 l 0,194.000007 c 0,5.99999 -2,7.99999 -8,7.99999 l -194,0 c -5.97955,0 -8,-1.93117 -8,-7.99999 l 0,-194.000007 c 0,-6 2,-8 8,-8 z"
id="rect4940-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
</g>
<g
inkscape:groupmode="layer"
id="layer11"
inkscape:label="Lines"
style="display:inline"
transform="translate(-4.6102362,-12.096435)">
<g
id="g6635"
transform="translate(35,-121.4848)"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<rect
ry="3.5433071"
rx="3.5433071"
y="218.84698"
x="195"
height="30"
width="60"
id="rect6788-7-9"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
</g>
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4"
width="30"
height="30"
x="145"
y="47.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-9-3"
width="30"
height="30"
x="185"
y="147.36218"
rx="3.5433071"
ry="3.5433071" />
<path
transform="translate(-55.982146,74)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69-6-1-2"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
transform="translate(-115.98219,-16.04473)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69-6-1-6"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 180,202.36218 -15,0 c -3,0 -5,-2 -5,-5 l -4e-5,-118.505073"
id="path8845-1-4-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 180,202.36218 15,0 c 3,0 5,-2 5,-5 l 4e-5,-18.56821"
id="path8845-1-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 120,112.36218 0,-44.999997 c 0,-3 2,-4.999995 5,-4.999995 l 18.44194,-4e-5"
id="path8845-1-4-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 120,112.36218 0,45 c 0,3 2,5 5,5 l 58.50508,4e-5"
id="path8845-1-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 175,62.362183 80,0 c 3,0 5,2 5,5 l 4e-5,28.505076"
id="path8845-1-4-88"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 215,162.36218 40,0 c 3,0 5,-2 5,-5 l 4e-5,-28.63135"
id="path8845-1-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 290,112.36218 130,0"
id="path8845-6-0-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 180,202.36218 0,45"
id="path5605-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 120,112.36218 -115,0"
id="path5605-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer10"
inkscape:label="Text"
style="display:inline"
transform="translate(-4.6102362,-12.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="260"
y="116.11977"
id="text8841-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8843-9"
x="260"
y="116.11977">merge</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="160"
y="66.624847"
id="text6689-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7"
x="160"
y="66.624847">A</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="200"
y="166.62485"
id="text6689-9-7"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-9-3"
x="200"
y="166.62485">B</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="205"
y="32.362183"
id="text5625-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5627-1"
x="205"
y="32.362183">(or A B)</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="179.5536"
y="262.36218"
id="text5629-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5631-3"
x="179.5536"
y="262.36218">data base</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="15"
y="82.362183"
id="text5637-5"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5639-90"
x="15"
y="82.362183"
style="line-height:129.99999523%">input stream</tspan><tspan
sodipodi:role="line"
x="15"
y="99.262184"
id="tspan5641-0"
style="line-height:129.99999523%">of frames</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="325"
y="82.362183"
id="text5637-3-6"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan5639-9-0"
x="325"
y="82.362183"
style="line-height:129.99999523%">output stream</tspan><tspan
sodipodi:role="line"
x="325"
y="99.262184"
id="tspan5641-4-5"
style="line-height:129.99999523%">of frames</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

1194
src/fig/chap5/Fig5.11a.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 55 KiB

1424
src/fig/chap5/Fig5.14a.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 60 KiB

451
src/fig/chap5/Fig5.15a.svg Normal file
View File

@ -0,0 +1,451 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="356.11194"
height="381.20401"
id="svg8235"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig5.15a.svg">
<defs
id="defs8237">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="221.3199"
inkscape:cy="193.64937"
inkscape:document-units="px"
inkscape:current-layer="layer7"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid8243"
originx="-28.213375px"
originy="-607.87px" />
</sodipodi:namedview>
<metadata
id="metadata_5.15">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 5.15</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-33.html#%_fig_5.15</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>garbage</rdf:li>
<rdf:li>collection</rdf:li>
<rdf:li>memory</rdf:li>
<rdf:li>reconfiguration</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Lines"
style="display:inline"
transform="translate(-28.213375,-63.288183)">
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 315,147.36218 0,-18"
id="path8845-6-0-7-0-4-6-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect8766"
width="230"
height="40"
x="95"
y="87.362183"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect8766-0"
width="230"
height="40"
x="95"
y="182.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect8766-3"
width="230"
height="40"
x="95"
y="277.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect8766-9"
width="230"
height="40"
x="95"
y="372.36218"
rx="3.5433071"
ry="3.5433071" />
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Text"
style="display:inline"
transform="translate(-28.213375,-63.288183)">
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="315"
y="159.36218"
id="text8826"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8828"
x="315"
y="159.36218">free</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 215,432.36218 0,-18"
id="path8845-6-0-7-0-4-6-6-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="215"
y="444.36218"
id="text8826-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan8828-1"
x="215"
y="444.36218">free</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="210"
y="72.362183"
id="text9368"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9370"
x="210"
y="72.362183">Just before garbage collection</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="210"
y="110.86726"
id="text9372"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9374"
x="210"
y="110.86726">mixture of useful data and garbage</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="210"
y="205.86725"
id="text9376"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9378"
x="210"
y="205.86725">free memory</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="210"
y="262.36218"
id="text9380"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9382"
x="210"
y="262.36218">Just after garbage collection</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="210"
y="300.86725"
id="text9384"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9386"
x="210"
y="300.86725">discarded memory</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="149.71429"
y="395.86725"
id="text9388"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9390"
x="149.71429"
y="395.86725">useful data</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="264.90823"
y="395.86725"
id="text9392"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9394"
x="264.90823"
y="395.86725">free area</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="340"
y="102.36218"
id="text9396"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan9398"
x="340"
y="102.36218"
style="line-height:129.99999523%">working</tspan><tspan
sodipodi:role="line"
x="340"
y="119.26218"
id="tspan9400"
style="line-height:129.99999523%">memory</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:129.99999523%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="340"
y="197.36218"
id="text9402"
sodipodi:linespacing="130%"><tspan
sodipodi:role="line"
id="tspan9404"
x="340"
y="197.36218"
style="line-height:129.99999523%">free</tspan><tspan
sodipodi:role="line"
x="340"
y="214.26218"
id="tspan9406"
style="line-height:129.99999523%">memory</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:120.00000477%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="340"
y="285.36218"
id="text9408"
sodipodi:linespacing="120%"><tspan
sodipodi:role="line"
id="tspan9410"
x="340"
y="285.36218"
style="line-height:120.00000477%">new</tspan><tspan
sodipodi:role="line"
x="340"
y="300.96219"
id="tspan9412"
style="line-height:120.00000477%">free</tspan><tspan
sodipodi:role="line"
x="340"
y="316.56219"
id="tspan9414"
style="line-height:120.00000477%">memory</tspan></text>
<text
xml:space="preserve"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:120.00000477%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Linux Biolinum O;-inkscape-font-specification:Linux Biolinum O"
x="340"
y="380.36218"
id="text9416"
sodipodi:linespacing="120%"><tspan
sodipodi:role="line"
id="tspan9418"
x="340"
y="380.36218"
style="line-height:120.00000477%">new</tspan><tspan
sodipodi:role="line"
x="340"
y="395.96219"
id="tspan9420"
style="line-height:120.00000477%">working</tspan><tspan
sodipodi:role="line"
x="340"
y="411.56219"
id="tspan9422"
style="line-height:120.00000477%">memory</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="80"
y="97.362183"
id="text9424"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9426"
x="80"
y="97.362183">the-cars</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="80"
y="123.36218"
id="text9428"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9430"
x="80"
y="123.36218">the-cdrs</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="80"
y="382.36218"
id="text9424-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9426-8"
x="80"
y="382.36218">the-cars</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="80"
y="408.36218"
id="text9428-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9430-9"
x="80"
y="408.36218">the-cdrs</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="80"
y="287.36218"
id="text9424-6"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9426-9"
x="80"
y="287.36218">new-cars</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="80"
y="313.36218"
id="text9428-36"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9430-1"
x="80"
y="313.36218">new-cdrs</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="80"
y="192.36218"
id="text9424-6-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9426-9-6"
x="80"
y="192.36218">new-cars</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="80"
y="218.36218"
id="text9428-36-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan9430-1-1"
x="80"
y="218.36218">new-cdrs</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 205,372.36218 0,40"
id="path8800"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

503
src/fig/chap5/Fig5.1a.svg Normal file
View File

@ -0,0 +1,503 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="226.15367"
height="155.53149"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig5.1a.svg"
style="display:inline">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-1"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-23"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-93"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-97"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-48"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-22"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-90"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="101.11138"
inkscape:cy="86.014138"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2985"
originx="-109.73425px"
originy="-784.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_5.1">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 5.1</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-31.html#%_fig_5.1</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>gcd</rdf:li>
<rdf:li>machine</rdf:li>
<rdf:li>data</rdf:li>
<rdf:li>path</rdf:li>
<rdf:li>register</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-109.73425,-112.09643)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 189.46447,130.89771 7.07107,-7.07107"
id="path4116"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 196.53554,130.89771 -7.07107,-7.07107"
id="path4118"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,276.1825,334.09346)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 256.46447,166.82665 7.07107,7.07107"
id="path4116-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 256.46447,173.89772 7.07107,-7.07107"
id="path4118-6"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0-9"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,53.268721,253.54468)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 189.01802,220.89771 7.07107,-7.07107"
id="path4116-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 196.08909,220.89771 -7.07107,-7.07107"
id="path4118-3"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0-97"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,275.73605,424.09346)" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4-3"
width="50"
height="30"
x="110"
y="112.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4-3-6"
width="50"
height="30"
x="225"
y="112.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 320,171.89789 0,-28.10392"
id="path8845-6-0-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 188,127.36218 -26.35714,0"
id="path8845-6-0-7-0-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 198,127.36218 27,0"
id="path4298"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 260,165.36218 0,-21.50508"
id="path8845-6-0-7-0-4-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 192.55355,202.36218 0,10"
id="path4298-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 192.55355,222.36218 0,13.50508"
id="path8845-6-0-7-0-4-7-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
d="m 260,175.36218 0,72 c 0,3 -2,5 -5,5 l -37.25254,4e-5"
id="path8845-1-4-88"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 135,142.36218 0,10 c 0,3 2,5 5,5 l 30,0 c 3,0 5,2 5,5 l 0,8.44194"
id="path8845-1-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 240,142.36218 0,10 c 0,3 -2,5 -5,5 l -20,0 c -3,0 -5,2 -5,5 l 0,8.44194"
id="path8845-1-0-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 275,127.36218 28.50508,0"
id="path8845-6-0-7-0-4-7-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 166.63135,172.36218 52,0 c 3,0 4.03782,2.87043 3,5 l -10.45669,21.4567 c -0.85996,1.76461 -2.54331,3.5433 -5.54331,3.5433 l -26,0 c -3,0 -4.68335,-1.77869 -5.54331,-3.5433 l -10.45669,-21.4567 c -1.03782,-2.12957 0,-5 3,-5 z"
id="rect6788-7-2-7-4-3-4-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4-3-4"
width="50"
height="30"
x="167.55354"
y="237.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 308,202.36218 24,0 c 3,0 4.5782,-1.97512 3,-5 l -12,-23 c -1.56821,-3 -4.41037,-2.96843 -6,0 l -12,23 c -1.5782,3.02488 0,5 3,5 z"
id="rect6788-7-2-7-4-3-4-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssccss" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path4082"
sodipodi:cx="295"
sodipodi:cy="72.362183"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 310,72.362183 c 0,8.284271 -6.71573,15 -15,15 -8.28427,0 -15,-6.715729 -15,-15 0,-8.284272 6.71573,-15 15,-15 8.28427,0 15,6.715728 15,15 z"
transform="translate(25,55)" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-109.73425,-112.09643)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="135"
y="130.91057"
id="text6689-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5"
x="135"
y="130.91057">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="250"
y="130.91057"
id="text6689-7-1-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-7"
x="250"
y="130.91057">b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="192.55354"
y="256.2677"
id="text6689-7-1-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-6"
x="192.55354"
y="256.2677">t</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="192.63135"
y="190.55341"
id="text6689-7-1-3-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-6-0"
x="192.63135"
y="190.55341">rem</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="193"
y="144.36218"
id="text4630"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4632"
x="193"
y="144.36218"
dx="0 2 2">a←b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="203.4464"
y="220.36218"
id="text4634"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4636"
x="203.4464"
y="220.36218"
dx="0 2 2">t←r</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="271"
y="173.36218"
id="text4638"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4640"
x="271"
y="173.36218"
dx="0 2 2">b←t</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="320"
y="195.36218"
id="text4051"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4053"
x="320"
y="195.36218">0</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="320"
y="130.93359"
id="text4171"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4173"
x="320"
y="130.93359">=</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

355
src/fig/chap5/Fig5.2.svg Normal file
View File

@ -0,0 +1,355 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="160.65552"
height="182.81175"
id="svg3062"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig5.2.svg">
<defs
id="defs3064">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-0"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-1"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="166.06805"
inkscape:cy="85.864488"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid3070"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-134.61024px"
originy="-734.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_5.2">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 5.2</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-31.html#%_fig_5.2</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>gcd</rdf:li>
<rdf:li>machine</rdf:li>
<rdf:li>controller</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Lines"
style="display:inline"
transform="translate(-134.61024,-134.81618)">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4"
width="34.999985"
height="34.999985"
x="-19.158587"
y="252.88261"
rx="3.5433071"
ry="3.5433071"
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4-3"
width="50"
height="30"
x="245"
y="177.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4-3-4"
width="50"
height="30"
x="245"
y="232.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4-3-2"
width="50"
height="30"
x="245"
y="287.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 190,215.71933 0,29.64285"
id="path8845-6-0-7-0-4-7-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 270,207.36218 0,23.31567"
id="path8845-6-0-7-0-4-7-6-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 270,262.36218 0,23.3788"
id="path8845-6-0-7-0-4-7-6-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 213.36417,192.36218 30.1409,0"
id="path8845-6-0-7-0-4-7-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 190,147.36218 0,20.17857"
id="path8845-6-0-7-0-4-7-6-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 245,302.36218 -105,0 c -3,0 -5,-2 -5,-5 l 0,-100 c 0,-3 2,-5 5,-5 l 25.12627,-4e-5"
id="path8845-1-4-88"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Text"
style="display:inline"
transform="translate(-134.61024,-134.81618)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="190"
y="142.36218"
id="text4364"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4366"
x="190"
y="142.36218">start</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="219.64284"
y="185.36218"
id="text4368"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4370"
x="219.64284"
y="185.36218">no</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="190"
y="258.07648"
id="text4372"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4374"
x="190"
y="258.07648">done</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="196"
y="231.36218"
id="text4376"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4378"
x="196"
y="231.36218">yes</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="190.26785"
y="195.8979"
id="text3191"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3193"
x="190.26785"
y="195.8979">=</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="270"
y="195.91057"
id="text6689-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5"
x="270"
y="195.91057"
dx="0 2 2">t←r</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="270"
y="250.91057"
id="text6689-7-1-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-7"
x="270"
y="250.91057"
dx="0 2 2">a←b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="270"
y="305.91058"
id="text6689-7-1-12"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-5"
x="270"
y="305.91058"
dx="0 2 2">b←t</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

858
src/fig/chap5/Fig5.4b.svg Normal file
View File

@ -0,0 +1,858 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="416.86734"
height="280.53149"
id="svg4401"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig5.4b.svg">
<defs
id="defs4403">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker4990"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4992"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker4994"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4996"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker4998"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5000"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5002"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5004"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5006"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5008"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker5010"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path5012"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-5"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-48"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-0"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-1"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-2"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-28"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-93"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="206.26027"
inkscape:cy="144.53877"
inkscape:document-units="px"
inkscape:current-layer="layer4"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4409"
originx="-355.34328px"
originy="-699.73425px" />
</sodipodi:namedview>
<metadata
id="metadata_5.4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 5.4</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-31.html#%_fig_5.4</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>gcd</rdf:li>
<rdf:li>machine</rdf:li>
<rdf:li>input</rdf:li>
<rdf:li>output</rdf:li>
<rdf:li>print</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Lines"
style="display:inline"
transform="translate(-355.34328,-72.096435)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 436.40564,72.362183 52,0 c 3,0 4.03782,2.87043 3,5 l -10.45669,21.4567 c -0.85996,1.764607 -2.54331,3.543297 -5.54331,3.543297 l -26,0 c -3,0 -4.68335,-1.77869 -5.54331,-3.543297 l -10.45669,-21.4567 c -1.03782,-2.12957 0,-5 3,-5 z"
id="rect6788-7-2-7-4-3-4-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 461.46447,180.89771 7.07107,-7.07107"
id="path4116"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 468.53554,180.89771 -7.07107,-7.07107"
id="path4118"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,548.1825,384.09346)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 516.46447,226.82665 7.07107,7.07107"
id="path4116-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 516.46447,233.89772 7.07107,-7.07107"
id="path4118-6"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0-9"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,313.26872,313.54468)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 459.01802,300.89771 7.07107,-7.07107"
id="path4116-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 466.08909,300.89771 -7.07107,-7.07107"
id="path4118-3"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0-97"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,545.73605,504.09346)" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4-3"
width="50"
height="30"
x="390"
y="162.36218"
rx="3.5433071"
ry="3.5433071" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4-3-6"
width="50"
height="30"
x="485"
y="162.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 575,241.89789 0,-48.16071"
id="path8845-6-0-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 460,177.36218 -18.625,0"
id="path8845-6-0-7-0-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 470,177.36218 15,0"
id="path4298"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 520,225.36218 0,-31.625"
id="path8845-6-0-7-0-4-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 462.55355,272.36218 0,20"
id="path4298-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 462.55355,302.36218 0,18.53571"
id="path8845-6-0-7-0-4-7-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
d="m 520,235.36218 0,97 c 0,3 -2,5 -5,5 l -27.26786,4e-5"
id="path8845-1-4-88"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 425,192.36218 0,20 c 0,3 2,5 5,5 l 10,0 c 3,0 5,2 5,5 l 0,18.53571"
id="path8845-1-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 500,192.36218 0,20 c 0,3 -2,5 -5,5 l -10,0 c -3,0 -5,2 -5,5 l 0,18.625"
id="path8845-1-0-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 535,177.36218 23.625,0"
id="path8845-6-0-7-0-4-7-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="rect6788-7-2-7-4-3-4"
width="50"
height="30"
x="437.55356"
y="322.36218"
rx="3.5433071"
ry="3.5433071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 436.63135,242.36218 52,0 c 3,0 4.03782,2.87043 3,5 l -10.45669,21.4567 c -0.85996,1.76461 -2.54331,3.5433 -5.54331,3.5433 l -26,0 c -3,0 -4.68335,-1.77869 -5.54331,-3.5433 l -10.45669,-21.4567 c -1.03782,-2.12957 0,-5 3,-5 z"
id="rect6788-7-2-7-4-3-4-8-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 563,272.36218 24,0 c 3,0 4.5782,-1.97512 3,-5 l -12,-23 c -1.56821,-3 -4.41037,-2.96843 -6,0 l -12,23 c -1.5782,3.02488 0,5 3,5 z"
id="rect6788-7-2-7-4-3-4-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssccss" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4082"
sodipodi:cx="295"
sodipodi:cy="72.362183"
sodipodi:rx="15"
sodipodi:ry="15"
d="m 310,72.362183 c 0,8.284271 -6.71573,15 -15,15 -8.28427,0 -15,-6.715729 -15,-15 0,-8.284272 6.71573,-15 15,-15 8.28427,0 15,6.715728 15,15 z"
transform="translate(280,105)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 359,242.36218 52,0 c 3,0 4.03782,2.87043 3,5 l -10.45669,21.4567 C 402.68335,270.58349 401,272.36218 398,272.36218 l -26,0 c -3,0 -4.68335,-1.77869 -5.54331,-3.5433 L 356,247.36218 c -1.03782,-2.12957 0,-5 3,-5 z"
id="rect6788-7-2-7-4-3-4-8-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 462,122.36218 -42,0 c -3,0 -5,2 -5,5 l -4e-5,33.53571"
id="path8845-1-0-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 463,122.36218 42,0 c 3,0 5,2 5,5 l 4e-5,33.53571"
id="path8845-1-0-4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
transform="translate(226.49492,-5.9999974)"
sodipodi:type="arc"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.0629921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
id="path9674-69-6-1-6"
sodipodi:cx="236"
sodipodi:cy="128.36218"
sodipodi:rx="1"
sodipodi:ry="1"
d="m 237,128.36218 c 0,0.55229 -0.44772,1 -1,1 -0.55228,0 -1,-0.44771 -1,-1 0,-0.55228 0.44772,-1 1,-1 0.55228,0 1,0.44772 1,1 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 405,192.36218 0,20 c 0,3 -2,5 -5,5 l -10,0 c -3,0 -5,2 -5,5 l 0,18.625"
id="path8845-1-0-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 462.49493,102.36218 0,20"
id="path4298-8-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:type="arc"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0-4-4"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,498.1825,349.09346)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 411.46447,145.89771 7.07107,-7.07106"
id="path4116-3-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 418.53554,145.89771 -7.07107,-7.07106"
id="path4118-65-6"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0-4-2"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,593.1825,349.09346)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 506.46447,145.89771 7.07107,-7.07106"
id="path4116-3-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 513.53554,145.89771 -7.07107,-7.07106"
id="path4118-65-0"
inkscape:connector-curvature="0" />
<g
style="stroke-width:0.53149605;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none"
id="g4122-0-5-8"
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,301.8175,90.6309)">
<path
inkscape:connector-curvature="0"
id="path4116-0-3-0"
d="m 205,82.362183 0,10"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4118-3-8-2"
d="m 200,87.362183 10,0"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
sodipodi:ry="5"
sodipodi:rx="5"
sodipodi:cy="87.362183"
sodipodi:cx="205"
id="path4086-0-97-1-1"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
sodipodi:type="arc" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 385,317.36218 0,-14.77679"
id="path4298-8-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 385,292.36218 0,-18.71429"
id="path8845-6-0-7-0-4-7-6-5-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-355.34328,-72.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:139.99999762%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="600"
y="82.362183"
id="text5698"
sodipodi:linespacing="140%"><tspan
sodipodi:role="line"
id="tspan5700"
x="600"
y="82.362183"
style="font-size:10px;line-height:139.99999762%"> (controller</tspan><tspan
sodipodi:role="line"
x="600"
y="96.362183"
id="tspan5702"
style="font-size:10px;line-height:139.99999762%"> gcd-loop</tspan><tspan
sodipodi:role="line"
x="600"
y="110.36218"
id="tspan5704"
style="font-size:10px;line-height:139.99999762%"> (assign a (op read))</tspan><tspan
sodipodi:role="line"
x="600"
y="124.36218"
id="tspan5706"
style="font-size:10px;line-height:139.99999762%"> (assign b (op read))</tspan><tspan
sodipodi:role="line"
x="600"
y="138.36218"
id="tspan5708"
style="font-size:10px;line-height:139.99999762%"> test-b</tspan><tspan
sodipodi:role="line"
x="600"
y="152.36218"
id="tspan5710"
style="font-size:10px;line-height:139.99999762%"> (test (op =) </tspan><tspan
sodipodi:role="line"
x="600"
y="166.36218"
id="tspan5804"
style="font-size:10px;line-height:139.99999762%"> (reg b) </tspan><tspan
sodipodi:role="line"
x="600"
y="180.36218"
id="tspan5806"
style="font-size:10px;line-height:139.99999762%"> (const 0))</tspan><tspan
sodipodi:role="line"
x="600"
y="194.36218"
id="tspan5712"
style="font-size:10px;line-height:139.99999762%"> (branch (label gcd-done))</tspan><tspan
sodipodi:role="line"
x="600"
y="208.36218"
id="tspan5714"
style="font-size:10px;line-height:139.99999762%"> (assign t </tspan><tspan
sodipodi:role="line"
x="600"
y="222.36218"
id="tspan5808"
style="font-size:10px;line-height:139.99999762%"> (op rem) </tspan><tspan
sodipodi:role="line"
x="600"
y="236.36218"
id="tspan5810"
style="font-size:10px;line-height:139.99999762%"> (reg a) </tspan><tspan
sodipodi:role="line"
x="600"
y="250.36218"
id="tspan5812"
style="font-size:10px;line-height:139.99999762%"> (reg b))</tspan><tspan
sodipodi:role="line"
x="600"
y="264.36218"
id="tspan5716"
style="font-size:10px;line-height:139.99999762%"> (assign a (reg b))</tspan><tspan
sodipodi:role="line"
x="600"
y="278.36218"
id="tspan5718"
style="font-size:10px;line-height:139.99999762%"> (assign b (reg t))</tspan><tspan
sodipodi:role="line"
x="600"
y="292.36218"
id="tspan5720"
style="font-size:10px;line-height:139.99999762%"> (goto (label test-b))</tspan><tspan
sodipodi:role="line"
x="600"
y="306.36218"
id="tspan5722"
style="font-size:10px;line-height:139.99999762%"> gcd-done</tspan><tspan
sodipodi:role="line"
x="600"
y="320.36218"
id="tspan5724"
style="font-size:10px;line-height:139.99999762%"> (perform (op print) </tspan><tspan
sodipodi:role="line"
x="600"
y="334.36218"
id="tspan5814"
style="font-size:10px;line-height:139.99999762%"> (reg a))</tspan><tspan
sodipodi:role="line"
x="600"
y="348.36218"
id="tspan5726"
style="font-size:10px;line-height:139.99999762%"> (goto (label gcd-loop)))</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="462.40564"
y="90.553406"
id="text6689-7-1-3-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-6-0"
x="462.40564"
y="90.553406">read</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="415"
y="180.91057"
id="text6689-7-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5"
x="415"
y="180.91057">a</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="510"
y="180.91057"
id="text6689-7-1-5"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-7"
x="510"
y="180.91057">b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="462.55356"
y="341.2677"
id="text6689-7-1-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-6"
x="462.55356"
y="341.2677">t</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="462.63135"
y="260.55341"
id="text6689-7-1-3-1-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-6-0-9"
x="462.63135"
y="260.55341">rem</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="465"
y="194.36218"
id="text4630"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4632"
x="465"
y="194.36218"
dx="0 2 2">a←b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="473.44641"
y="300.36218"
id="text4634"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4636"
x="473.44641"
y="300.36218"
dx="0 2 2">t←r</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="531"
y="233.36218"
id="text4638"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4640"
x="531"
y="233.36218"
dx="0 2 2">b←t</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="575"
y="265.36218"
id="text4051"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4053"
x="575"
y="265.36218">0</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="575"
y="180.93359"
id="text4171"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4173"
x="575"
y="180.93359">=</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="385"
y="260.55341"
id="text6689-7-1-3-1-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-6-0-0"
x="385"
y="260.55341">print</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="404"
y="145.36218"
id="text4630-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4632-0"
x="404"
y="145.36218"
dx="0 2 2">a←rd</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="521"
y="145.36218"
id="text4630-9-2"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4632-0-2"
x="521"
y="145.36218"
dx="0 2 2">b←rd</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="396"
y="301.36218"
id="text5516-3"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan5518-1"
x="396"
y="301.36218">P</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

1066
src/fig/chap5/Fig5.5a.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 47 KiB

991
src/fig/chap5/Fig5.7b.svg Normal file
View File

@ -0,0 +1,991 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="408.0307"
height="279.25674"
id="svg7561"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="Fig5.7b.svg">
<defs
id="defs7563">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7583"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7585"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7587"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7589"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7591"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7593"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7595"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7597"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7599"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7601"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7603"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7605"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path4415-9"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7583-7"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7585-6"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7587-9"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7589-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7591-4"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7593-3"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7595-2"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7597-4"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7599-1"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7601-8"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="marker7603-3"
style="overflow:visible">
<path
inkscape:connector-curvature="0"
id="path7605-7"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="201.42202"
inkscape:cy="133.52651"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid7569"
originx="-64.734252px"
originy="-711.009px" />
</sodipodi:namedview>
<metadata
id="metadata_5.7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>SICP Figure 5.7</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:description>Based on the diagram in Abelson, Sussman &amp; Sussman's &quot;Structure and Interpretation of Computer Programs&quot;, 2nd ed.</dc:description>
<dc:source>http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-31.html#%_fig_5.7</dc:source>
<dc:creator>
<cc:Agent>
<dc:title>Andres Raba</dc:title>
</cc:Agent>
</dc:creator>
<dc:date>2012-11-17</dc:date>
<dc:subject>
<rdf:Bag>
<rdf:li>gcd</rdf:li>
<rdf:li>machine</rdf:li>
<rdf:li>controller</rdf:li>
<rdf:li>data</rdf:li>
<rdf:li>path</rdf:li>
</rdf:Bag>
</dc:subject>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Lines"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(-64.734252,-62.096435)">
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 131.46447,80.897712 7.07107,-7.071068"
id="path4116"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 138.53554,80.897712 -7.07107,-7.071068"
id="path4118"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,218.1825,284.09346)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 186.46445,116.82665 7.07107,7.07107"
id="path4116-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 186.46445,123.89772 7.07107,-7.07107"
id="path4118-6"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0-9"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,-16.731293,203.54468)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 129.01802,185.89771 7.07107,-7.07107"
id="path4116-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 136.08909,185.89771 -7.07107,-7.07107"
id="path4118-3"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0-97"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,215.73605,389.09346)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 130,77.36218 -13.625,0"
id="path8845-6-0-7-0-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 140,77.36218 15,0"
id="path4298"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 190,115.27289 0,-21.446421"
id="path8845-6-0-7-0-4-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 132.55355,162.36218 0,15"
id="path4298-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 132.55355,187.36218 0,13.625"
id="path8845-6-0-7-0-4-7-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none"
d="m 190,125.45147 0,86.91071 c 0,3 -2,5 -5,5 l -27.17857,4e-5"
id="path8845-1-4-88"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 90,92.362183 0,14.999997 c 0,3 2,5 5,5 l 15,0 c 3,0 5,2 5,5 l 0,13.53571"
id="path8845-1-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 170,92.362183 0,14.999997 c 0,3 -2,5 -5,5 l -10,0 c -3,0 -5,2 -5,5 l 0,13.53571"
id="path8845-1-0-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend)"
d="m 205,77.36218 18.625,0"
id="path8845-6-0-7-0-4-7-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 106.63135,132.36218 52,0 c 3,0 4.03782,2.87043 3,5 l -10.45669,21.4567 c -0.85996,1.76461 -2.54331,3.5433 -5.54331,3.5433 l -26,0 c -3,0 -4.68335,-1.77869 -5.54331,-3.5433 l -10.45669,-21.4567 c -1.03782,-2.12957 0,-5 3,-5 z"
id="rect6788-7-2-7-4-3-4-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Text"
style="display:inline"
transform="translate(-64.734252,-62.096435)">
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:139.99999762%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="65"
y="251.36218"
id="text8128"
sodipodi:linespacing="140%"><tspan
sodipodi:role="line"
id="tspan8130"
x="65"
y="251.36218"
style="font-size:9px;line-height:139.99999762%">gcd-1</tspan><tspan
sodipodi:role="line"
x="65"
y="263.96219"
id="tspan8132"
style="font-size:9px;line-height:139.99999762%"> (test (op =) (reg b) (const 0))</tspan><tspan
sodipodi:role="line"
x="65"
y="276.56219"
id="tspan8134"
style="font-size:9px;line-height:139.99999762%"> (branch (label after-gcd-1))</tspan><tspan
sodipodi:role="line"
x="65"
y="289.16217"
id="tspan8136"
style="font-size:9px;line-height:139.99999762%"> (assign t (op rem) (reg a) (reg b))</tspan><tspan
sodipodi:role="line"
x="65"
y="301.76218"
id="tspan8138"
style="font-size:9px;line-height:139.99999762%"> (assign a (reg b))</tspan><tspan
sodipodi:role="line"
x="65"
y="314.36218"
id="tspan8140"
style="font-size:9px;line-height:139.99999762%"> (assign b (reg t))</tspan><tspan
sodipodi:role="line"
x="65"
y="326.96219"
id="tspan8142"
style="font-size:9px;line-height:139.99999762%"> (goto (label gcd-1))</tspan><tspan
sodipodi:role="line"
x="65"
y="339.56219"
id="tspan8162"
style="font-size:9px;line-height:139.99999762%">after-gcd-1</tspan></text>
<g
id="g3125"
transform="translate(5,10)"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<rect
ry="3.5433071"
rx="3.5433071"
y="52.362183"
x="60"
height="30"
width="50"
id="rect6788-7-2-7-4-3"
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
<text
sodipodi:linespacing="125%"
id="text6689-7-1"
y="70.910568"
x="85"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
xml:space="preserve"><tspan
y="70.910568"
x="85"
id="tspan6691-7-5"
sodipodi:role="line">a</tspan></text>
</g>
<g
id="g3131"
transform="translate(-10,10)"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<rect
ry="3.5433071"
rx="3.5433071"
y="52.362183"
x="165"
height="30"
width="50"
id="rect6788-7-2-7-4-3-6"
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
<text
sodipodi:linespacing="125%"
id="text6689-7-1-5"
y="70.910568"
x="190"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
xml:space="preserve"><tspan
y="70.910568"
x="190"
id="tspan6691-7-5-7"
sodipodi:role="line">b</tspan></text>
</g>
<g
id="g3507"
transform="translate(0,-10)"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<rect
ry="3.5433071"
rx="3.5433071"
y="212.36218"
x="107.55355"
height="30"
width="50"
id="rect6788-7-2-7-4-3-4"
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
<text
sodipodi:linespacing="125%"
id="text6689-7-1-3"
y="231.2677"
x="132.55354"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
xml:space="preserve"><tspan
y="231.2677"
x="132.55354"
id="tspan6691-7-5-6"
sodipodi:role="line">t</tspan></text>
</g>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="132.63135"
y="150.55341"
id="text6689-7-1-3-1"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-6-0"
x="132.63135"
y="150.55341">rem</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="135"
y="94.362183"
id="text4630"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4632"
x="135"
y="94.362183"
dx="0 2 2">a←b</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="143.4464"
y="185.36218"
id="text4634"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4636"
x="143.4464"
y="185.36218"
dx="0 2 2">t←r</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="201"
y="123.36218"
id="text4638"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4640"
x="201"
y="123.36218"
dx="0 2 2">b←t</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 240,131.89789 0,-38.160707"
id="path8845-6-0-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="g3143"
transform="translate(-20,0)"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<path
sodipodi:nodetypes="sssccss"
inkscape:connector-curvature="0"
id="rect6788-7-2-7-4-3-4-8-3"
d="m 248,162.36218 24,0 c 3,0 4.5782,-1.97512 3,-5 l -12,-23 c -1.56821,-3 -4.41037,-2.96843 -6,0 l -12,23 c -1.5782,3.02488 0,5 3,5 z"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
<text
sodipodi:linespacing="125%"
id="text4051"
y="155.36218"
x="260"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
xml:space="preserve"><tspan
y="155.36218"
x="260"
id="tspan4053"
sodipodi:role="line">0</tspan></text>
</g>
<g
id="g3137"
transform="translate(-20,10)"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<path
transform="translate(-35,-5)"
d="m 310,72.362183 c 0,8.284271 -6.71573,15 -15,15 -8.28427,0 -15,-6.715729 -15,-15 0,-8.284272 6.71573,-15 15,-15 8.28427,0 15,6.715728 15,15 z"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="72.362183"
sodipodi:cx="295"
id="path4082"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text4171"
y="70.933594"
x="260"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
xml:space="preserve"><tspan
y="70.933594"
x="260"
id="tspan4173"
sodipodi:role="line">=</tspan></text>
</g>
<g
transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,433.1825,284.09346)"
id="g4669-3"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<path
inkscape:connector-curvature="0"
id="path4116-01"
d="m 205,82.362183 0,10"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path4118-67"
d="m 200,87.362183 10,0"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
sodipodi:ry="5"
sodipodi:rx="5"
sodipodi:cy="87.362183"
sodipodi:cx="205"
id="path4086-0-3"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
sodipodi:type="arc" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 401.46448,116.82665 7.07107,7.07107"
id="path4116-8-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 401.46448,123.89772 7.07107,-7.07107"
id="path4118-6-1"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0-9-9"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,198.26873,203.54468)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 344.01802,185.89771 7.07107,-7.07107"
id="path4116-0-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 351.08909,185.89771 -7.07107,-7.07107"
id="path4118-3-1"
inkscape:connector-curvature="0" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4086-0-97-1"
sodipodi:cx="205"
sodipodi:cy="87.362183"
sodipodi:rx="5"
sodipodi:ry="5"
d="m 210,87.362183 c 0,2.761423 -2.23858,5 -5,5 -2.76142,0 -5,-2.238577 -5,-5 0,-2.761424 2.23858,-5 5,-5 2.76142,0 5,2.238576 5,5 z"
transform="matrix(-0.70710678,-0.70710678,0.70710678,-0.70710678,430.73605,389.09346)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 345,77.36218 -13.44643,0"
id="path8845-6-0-7-0-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 355,77.36218 15,0"
id="path4298-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 405,115.18361 0,-21.357142"
id="path8845-6-0-7-0-4-7-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 347.55355,162.36218 0,15"
id="path4298-8-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 347.55355,187.36218 0,13.53571"
id="path8845-6-0-7-0-4-7-6-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:none;display:inline"
d="m 405,125.54075 0,86.82143 c 0,3 -2,5 -5,5 l -27.17857,4e-5"
id="path8845-1-4-88-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 305,92.362183 0,14.999997 c 0,3 2,5 5,5 l 15,0 c 3,0 5,2 5,5 l 0,13.44643"
id="path8845-1-0-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 385,92.362183 0,14.999997 c 0,3 -2,5 -5,5 l -10,0 c -3,0 -5,2 -5,5 l 0,13.44643"
id="path8845-1-0-3-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 420,77.36218 18.53571,0"
id="path8845-6-0-7-0-4-7-9-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
d="m 321.63135,132.36218 52,0 c 3,0 4.03782,2.87043 3,5 l -10.45669,21.4567 c -0.85996,1.76461 -2.54331,3.5433 -5.54331,3.5433 l -26,0 c -3,0 -4.68335,-1.77869 -5.54331,-3.5433 l -10.45669,-21.4567 c -1.03782,-2.12957 0,-5 3,-5 z"
id="rect6788-7-2-7-4-3-4-8-32"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:139.99999762%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="280"
y="251.36218"
id="text8257"
sodipodi:linespacing="140%"><tspan
sodipodi:role="line"
id="tspan8259"
x="280"
y="251.36218"
style="font-size:9px;line-height:139.99999762%">gcd-2</tspan><tspan
sodipodi:role="line"
x="280"
y="263.96219"
id="tspan8261"
style="font-size:9px;line-height:139.99999762%"> (test (op =) (reg d) (const 0))</tspan><tspan
sodipodi:role="line"
x="280"
y="276.56219"
id="tspan8263"
style="font-size:9px;line-height:139.99999762%"> (branch (label after-gcd-2))</tspan><tspan
sodipodi:role="line"
x="280"
y="289.16217"
id="tspan8265"
style="font-size:9px;line-height:139.99999762%"> (assign s (op rem) (reg c) (reg d))</tspan><tspan
sodipodi:role="line"
x="280"
y="301.76218"
id="tspan8267"
style="font-size:9px;line-height:139.99999762%"> (assign c (reg d))</tspan><tspan
sodipodi:role="line"
x="280"
y="314.36218"
id="tspan8269"
style="font-size:9px;line-height:139.99999762%"> (assign d (reg s))</tspan><tspan
sodipodi:role="line"
x="280"
y="326.96219"
id="tspan8271"
style="font-size:9px;line-height:139.99999762%"> (goto (label gcd-2))</tspan><tspan
sodipodi:role="line"
x="280"
y="339.56219"
id="tspan8273"
style="font-size:9px;line-height:139.99999762%">after-gcd-2</tspan></text>
<g
id="g3161"
transform="translate(-40,10)"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<rect
ry="3.5433071"
rx="3.5433071"
y="52.362183"
x="320"
height="30"
width="50"
id="rect6788-7-2-7-4-3-7"
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
<text
sodipodi:linespacing="125%"
id="text6689-7-1-4"
y="70.910568"
x="345"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
xml:space="preserve"><tspan
y="70.910568"
x="345"
id="tspan6691-7-5-0"
sodipodi:role="line">c</tspan></text>
</g>
<g
id="g3167"
transform="translate(-55,10)"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<rect
ry="3.5433071"
rx="3.5433071"
y="52.362183"
x="425"
height="30"
width="50"
id="rect6788-7-2-7-4-3-6-3"
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
<text
sodipodi:linespacing="125%"
id="text6689-7-1-5-2"
y="70.910568"
x="450"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
xml:space="preserve"><tspan
y="70.910568"
x="450"
id="tspan6691-7-5-7-3"
sodipodi:role="line">d</tspan></text>
</g>
<g
id="g3512"
transform="translate(0,-10)"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<rect
ry="3.5433071"
rx="3.5433071"
y="212.36218"
x="322.55356"
height="30"
width="50"
id="rect6788-7-2-7-4-3-4-7"
style="fill:#e8e8e8;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
<text
sodipodi:linespacing="125%"
id="text6689-7-1-3-5"
y="231.2677"
x="347.55356"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
xml:space="preserve"><tspan
y="231.2677"
x="347.55356"
id="tspan6691-7-5-6-1"
sodipodi:role="line">s</tspan></text>
</g>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Sans"
x="347.63135"
y="150.55341"
id="text6689-7-1-3-1-4"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6691-7-5-6-0-9"
x="347.63135"
y="150.55341">rem</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="350"
y="94.362183"
id="text4630-8"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4632-7"
x="350"
y="94.362183"
dx="0 2 2">c←d</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="358.44641"
y="185.36218"
id="text4634-9"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4636-9"
x="358.44641"
y="185.36218"
dx="0 2 2">s←r</tspan></text>
<text
xml:space="preserve"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
x="416"
y="123.36218"
id="text4638-0"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4640-2"
x="416"
y="123.36218"
dx="0 2 2">d←s</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.77952754;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Mend);display:inline"
d="m 455,131.89789 0,-38.160707"
id="path8845-6-0-7-0-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="g3179"
transform="translate(-65,0)"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<path
sodipodi:nodetypes="sssccss"
inkscape:connector-curvature="0"
id="rect6788-7-2-7-4-3-4-8-3-8"
d="m 508,162.36218 24,0 c 3,0 4.5782,-1.97512 3,-5 l -12,-23 c -1.56821,-3 -4.41037,-2.96843 -6,0 l -12,23 c -1.5782,3.02488 0,5 3,5 z"
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" />
<text
sodipodi:linespacing="125%"
id="text4051-6"
y="155.36218"
x="520"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
xml:space="preserve"><tspan
y="155.36218"
x="520"
id="tspan4053-0"
sodipodi:role="line">0</tspan></text>
</g>
<g
id="g3173"
transform="translate(-65,10)"
style="stroke-width:0.53149605;stroke-miterlimit:4;stroke-dasharray:none">
<path
transform="translate(225,-5)"
d="m 310,72.362183 c 0,8.284271 -6.71573,15 -15,15 -8.28427,0 -15,-6.715729 -15,-15 0,-8.284272 6.71573,-15 15,-15 8.28427,0 15,6.715728 15,15 z"
sodipodi:ry="15"
sodipodi:rx="15"
sodipodi:cy="72.362183"
sodipodi:cx="295"
id="path4082-4"
style="fill:none;stroke:#000000;stroke-width:0.53149605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
sodipodi:type="arc" />
<text
sodipodi:linespacing="125%"
id="text4171-0"
y="70.933594"
x="520"
style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Inconsolata LGC;-inkscape-font-specification:Inconsolata LGC"
xml:space="preserve"><tspan
y="70.933594"
x="520"
id="tspan4173-7"
sodipodi:role="line">=</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 45 KiB

BIN
src/fig/chap5/chip.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg fill-opacity="1" xmlns:xlink="http://www.w3.org/1999/xlink" color-rendering="auto" color-interpolation="auto" stroke="black" text-rendering="auto" stroke-linecap="square" stroke-miterlimit="10" stroke-opacity="1" shape-rendering="auto" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" xmlns="http://www.w3.org/2000/svg" font-family="'Dialog'" font-style="normal" stroke-linejoin="miter" font-size="12" stroke-dashoffset="0" image-rendering="auto">
<!--Unicode Character 'BLACK CHESS QUEEN' (U+265B)-->
<defs id="genericDefs"/>
<g>
<g>
<path d="M200.1094 288.2812 L225.2812 261.2812 Q250.3125 234.5625 250.3125 234.7031 Q244.8281 230.0625 244.8281 222.8906 Q244.8281 216.5625 249.1875 212.2031 Q253.5469 207.8438 259.7344 207.8438 Q266.0625 207.8438 270.4219 212.2031 Q274.7812 216.5625 274.7812 222.8906 Q274.7812 229.0781 270.4219 233.4375 Q266.0625 237.7969 259.7344 237.7969 L258.0469 237.7969 L221.2031 325.6875 L221.2031 393.0469 Q221.2031 404.2969 196.3125 411.9609 Q171.4219 419.625 143.4375 419.625 Q115.3125 419.625 90.4922 411.9609 Q65.6719 404.2969 65.6719 393.0469 L65.6719 325.6875 L28.8281 237.7969 L27.1406 237.7969 Q20.8125 237.7969 16.4531 233.4375 Q12.0938 229.0781 12.0938 222.8906 Q12.0938 216.5625 16.4531 212.2031 Q20.8125 207.8438 27.1406 207.8438 Q33.3281 207.8438 37.6875 212.2031 Q42.0469 216.5625 42.0469 222.8906 Q42.0469 230.2031 36.5625 234.4219 L86.625 288.2812 L82.4062 215.1562 Q76.3594 215.1562 72 210.7266 Q67.6406 206.2969 67.6406 200.1094 Q67.6406 193.7812 72 189.4922 Q76.3594 185.2031 82.6875 185.2031 Q88.875 185.2031 93.2344 189.5625 Q97.5938 193.9219 97.5938 200.1094 Q97.5938 208.125 90.7031 212.7656 L123.3281 278.7188 L139.0781 205.3125 Q128.3906 201.9375 128.3906 190.9688 Q128.3906 184.6406 132.75 180.2812 Q137.1094 175.9219 143.4375 175.9219 Q149.625 175.9219 153.9844 180.2812 Q158.3438 184.6406 158.3438 190.9688 Q158.3438 201.9375 147.7969 205.3125 L163.5469 278.7188 L196.1719 212.7656 Q189.2812 208.5469 189.2812 200.1094 Q189.2812 193.9219 193.6406 189.5625 Q198 185.2031 204.1875 185.2031 Q210.375 185.2031 214.8047 189.5625 Q219.2344 193.9219 219.2344 200.1094 Q219.2344 206.2969 214.875 210.7266 Q210.5156 215.1562 204.4688 215.1562 L200.1094 288.2812 ZM143.4375 197.8594 Q146.25 197.8594 148.2891 195.75 Q150.3281 193.6406 150.3281 190.9688 Q150.3281 188.1562 148.2891 186.0469 Q146.25 183.9375 143.4375 183.9375 Q140.625 183.9375 138.5859 186.0469 Q136.5469 188.1562 136.5469 190.9688 Q136.5469 193.6406 138.5859 195.75 Q140.625 197.8594 143.4375 197.8594 ZM204.1875 207 Q207 207 209.0391 204.9609 Q211.0781 202.9219 211.0781 200.1094 Q211.0781 197.2969 209.0391 195.2578 Q207 193.2188 204.1875 193.2188 Q201.375 193.2188 199.3359 195.2578 Q197.2969 197.2969 197.2969 200.1094 Q197.2969 202.9219 199.3359 204.9609 Q201.375 207 204.1875 207 ZM82.6875 207 Q85.5 207 87.5391 204.9609 Q89.5781 202.9219 89.5781 200.1094 Q89.5781 197.2969 87.5391 195.2578 Q85.5 193.2188 82.6875 193.2188 Q79.875 193.2188 77.8359 195.2578 Q75.7969 197.2969 75.7969 200.1094 Q75.7969 202.9219 77.8359 204.9609 Q79.875 207 82.6875 207 ZM259.7344 229.7812 Q262.5469 229.7812 264.5859 227.7422 Q266.625 225.7031 266.625 222.8906 Q266.625 220.0781 264.5859 218.0391 Q262.5469 216 259.7344 216 Q256.9219 216 254.8828 218.0391 Q252.8438 220.0781 252.8438 222.8906 Q252.8438 225.7031 254.8828 227.7422 Q256.9219 229.7812 259.7344 229.7812 ZM27.1406 229.7812 Q29.8125 229.7812 31.9219 227.7422 Q34.0312 225.7031 34.0312 222.8906 Q34.0312 220.0781 31.9219 218.0391 Q29.8125 216 27.1406 216 Q24.3281 216 22.2188 218.0391 Q20.1094 220.0781 20.1094 222.8906 Q20.1094 225.7031 22.2188 227.7422 Q24.3281 229.7812 27.1406 229.7812 ZM213.1875 342.4219 L213.1875 330.6094 Q188.7188 313.5938 143.4375 313.5938 Q98.1562 313.5938 73.6875 330.6094 L73.6875 342.4219 Q80.8594 333 100.1953 327.3047 Q119.5312 321.6094 143.4375 321.6094 Q167.3438 321.6094 186.6797 327.3047 Q206.0156 333 213.1875 342.4219 ZM161.2969 340.0312 L143.4375 328.7812 L125.5781 340.0312 L143.4375 352.6875 L161.2969 340.0312 ZM213.1875 370.2656 L213.1875 346.6406 L202.2188 353.3906 L213.1875 370.2656 ZM84.6562 353.3906 L73.6875 346.6406 L73.6875 370.2656 L84.6562 353.3906 ZM213.1875 385.5938 L213.1875 376.5938 Q184.5 360.8438 143.4375 360.8438 Q102.375 360.8438 73.6875 376.5938 L73.6875 385.5938 Q86.0625 378 105.1172 373.4297 Q124.1719 368.8594 143.4375 368.8594 Q162.5625 368.8594 181.6172 373.4297 Q200.6719 378 213.1875 385.5938 Z" stroke="none"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

90
src/fig/icons/by.pdf Normal file
View File

@ -0,0 +1,90 @@
%PDF-1.4
%Çì<C387>¢
5 0 obj
<</Length 6 0 R/Filter /FlateDecode>>
stream
xœmTKŽÝ0 Ûû><3E>j}m£½B€N3¢÷JybgðZ¼Ež˜˜HÉ¿k#®-÷óú(ß~ôúö§´úV¤Orçê®äÊõ£¨u“ƒ˜0 <0A>êÒ©©WëFCl=i½ŠË ÖŽ/ué8‰/Wu§Ð'>¨÷<°<>Æäx<C3A4>ó!³‚ƒ°õ ™Z‡ÓÌ
®Ì1¬*“rØbæ†Z¨±‡ÔÝÅŽ¯"ÍÇFØ Ÿ`¨ì:@o4³Ü«¨<C2AB>Ät0hÄ ,ŽúRâÓÀ ¨£û°ñ¤6íÐ?ú°N@GÀd 4±~µà*¿ŠŒ¶þ;¾<>HùQ„5OR¥ËçÓЬ¦zÇ{C}SÈé ¹ÎQ5«|⧩ p'(‡ó-ç`%Š@˜•J¦Ëó¯tØ+ìÒÖò ÐÅÜ|D=MÜ1„6¦Ôj#:þH2X´Y .ÙX©¤§t6 •#yAqt<71>b Ô옄/ñiâ2S>“@%U0Òt ÝÛŒ/:e iÇVRM(z¡_­H{à;-ÿ-hÆ\[ó‰@r
ÖúŽ¡’µ ÿ"Œ±Ï)~/Ÿîýƒ<§r±ÿAvö/ˆcW{ŽXGRs—Ó!a^û¢>S_¬9†S¡ëd«9]<5D>±²<C2B1>$ŠdݹŸ2izäy_f6<66>QÃRÊ<œjàÔ'§º|ZquD¼~rt<72>f2$¯§ƒ˜’áòœÂfUk®]Ú•Uíy!κnDÑkÎÎf8ñ<38>'n$W‡1A±©èâäØ1ô¼«8_ÜUn†×>®ò·ðÈ[ø{ù Tendstream
endobj
6 0 obj
602
endobj
4 0 obj
<</Type/Page/MediaBox [0 0 56 56]
/Parent 3 0 R
/Resources<</ProcSet[/PDF]
/ExtGState 9 0 R
>>
/Contents 5 0 R
>>
endobj
3 0 obj
<< /Type /Pages /Kids [
4 0 R
] /Count 1
>>
endobj
1 0 obj
<</Type /Catalog /Pages 3 0 R
/Metadata 10 0 R
>>
endobj
7 0 obj
<</Type/ExtGState
/OPM 1>>endobj
8 0 obj
<</Type/ExtGState
/SA true>>endobj
9 0 obj
<</R8
8 0 R/R7
7 0 R>>
endobj
10 0 obj
<</Type/Metadata
/Subtype/XML/Length 1403>>stream
<?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?>
<?adobe-xap-filters esc="CRLF"?>
<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'>
<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'>
<rdf:Description rdf:about='cec7ee73-68a7-11eb-0000-420776910808' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='GPL Ghostscript 8.71'/>
<rdf:Description rdf:about='cec7ee73-68a7-11eb-0000-420776910808' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2011-02-04T20:19:09+02:00</xmp:ModifyDate>
<xmp:CreateDate>2011-02-04T20:19:09+02:00</xmp:CreateDate>
<xmp:CreatorTool>Adobe Illustrator(R) 8.0</xmp:CreatorTool></rdf:Description>
<rdf:Description rdf:about='cec7ee73-68a7-11eb-0000-420776910808' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='cec7ee73-68a7-11eb-0000-420776910808'/>
<rdf:Description rdf:about='cec7ee73-68a7-11eb-0000-420776910808' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>(by.eps)</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li>(Alex Roberts) ()</rdf:li></rdf:Seq></dc:creator></rdf:Description>
</rdf:RDF>
</x:xmpmeta>
<?xpacket end='w'?>
endstream
endobj
2 0 obj
<</Producer(GPL Ghostscript 8.71)
/CreationDate(D:20110204201909+02'00')
/ModDate(D:20110204201909+02'00')
/Creator(Adobe Illustrator\(R\) 8.0)
/Author(\(Alex Roberts\) \(\))
/Title(\(by.eps\))>>endobj
xref
0 11
0000000000 65535 f
0000000894 00000 n
0000002561 00000 n
0000000835 00000 n
0000000706 00000 n
0000000015 00000 n
0000000687 00000 n
0000000959 00000 n
0000001000 00000 n
0000001043 00000 n
0000001081 00000 n
trailer
<< /Size 11 /Root 1 0 R /Info 2 0 R
/ID [<C7971830D0B621EE68B0EF37B3D2B9B9><C7971830D0B621EE68B0EF37B3D2B9B9>]
>>
startxref
2771
%%EOF

BIN
src/fig/icons/cc.pdf Normal file

Binary file not shown.

BIN
src/fig/icons/nc.pdf Normal file

Binary file not shown.

BIN
src/fig/icons/sa.pdf Normal file

Binary file not shown.

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg fill-opacity="1" xmlns:xlink="http://www.w3.org/1999/xlink" color-rendering="auto" color-interpolation="auto" stroke="black" text-rendering="auto" stroke-linecap="square" stroke-miterlimit="10" stroke-opacity="1" shape-rendering="auto" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" xmlns="http://www.w3.org/2000/svg" font-family="'Dialog'" font-style="normal" stroke-linejoin="miter" font-size="12" stroke-dashoffset="0" image-rendering="auto">
<!--Unicode Character 'WHITE CHESS QUEEN' (U+2655)-->
<defs id="genericDefs"/>
<g>
<g>
<path d="M200.1094 288.2812 L225.2812 261.2812 Q250.3125 234.5625 250.3125 234.7031 Q244.8281 230.0625 244.8281 222.8906 Q244.8281 216.5625 249.1875 212.2031 Q253.5469 207.8438 259.7344 207.8438 Q266.0625 207.8438 270.4219 212.2031 Q274.7812 216.5625 274.7812 222.8906 Q274.7812 229.0781 270.4219 233.4375 Q266.0625 237.7969 259.7344 237.7969 L258.0469 237.7969 L221.2031 325.6875 L221.2031 393.0469 Q221.2031 404.2969 196.3125 411.9609 Q171.4219 419.625 143.4375 419.625 Q115.3125 419.625 90.4922 411.9609 Q65.6719 404.2969 65.6719 393.0469 L65.6719 325.6875 L28.8281 237.7969 L27.1406 237.7969 Q20.8125 237.7969 16.4531 233.4375 Q12.0938 229.0781 12.0938 222.8906 Q12.0938 216.5625 16.4531 212.2031 Q20.8125 207.8438 27.1406 207.8438 Q33.3281 207.8438 37.6875 212.2031 Q42.0469 216.5625 42.0469 222.8906 Q42.0469 230.2031 36.5625 234.4219 L86.625 288.2812 L82.4062 215.1562 Q76.3594 215.1562 72 210.7266 Q67.6406 206.2969 67.6406 200.1094 Q67.6406 193.7812 72 189.4922 Q76.3594 185.2031 82.6875 185.2031 Q88.875 185.2031 93.2344 189.5625 Q97.5938 193.9219 97.5938 200.1094 Q97.5938 208.125 90.7031 212.7656 L123.3281 278.7188 L139.0781 205.3125 Q128.3906 201.9375 128.3906 190.9688 Q128.3906 184.6406 132.75 180.2812 Q137.1094 175.9219 143.4375 175.9219 Q149.625 175.9219 153.9844 180.2812 Q158.3438 184.6406 158.3438 190.9688 Q158.3438 201.9375 147.7969 205.3125 L163.5469 278.7188 L196.1719 212.7656 Q189.2812 208.5469 189.2812 200.1094 Q189.2812 193.9219 193.6406 189.5625 Q198 185.2031 204.1875 185.2031 Q210.375 185.2031 214.8047 189.5625 Q219.2344 193.9219 219.2344 200.1094 Q219.2344 206.2969 214.875 210.7266 Q210.5156 215.1562 204.4688 215.1562 L200.1094 288.2812 ZM143.4375 197.8594 Q146.25 197.8594 148.2891 195.75 Q150.3281 193.6406 150.3281 190.9688 Q150.3281 188.1562 148.2891 186.0469 Q146.25 183.9375 143.4375 183.9375 Q140.625 183.9375 138.5859 186.0469 Q136.5469 188.1562 136.5469 190.9688 Q136.5469 193.6406 138.5859 195.75 Q140.625 197.8594 143.4375 197.8594 ZM204.1875 207 Q207 207 209.0391 204.9609 Q211.0781 202.9219 211.0781 200.1094 Q211.0781 197.2969 209.0391 195.2578 Q207 193.2188 204.1875 193.2188 Q201.375 193.2188 199.3359 195.2578 Q197.2969 197.2969 197.2969 200.1094 Q197.2969 202.9219 199.3359 204.9609 Q201.375 207 204.1875 207 ZM82.6875 207 Q85.5 207 87.5391 204.9609 Q89.5781 202.9219 89.5781 200.1094 Q89.5781 197.2969 87.5391 195.2578 Q85.5 193.2188 82.6875 193.2188 Q79.875 193.2188 77.8359 195.2578 Q75.7969 197.2969 75.7969 200.1094 Q75.7969 202.9219 77.8359 204.9609 Q79.875 207 82.6875 207 ZM259.7344 229.7812 Q262.5469 229.7812 264.5859 227.7422 Q266.625 225.7031 266.625 222.8906 Q266.625 220.0781 264.5859 218.0391 Q262.5469 216 259.7344 216 Q256.9219 216 254.8828 218.0391 Q252.8438 220.0781 252.8438 222.8906 Q252.8438 225.7031 254.8828 227.7422 Q256.9219 229.7812 259.7344 229.7812 ZM27.1406 229.7812 Q29.8125 229.7812 31.9219 227.7422 Q34.0312 225.7031 34.0312 222.8906 Q34.0312 220.0781 31.9219 218.0391 Q29.8125 216 27.1406 216 Q24.3281 216 22.2188 218.0391 Q20.1094 220.0781 20.1094 222.8906 Q20.1094 225.7031 22.2188 227.7422 Q24.3281 229.7812 27.1406 229.7812 ZM241.875 255.375 L190.6875 310.0781 L194.9062 233.8594 L160.4531 303.1875 L143.4375 223.1719 L126.4219 303.1875 L91.8281 233.8594 L96.1875 310.0781 L44.8594 255.375 L75.7969 329.2031 Q100.6875 313.5938 143.4375 313.5938 Q186.0469 313.5938 211.0781 329.2031 L241.875 255.375 ZM213.1875 376.5938 L213.1875 370.2656 L202.2188 353.3906 L213.1875 346.6406 L213.1875 342.4219 Q206.0156 333 186.6797 327.3047 Q167.3438 321.6094 143.4375 321.6094 Q119.5312 321.6094 100.1953 327.3047 Q80.8594 333 73.6875 342.4219 L73.6875 346.6406 L84.6562 353.3906 L73.6875 370.2656 L73.6875 376.5938 Q102.375 360.8438 143.4375 360.8438 Q184.5 360.8438 213.1875 376.5938 ZM161.2969 340.0312 L143.4375 352.6875 L125.5781 340.0312 L143.4375 328.7812 L161.2969 340.0312 ZM143.4375 411.4688 Q164.3906 411.4688 188.7891 404.7891 Q213.1875 398.1094 213.1875 390.2344 Q213.1875 383.2031 191.0391 376.0312 Q168.8906 368.8594 143.4375 368.8594 Q117.9844 368.8594 95.8359 376.0312 Q73.6875 383.2031 73.6875 390.2344 Q73.6875 398.1094 98.0859 404.7891 Q122.4844 411.4688 143.4375 411.4688 Z" stroke="none"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

Some files were not shown because too many files have changed in this diff Show More