parent
ce10ad568a
commit
9213a8ba54
@ -0,0 +1,246 @@
|
||||
\documentclass[11pt]{scrartcl}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
\usepackage{amsmath}
|
||||
\usepackage{enumerate}
|
||||
\usepackage{latexsym}
|
||||
%\usepackage{amssymb}
|
||||
\usepackage{multicol}
|
||||
%\usepackage{booktabs}
|
||||
%\usepackage{pstricks}
|
||||
%\usepackage{pst-node}
|
||||
\usepackage[paper=a4paper,left=30mm,right=20mm,top=20mm,bottom =25mm]{geometry}
|
||||
\usepackage[
|
||||
pdftitle={Uebungsblatt 4: Graphentheorie - AlgoDS2},
|
||||
pdfsubject={Algorithmen und Datenstrukturen 2; Uebungsblatt 4: Graphentheorie},
|
||||
pdfauthor={Thomas Battermann},
|
||||
pdfkeywords={Uebungsblatt 4: Graphentheorie - AlgoDS2},
|
||||
pdfborder={0 0 0}
|
||||
]{hyperref}
|
||||
|
||||
\usepackage{listings}
|
||||
|
||||
|
||||
\lstset{
|
||||
language=Java,
|
||||
basicstyle=\ttfamily,
|
||||
keywordstyle=\color{red},
|
||||
commentstyle=\color{blue},
|
||||
stringstyle=\color{darkgreen},
|
||||
backgroundcolor=\color{lightgray},
|
||||
morecomment=[s][\color{blue}]{/*}{*/},
|
||||
emphstyle=\textbf,
|
||||
frame=single,
|
||||
showstringspaces=true,
|
||||
breaklines=true,
|
||||
numberstyle=\textcolor{grey},
|
||||
numbers=left,
|
||||
morekeywords={Merge,ExtractMinimum,Union,NIL,return,and,InvertChildren,then,to},
|
||||
tabsize=4,
|
||||
captionpos=b
|
||||
}
|
||||
|
||||
|
||||
\usepackage{tabularx}
|
||||
\usepackage{graphicx}
|
||||
\usepackage[usenames,dvipsnames]{color}
|
||||
\definecolor{grey}{rgb}{0.5,0.5,0.5}
|
||||
\definecolor{lightgray}{rgb}{0.9,0.9,0.9}
|
||||
\definecolor{darkgreen}{rgb}{0.0,0.4,0.0}
|
||||
\usepackage{lastpage}
|
||||
\usepackage{fancyhdr}
|
||||
\setlength{\parindent}{0ex}
|
||||
\setlength{\parskip}{2ex}
|
||||
\setcounter{secnumdepth}{4}
|
||||
\setcounter{tocdepth}{4}
|
||||
\definecolor{darkgreen}{rgb}{0,0.5,0}
|
||||
\definecolor{darkblue}{rgb}{0,0,0.5}
|
||||
|
||||
\pagestyle{fancy} %eigener Seitenstil
|
||||
\fancyhf{} %alle Kopf- und Fußzeilenfelder bereinigen
|
||||
\fancyhead[L]{Übungsblatt 4\\Graphentheorie} %Kopfzeile links
|
||||
\fancyhead[C]{} %zentrierte Kopfzeile
|
||||
\fancyhead[R]{\textsc{Algorithmen \& Datenstrukturen 2}\\12. Januar 2011} %Kopfzeile rechts
|
||||
\renewcommand{\headrulewidth}{0.4pt} %obere Trennlinie
|
||||
\fancyfoot[C]{Seite \thepage\ von \pageref{LastPage}}
|
||||
\renewcommand{\footrulewidth}{0.4pt} %untere Trennlinie
|
||||
|
||||
\newcommand{\spa}{\hspace*{4mm}}
|
||||
\newcommand{\defin}{\textcolor{darkgreen}{\textbf{Def.: }}}
|
||||
\newcommand{\rrfloor}{\right\rfloor}
|
||||
\newcommand{\llfloor}{\left\lfloor}
|
||||
|
||||
|
||||
\title{Übung Graphentheorie 1 -- AlgoDS2}
|
||||
\author{Thomas Battermann}
|
||||
\date{12. Januar 2011}
|
||||
|
||||
\begin{document}
|
||||
\pagestyle{fancy}
|
||||
|
||||
\section*{Aufgabe 1}
|
||||
\addcontentsline{toc}{section}{Aufgabe 1}
|
||||
|
||||
\subsection*{a)}
|
||||
\addcontentsline{toc}{subsection}{a)}
|
||||
|
||||
\includegraphics{bilder/1a.eps}
|
||||
|
||||
\begin{tabular}{c|c|c|c|c|c|c|c|c|c|c}
|
||||
a&q&s&t&w&v&x&y&z&r&u\\\hline
|
||||
$d(a)$ & 0&1&1&1&2&2&2&3&$\infty$&$\infty$\\\hline
|
||||
$\pi(a)$ & -&q&q&q&s&t&t&x&-&-
|
||||
\end{tabular}
|
||||
|
||||
\subsection*{b)}
|
||||
\addcontentsline{toc}{subsection}{b)}
|
||||
|
||||
Vorgängergraph:\\
|
||||
\includegraphics{bilder/1b.eps}
|
||||
|
||||
\subsection*{c)}
|
||||
\addcontentsline{toc}{subsection}{c)}
|
||||
|
||||
\includegraphics{bilder/1c.eps}
|
||||
|
||||
|
||||
\section*{Aufgabe 2}
|
||||
\addcontentsline{toc}{section}{Aufgabe 2}
|
||||
|
||||
\subsection*{a)}
|
||||
\addcontentsline{toc}{subsection}{a)}
|
||||
|
||||
Kante \((u,v) \in E \)
|
||||
|
||||
Angenommen $(u,v)$ ist eine TreeEdge (\textcolor{Red}{ForwardEdge})\\
|
||||
\begin{itemize}
|
||||
\item[$\Rightarrow$] In der Tiefensuche wird $v$ von $u$ aus entdeckt.
|
||||
\item[$\Rightarrow$] $v$ ist ein Nachkomme von $u$ im Tiefensuchebaum
|
||||
\item[$\Rightarrow$] Verschachtelungssatz:\\
|
||||
\( d[u] < d[v] < f[v] < f[u] \)
|
||||
\end{itemize}
|
||||
|
||||
\('\Rightarrow'\) Angenommen \( d[u] < d[v] < f[v] < f[u] \)
|
||||
\begin{itemize}
|
||||
\item[$\Rightarrow$] Verschachtelungssatz:\\
|
||||
$v$ ist ein Nachkomme von $u$ um selben Tiefensuchebaum.\\
|
||||
\begin{itemize}
|
||||
\item[Fall 1:]
|
||||
$v$ wurde von $u$ aus entdeckt $\Rightarrow (u,v)$ TreeEdge
|
||||
\item[Fall 2:]
|
||||
$v$ wurde nicht von $u$ aus entdeckt $\Rightarrow (u,v)$ ForwardEdge
|
||||
\end{itemize}
|
||||
\end{itemize}
|
||||
|
||||
\subsection*{b)}
|
||||
\addcontentsline{toc}{subsection}{b)}
|
||||
|
||||
$'\Rightarrow'$ Angenommen $(u,v)$ ist eine BackEdge\\
|
||||
d.\,h. $u$ ist ein Nachfolger von $v$ im selben Tiefesuchebaum\\
|
||||
$\Leftrightarrow$ Verschachtelungssatz \( d[v] < d[u] < f[u] y f[v] \)
|
||||
|
||||
\includegraphics{bilder/2b.eps}
|
||||
|
||||
\subsection*{c)}
|
||||
\addcontentsline{toc}{subsection}{c)}
|
||||
|
||||
\includegraphics{bilder/2c.eps}
|
||||
|
||||
$'\Rightarrow': (u,v)$ CrossEdge
|
||||
|
||||
Also sind $u$ und $v$ in verschiedenen Tiefensuchebäumen.
|
||||
|
||||
\(\Rightarrow\) $v$ muss vor $u$ in der Tiefensuche entdeckt worden sein.\\
|
||||
\(\Rightarrow d[v] < f[v] < d[u] < f[u] \)\\
|
||||
\(\Leftarrow\) Angenommen: \( d[v] < f[v] < d[u] < f[u] \)\\
|
||||
\(\Rightarrow\) Verschachtelungssatz: $u$ und $v$ sind in zwei verschiedenen TS-Bäumen\\
|
||||
\(\Rightarrow (u,v) \) ist CrossEdge
|
||||
|
||||
\section*{Aufgabe 3}
|
||||
\addcontentsline{toc}{section}{Aufgabe 3}
|
||||
|
||||
Laufzeit: \( O(\|\|V\|\|^2) \)\\
|
||||
sowohl Breitensuche und Tiefensuche
|
||||
|
||||
$\Rightarrow$ Es müssen alle Spalten/Zeilen durchgegangen werden.
|
||||
|
||||
\section*{Aufgabe 4}
|
||||
\addcontentsline{toc}{section}{Aufgabe 4}
|
||||
|
||||
Annahme: \includegraphics{bilder/4.eps}
|
||||
|
||||
Behauptung: Jede Tiefensuche liefert $d[v] < f[u]$ als Ergebnis.
|
||||
|
||||
Betrachte eine beliebige Tiefensuche zu dem Zeitpunkt, an dem $v$ entdeckt wird.
|
||||
|
||||
\underline{Fall 1:} $u$ wurde vor $v$ entdeckt\\
|
||||
Weißer Pfadsatz: $v$ ist ein Nachfolger von u \(\to d[v] < f[u]\)
|
||||
|
||||
\underline{Fall 2:} $u$ wurde noch nicht entdeckt:\\
|
||||
\begin{enumerate}[a)]
|
||||
\item \(v\overset{P}{\leadsto}u \Rightarrow u\) Nachkomme von $v$\\
|
||||
Verschachtelungssatz: \( d[v] < d[u] < f[u] < f[v] \)
|
||||
\item $u$ ist von $v$ aus nicht erreichbar.\\
|
||||
Also wird $v$ komplett abgearbeitet, bevor $u$ entdeckt wird:\\
|
||||
\( d[v] < f[v] < d[u] < f[u] \)
|
||||
\end{enumerate}
|
||||
|
||||
|
||||
\section*{Aufgabe 5}
|
||||
\addcontentsline{toc}{section}{Aufgabe 5}
|
||||
|
||||
Graph $G=(V,E)$ (gerichtet)\\
|
||||
$E^T = \{ (v,u) \mid (u,v) \in E \}$
|
||||
|
||||
\begin{lstlisting}[frame=single]
|
||||
MatrixTranspose(a):
|
||||
n = size(a)
|
||||
for i:= 1 to n do
|
||||
for j:= 1 to n do
|
||||
B[i][j] = A[j][i]
|
||||
return B
|
||||
\end{lstlisting}
|
||||
|
||||
Laufzeit: \( \Theta(n^2)\)
|
||||
|
||||
\begin{lstlisting}[frame=single]
|
||||
ListTranspose(G=(V,E)):
|
||||
Erzeuge einen leeren Graphen G2 mit der Knotenmenge V
|
||||
for jeden Knoten u in V do
|
||||
for jeden Knoten v in Adj[u] do
|
||||
Fuege Kante (v,u) zu G2 hinzu
|
||||
return G2
|
||||
\end{lstlisting}
|
||||
|
||||
Laufzeit: \( O(\|V\| + \|E\| ) \)
|
||||
|
||||
|
||||
\section*{Aufgabe 6}
|
||||
\addcontentsline{toc}{section}{Aufgabe 6}
|
||||
|
||||
\includegraphics{bilder/6.eps}
|
||||
|
||||
\underline{Ansatz:} Führe Tiefensuche durch und speichere die benutzten Kanten in einer Liste.
|
||||
|
||||
\begin{lstlisting}[frame=single]
|
||||
Search(G,s):
|
||||
for each v in V do
|
||||
color[v] := WHITE
|
||||
Initialisiere die Liste p
|
||||
Visit(G,s,p)
|
||||
\end{lstlisting}
|
||||
|
||||
\begin{lstlisting}[frame=single]
|
||||
Visit(G,v,p):
|
||||
color[v] := GRAY
|
||||
Haenge v an das Ende von p
|
||||
for each u in Neighbour(v) do
|
||||
if color[u] = WHITE then
|
||||
Visit(G,u,p)
|
||||
Haenge v an das Ende von P
|
||||
else if color[u] = GRAY then
|
||||
Haenge (u,v) an das Ende von p
|
||||
color[v] := BLACK
|
||||
\end{lstlisting}
|
||||
|
||||
\end{document}
|
@ -0,0 +1,339 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||
<ipe version="70005" creator="Ipe 7.1.1">
|
||||
<info created="D:20120116133028" modified="D:20120116134407"/>
|
||||
<ipestyle name="basic">
|
||||
<symbol name="arrow/arc(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/farc(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/circle(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/disk(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
0.5 0 0 0.5 0 0 e
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/box(sx)" transformations="translations">
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/square(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
-0.5 -0.5 m
|
||||
0.5 -0.5 l
|
||||
0.5 0.5 l
|
||||
-0.5 0.5 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/cross(sx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 -0.57 m
|
||||
0.57 0.43 l
|
||||
0.43 0.57 l
|
||||
-0.57 -0.43 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 0.57 m
|
||||
0.57 -0.43 l
|
||||
0.43 -0.57 l
|
||||
-0.57 0.43 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="arrow/fnormal(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/pointed(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fpointed(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/linear(spx)">
|
||||
<path stroke="sym-stroke" pen="sym-pen">
|
||||
-1 0.333 m
|
||||
0 0 l
|
||||
-1 -0.333 l
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fdouble(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/double(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<pen name="heavier" value="0.8"/>
|
||||
<pen name="fat" value="1.2"/>
|
||||
<pen name="ultrafat" value="2"/>
|
||||
<symbolsize name="large" value="5"/>
|
||||
<symbolsize name="small" value="2"/>
|
||||
<symbolsize name="tiny" value="1.1"/>
|
||||
<arrowsize name="large" value="10"/>
|
||||
<arrowsize name="small" value="5"/>
|
||||
<arrowsize name="tiny" value="3"/>
|
||||
<color name="red" value="1 0 0"/>
|
||||
<color name="green" value="0 1 0"/>
|
||||
<color name="blue" value="0 0 1"/>
|
||||
<color name="yellow" value="1 1 0"/>
|
||||
<color name="orange" value="1 0.647 0"/>
|
||||
<color name="gold" value="1 0.843 0"/>
|
||||
<color name="purple" value="0.627 0.125 0.941"/>
|
||||
<color name="gray" value="0.745"/>
|
||||
<color name="brown" value="0.647 0.165 0.165"/>
|
||||
<color name="navy" value="0 0 0.502"/>
|
||||
<color name="pink" value="1 0.753 0.796"/>
|
||||
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||
<color name="violet" value="0.933 0.51 0.933"/>
|
||||
<color name="darkblue" value="0 0 0.545"/>
|
||||
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||
<color name="darkgray" value="0.663"/>
|
||||
<color name="darkgreen" value="0 0.392 0"/>
|
||||
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||
<color name="darkorange" value="1 0.549 0"/>
|
||||
<color name="darkred" value="0.545 0 0"/>
|
||||
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||
<color name="lightcyan" value="0.878 1 1"/>
|
||||
<color name="lightgray" value="0.827"/>
|
||||
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||
<color name="lightyellow" value="1 1 0.878"/>
|
||||
<dashstyle name="dashed" value="[4] 0"/>
|
||||
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||
<textsize name="large" value="\large"/>
|
||||
<textsize name="Large" value="\Large"/>
|
||||
<textsize name="LARGE" value="\LARGE"/>
|
||||
<textsize name="huge" value="\huge"/>
|
||||
<textsize name="Huge" value="\Huge"/>
|
||||
<textsize name="small" value="\small"/>
|
||||
<textsize name="footnote" value="\footnotesize"/>
|
||||
<textsize name="tiny" value="\tiny"/>
|
||||
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||
<gridsize name="4 pts" value="4"/>
|
||||
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||
<anglesize name="90 deg" value="90"/>
|
||||
<anglesize name="60 deg" value="60"/>
|
||||
<anglesize name="45 deg" value="45"/>
|
||||
<anglesize name="30 deg" value="30"/>
|
||||
<anglesize name="22.5 deg" value="22.5"/>
|
||||
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||
</ipestyle>
|
||||
<page>
|
||||
<layer name="alpha"/>
|
||||
<view layers="alpha" active="alpha"/>
|
||||
<text layer="alpha" transformations="translations" pos="128 704" stroke="black" type="label" width="5.258" height="4.297" depth="1.93" halign="center" valign="center">q</text>
|
||||
<text transformations="translations" pos="64 640" stroke="black" type="label" width="3.93" height="4.289" depth="0" halign="center" valign="center">s</text>
|
||||
<text transformations="translations" pos="192 640" stroke="black" type="label" width="7.195" height="4.289" depth="0" halign="center" valign="center">w</text>
|
||||
<text transformations="translations" pos="128 576" stroke="black" type="label" width="5.258" height="4.289" depth="0" halign="center" valign="center">v</text>
|
||||
<text transformations="translations" pos="256 704" stroke="black" type="label" width="3.874" height="6.128" depth="0" halign="center" valign="center">t</text>
|
||||
<text transformations="translations" pos="320 640" stroke="black" type="label" width="5.258" height="4.289" depth="0" halign="center" valign="center">x</text>
|
||||
<text transformations="translations" pos="320 576" stroke="black" type="label" width="4.428" height="4.289" depth="0" halign="center" valign="center">z</text>
|
||||
<text transformations="translations" pos="320 704" stroke="black" type="label" width="5.258" height="4.297" depth="1.93" halign="center" valign="center">y</text>
|
||||
<text transformations="translations" pos="384 704" stroke="black" type="label" halign="center" valign="center">r</text>
|
||||
<text transformations="translations" pos="384 640" stroke="black" type="label" width="5.535" height="4.289" depth="0" halign="center" valign="center">u</text>
|
||||
<path stroke="black">
|
||||
8 0 0 8 64 640 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 128 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 192 640 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 128 576 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 256 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 320 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 320 640 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 320 576 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 384 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 384 640 e
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
184 640 m
|
||||
72 640 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
122.343 698.343 m
|
||||
69.6569 645.657 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
133.657 698.343 m
|
||||
186.343 645.657 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
69.6569 634.343 m
|
||||
122.343 581.657 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
133.657 581.657 m
|
||||
186.343 634.343 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
136 704 m
|
||||
248 704 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
264 704 m
|
||||
312 704 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
320 632 m
|
||||
320 584 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
376 704 m
|
||||
328 704 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
384 696 m
|
||||
384 648 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
378.343 645.657 m
|
||||
325.657 698.343 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
261.657 698.343 m
|
||||
314.343 645.657 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
314.343 581.657 m
|
||||
304 608
|
||||
314.343 634.343 s
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
325.657 581.657 m
|
||||
344 640
|
||||
323.578 696.845 s
|
||||
</path>
|
||||
<path stroke="black" rarrow="normal/normal">
|
||||
133.657 709.657 m
|
||||
224 728
|
||||
314.343 709.657 s
|
||||
</path>
|
||||
</page>
|
||||
</ipe>
|
@ -0,0 +1,296 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||
<ipe version="70005" creator="Ipe 7.1.1">
|
||||
<info created="D:20120116133904" modified="D:20120116133904"/>
|
||||
<ipestyle name="basic">
|
||||
<symbol name="arrow/arc(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/farc(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/circle(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/disk(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
0.5 0 0 0.5 0 0 e
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/box(sx)" transformations="translations">
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/square(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
-0.5 -0.5 m
|
||||
0.5 -0.5 l
|
||||
0.5 0.5 l
|
||||
-0.5 0.5 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/cross(sx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 -0.57 m
|
||||
0.57 0.43 l
|
||||
0.43 0.57 l
|
||||
-0.57 -0.43 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 0.57 m
|
||||
0.57 -0.43 l
|
||||
0.43 -0.57 l
|
||||
-0.57 0.43 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="arrow/fnormal(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/pointed(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fpointed(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/linear(spx)">
|
||||
<path stroke="sym-stroke" pen="sym-pen">
|
||||
-1 0.333 m
|
||||
0 0 l
|
||||
-1 -0.333 l
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fdouble(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/double(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<pen name="heavier" value="0.8"/>
|
||||
<pen name="fat" value="1.2"/>
|
||||
<pen name="ultrafat" value="2"/>
|
||||
<symbolsize name="large" value="5"/>
|
||||
<symbolsize name="small" value="2"/>
|
||||
<symbolsize name="tiny" value="1.1"/>
|
||||
<arrowsize name="large" value="10"/>
|
||||
<arrowsize name="small" value="5"/>
|
||||
<arrowsize name="tiny" value="3"/>
|
||||
<color name="red" value="1 0 0"/>
|
||||
<color name="green" value="0 1 0"/>
|
||||
<color name="blue" value="0 0 1"/>
|
||||
<color name="yellow" value="1 1 0"/>
|
||||
<color name="orange" value="1 0.647 0"/>
|
||||
<color name="gold" value="1 0.843 0"/>
|
||||
<color name="purple" value="0.627 0.125 0.941"/>
|
||||
<color name="gray" value="0.745"/>
|
||||
<color name="brown" value="0.647 0.165 0.165"/>
|
||||
<color name="navy" value="0 0 0.502"/>
|
||||
<color name="pink" value="1 0.753 0.796"/>
|
||||
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||
<color name="violet" value="0.933 0.51 0.933"/>
|
||||
<color name="darkblue" value="0 0 0.545"/>
|
||||
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||
<color name="darkgray" value="0.663"/>
|
||||
<color name="darkgreen" value="0 0.392 0"/>
|
||||
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||
<color name="darkorange" value="1 0.549 0"/>
|
||||
<color name="darkred" value="0.545 0 0"/>
|
||||
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||
<color name="lightcyan" value="0.878 1 1"/>
|
||||
<color name="lightgray" value="0.827"/>
|
||||
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||
<color name="lightyellow" value="1 1 0.878"/>
|
||||
<dashstyle name="dashed" value="[4] 0"/>
|
||||
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||
<textsize name="large" value="\large"/>
|
||||
<textsize name="Large" value="\Large"/>
|
||||
<textsize name="LARGE" value="\LARGE"/>
|
||||
<textsize name="huge" value="\huge"/>
|
||||
<textsize name="Huge" value="\Huge"/>
|
||||
<textsize name="small" value="\small"/>
|
||||
<textsize name="footnote" value="\footnotesize"/>
|
||||
<textsize name="tiny" value="\tiny"/>
|
||||
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||
<gridsize name="4 pts" value="4"/>
|
||||
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||
<anglesize name="90 deg" value="90"/>
|
||||
<anglesize name="60 deg" value="60"/>
|
||||
<anglesize name="45 deg" value="45"/>
|
||||
<anglesize name="30 deg" value="30"/>
|
||||
<anglesize name="22.5 deg" value="22.5"/>
|
||||
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||
</ipestyle>
|
||||
<page>
|
||||
<layer name="alpha"/>
|
||||
<view layers="alpha" active="alpha"/>
|
||||
<text layer="alpha" transformations="translations" pos="192 768" stroke="black" type="label" width="5.258" height="4.297" depth="1.93" halign="center" valign="center">q</text>
|
||||
<text transformations="translations" pos="128 704" stroke="black" type="label" width="3.93" height="4.289" depth="0" halign="center" valign="center">s</text>
|
||||
<text transformations="translations" pos="192 704" stroke="black" type="label" width="3.874" height="6.128" depth="0" halign="center" valign="center">t</text>
|
||||
<text transformations="translations" pos="256 704" stroke="black" type="label" width="7.195" height="4.289" depth="0" halign="center" valign="center">w</text>
|
||||
<text transformations="translations" pos="160 640" stroke="black" type="label" width="5.258" height="4.289" depth="0" halign="center" valign="center">x</text>
|
||||
<text transformations="translations" pos="224 640" stroke="black" type="label" width="5.258" height="4.297" depth="1.93" halign="center" valign="center">y</text>
|
||||
<text transformations="translations" pos="160 576" stroke="black" type="label" width="4.428" height="4.289" depth="0" halign="center" valign="center">z</text>
|
||||
<text transformations="translations" pos="96 640" stroke="black" type="label" width="5.258" height="4.289" depth="0" halign="center" valign="center">v</text>
|
||||
<path stroke="black">
|
||||
8 0 0 8 192 768 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 192 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 128 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 96 640 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 160 640 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 224 640 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 256 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 160 576 e
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
192 760 m
|
||||
192 712 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
197.657 762.343 m
|
||||
250.343 709.657 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
186.343 762.343 m
|
||||
133.657 709.657 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
124.422 696.845 m
|
||||
99.5777 647.155 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
188.422 696.845 m
|
||||
163.578 647.155 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
195.578 696.845 m
|
||||
220.422 647.155 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
160 632 m
|
||||
160 584 l
|
||||
</path>
|
||||
</page>
|
||||
</ipe>
|
@ -0,0 +1,349 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||
<ipe version="70005" creator="Ipe 7.1.1">
|
||||
<info created="D:20120116133028" modified="D:20120116134423"/>
|
||||
<ipestyle name="basic">
|
||||
<symbol name="arrow/arc(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/farc(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/circle(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/disk(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
0.5 0 0 0.5 0 0 e
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/box(sx)" transformations="translations">
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/square(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
-0.5 -0.5 m
|
||||
0.5 -0.5 l
|
||||
0.5 0.5 l
|
||||
-0.5 0.5 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/cross(sx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 -0.57 m
|
||||
0.57 0.43 l
|
||||
0.43 0.57 l
|
||||
-0.57 -0.43 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 0.57 m
|
||||
0.57 -0.43 l
|
||||
0.43 -0.57 l
|
||||
-0.57 0.43 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="arrow/fnormal(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/pointed(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fpointed(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/linear(spx)">
|
||||
<path stroke="sym-stroke" pen="sym-pen">
|
||||
-1 0.333 m
|
||||
0 0 l
|
||||
-1 -0.333 l
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fdouble(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/double(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<pen name="heavier" value="0.8"/>
|
||||
<pen name="fat" value="1.2"/>
|
||||
<pen name="ultrafat" value="2"/>
|
||||
<symbolsize name="large" value="5"/>
|
||||
<symbolsize name="small" value="2"/>
|
||||
<symbolsize name="tiny" value="1.1"/>
|
||||
<arrowsize name="large" value="10"/>
|
||||
<arrowsize name="small" value="5"/>
|
||||
<arrowsize name="tiny" value="3"/>
|
||||
<color name="red" value="1 0 0"/>
|
||||
<color name="green" value="0 1 0"/>
|
||||
<color name="blue" value="0 0 1"/>
|
||||
<color name="yellow" value="1 1 0"/>
|
||||
<color name="orange" value="1 0.647 0"/>
|
||||
<color name="gold" value="1 0.843 0"/>
|
||||
<color name="purple" value="0.627 0.125 0.941"/>
|
||||
<color name="gray" value="0.745"/>
|
||||
<color name="brown" value="0.647 0.165 0.165"/>
|
||||
<color name="navy" value="0 0 0.502"/>
|
||||
<color name="pink" value="1 0.753 0.796"/>
|
||||
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||
<color name="violet" value="0.933 0.51 0.933"/>
|
||||
<color name="darkblue" value="0 0 0.545"/>
|
||||
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||
<color name="darkgray" value="0.663"/>
|
||||
<color name="darkgreen" value="0 0.392 0"/>
|
||||
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||
<color name="darkorange" value="1 0.549 0"/>
|
||||
<color name="darkred" value="0.545 0 0"/>
|
||||
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||
<color name="lightcyan" value="0.878 1 1"/>
|
||||
<color name="lightgray" value="0.827"/>
|
||||
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||
<color name="lightyellow" value="1 1 0.878"/>
|
||||
<dashstyle name="dashed" value="[4] 0"/>
|
||||
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||
<textsize name="large" value="\large"/>
|
||||
<textsize name="Large" value="\Large"/>
|
||||
<textsize name="LARGE" value="\LARGE"/>
|
||||
<textsize name="huge" value="\huge"/>
|
||||
<textsize name="Huge" value="\Huge"/>
|
||||
<textsize name="small" value="\small"/>
|
||||
<textsize name="footnote" value="\footnotesize"/>
|
||||
<textsize name="tiny" value="\tiny"/>
|
||||
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||
<gridsize name="4 pts" value="4"/>
|
||||
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||
<anglesize name="90 deg" value="90"/>
|
||||
<anglesize name="60 deg" value="60"/>
|
||||
<anglesize name="45 deg" value="45"/>
|
||||
<anglesize name="30 deg" value="30"/>
|
||||
<anglesize name="22.5 deg" value="22.5"/>
|
||||
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||
</ipestyle>
|
||||
<page>
|
||||
<layer name="alpha"/>
|
||||
<view layers="alpha" active="alpha"/>
|
||||
<text layer="alpha" transformations="translations" pos="128 704" stroke="black" type="label" width="5.258" height="4.297" depth="1.93" halign="center" valign="center">q</text>
|
||||
<text transformations="translations" pos="64 640" stroke="black" type="label" width="3.93" height="4.289" depth="0" halign="center" valign="center">s</text>
|
||||
<text transformations="translations" pos="192 640" stroke="black" type="label" width="7.195" height="4.289" depth="0" halign="center" valign="center">w</text>
|
||||
<text transformations="translations" pos="128 576" stroke="black" type="label" width="5.258" height="4.289" depth="0" halign="center" valign="center">v</text>
|
||||
<text transformations="translations" pos="256 704" stroke="black" type="label" width="3.874" height="6.128" depth="0" halign="center" valign="center">t</text>
|
||||
<text transformations="translations" pos="320 640" stroke="black" type="label" width="5.258" height="4.289" depth="0" halign="center" valign="center">x</text>
|
||||
<text transformations="translations" pos="320 576" stroke="black" type="label" width="4.428" height="4.289" depth="0" halign="center" valign="center">z</text>
|
||||
<text transformations="translations" pos="320 704" stroke="black" type="label" width="5.258" height="4.297" depth="1.93" halign="center" valign="center">y</text>
|
||||
<text transformations="translations" pos="384 704" stroke="black" type="label" width="3.902" height="4.289" depth="0" halign="center" valign="center">r</text>
|
||||
<text transformations="translations" pos="384 640" stroke="black" type="label" width="5.535" height="4.289" depth="0" halign="center" valign="center">u</text>
|
||||
<path stroke="black">
|
||||
8 0 0 8 64 640 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 128 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 192 640 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 128 576 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 256 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 320 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 320 640 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 320 576 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 384 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 384 640 e
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
184 640 m
|
||||
72 640 l
|
||||
</path>
|
||||
<path stroke="blue" arrow="normal/normal">
|
||||
122.343 698.343 m
|
||||
69.6569 645.657 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
133.657 698.343 m
|
||||
186.343 645.657 l
|
||||
</path>
|
||||
<path stroke="blue" arrow="normal/normal">
|
||||
69.6569 634.343 m
|
||||
122.343 581.657 l
|
||||
</path>
|
||||
<path stroke="blue" arrow="normal/normal">
|
||||
133.657 581.657 m
|
||||
186.343 634.343 l
|
||||
</path>
|
||||
<path stroke="blue" arrow="normal/normal">
|
||||
136 704 m
|
||||
248 704 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
264 704 m
|
||||
312 704 l
|
||||
</path>
|
||||
<path stroke="blue" arrow="normal/normal">
|
||||
320 632 m
|
||||
320 584 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
376 704 m
|
||||
328 704 l
|
||||
</path>
|
||||
<path stroke="blue" arrow="normal/normal">
|
||||
384 696 m
|
||||
384 648 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
378.343 645.657 m
|
||||
325.657 698.343 l
|
||||
</path>
|
||||
<path stroke="blue" arrow="normal/normal">
|
||||
261.657 698.343 m
|
||||
314.343 645.657 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
314.343 581.657 m
|
||||
304 608
|
||||
314.343 634.343 s
|
||||
</path>
|
||||
<path stroke="blue" arrow="normal/normal">
|
||||
325.657 581.657 m
|
||||
344 640
|
||||
323.578 696.845 s
|
||||
</path>
|
||||
<path stroke="black" rarrow="normal/normal">
|
||||
133.657 709.657 m
|
||||
224 728
|
||||
314.343 709.657 s
|
||||
</path>
|
||||
<text transformations="translations" pos="128 720" stroke="blue" type="label" width="24.907" height="7.473" depth="2.49" halign="center" valign="center">$[1,16]$</text>
|
||||
<text transformations="translations" pos="64 664" stroke="blue" type="label" width="19.925" height="7.473" depth="2.49" halign="center" valign="center">$[2,7]$</text>
|
||||
<text matrix="1 0 0 1 0 8" transformations="translations" pos="128 552" stroke="blue" type="label" width="19.925" height="7.473" depth="2.49" halign="center" valign="center">$[3,6]$</text>
|
||||
<text matrix="1 0 0 1 24 -24" transformations="translations" pos="192 664" stroke="blue" type="label" width="19.925" height="7.473" depth="2.49" halign="center" valign="center">$[4,5]$</text>
|
||||
<text transformations="translations" pos="256 680" stroke="blue" type="label" width="24.907" height="7.473" depth="2.49" halign="center" valign="center">$[8,15]$</text>
|
||||
<text transformations="translations" pos="320 664" stroke="blue" type="label" width="24.907" height="7.473" depth="2.49" halign="center" valign="center">$[9,14]$</text>
|
||||
<text matrix="1 0 0 1 0 8" transformations="translations" pos="320 552" stroke="blue" type="label" width="29.888" height="7.473" depth="2.49" halign="center" valign="center">$[19,13]$</text>
|
||||
<text matrix="1 0 0 1 0 -8" transformations="translations" pos="320 728" stroke="blue" type="label" width="29.888" height="7.473" depth="2.49" halign="center" valign="center">$[11,12]$</text>
|
||||
<text matrix="1 0 0 1 0 -8" transformations="translations" pos="384 728" stroke="blue" type="label" width="29.888" height="7.473" depth="2.49" halign="center" valign="center">$[17,20]$</text>
|
||||
<text matrix="1 0 0 1 0 8" transformations="translations" pos="384 616" stroke="blue" type="label" width="29.888" height="7.473" depth="2.49" halign="center" valign="center">$[18,19]$</text>
|
||||
</page>
|
||||
</ipe>
|
@ -0,0 +1,279 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||
<ipe version="70005" creator="Ipe 7.1.1">
|
||||
<info created="D:20120116140409" modified="D:20120116141419"/>
|
||||
<ipestyle name="basic">
|
||||
<symbol name="arrow/arc(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/farc(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/circle(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/disk(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
0.5 0 0 0.5 0 0 e
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/box(sx)" transformations="translations">
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/square(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
-0.5 -0.5 m
|
||||
0.5 -0.5 l
|
||||
0.5 0.5 l
|
||||
-0.5 0.5 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/cross(sx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 -0.57 m
|
||||
0.57 0.43 l
|
||||
0.43 0.57 l
|
||||
-0.57 -0.43 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 0.57 m
|
||||
0.57 -0.43 l
|
||||
0.43 -0.57 l
|
||||
-0.57 0.43 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="arrow/fnormal(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/pointed(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fpointed(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/linear(spx)">
|
||||
<path stroke="sym-stroke" pen="sym-pen">
|
||||
-1 0.333 m
|
||||
0 0 l
|
||||
-1 -0.333 l
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fdouble(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/double(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<pen name="heavier" value="0.8"/>
|
||||
<pen name="fat" value="1.2"/>
|
||||
<pen name="ultrafat" value="2"/>
|
||||
<symbolsize name="large" value="5"/>
|
||||
<symbolsize name="small" value="2"/>
|
||||
<symbolsize name="tiny" value="1.1"/>
|
||||
<arrowsize name="large" value="10"/>
|
||||
<arrowsize name="small" value="5"/>
|
||||
<arrowsize name="tiny" value="3"/>
|
||||
<color name="red" value="1 0 0"/>
|
||||
<color name="green" value="0 1 0"/>
|
||||
<color name="blue" value="0 0 1"/>
|
||||
<color name="yellow" value="1 1 0"/>
|
||||
<color name="orange" value="1 0.647 0"/>
|
||||
<color name="gold" value="1 0.843 0"/>
|
||||
<color name="purple" value="0.627 0.125 0.941"/>
|
||||
<color name="gray" value="0.745"/>
|
||||
<color name="brown" value="0.647 0.165 0.165"/>
|
||||
<color name="navy" value="0 0 0.502"/>
|
||||
<color name="pink" value="1 0.753 0.796"/>
|
||||
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||
<color name="violet" value="0.933 0.51 0.933"/>
|
||||
<color name="darkblue" value="0 0 0.545"/>
|
||||
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||
<color name="darkgray" value="0.663"/>
|
||||
<color name="darkgreen" value="0 0.392 0"/>
|
||||
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||
<color name="darkorange" value="1 0.549 0"/>
|
||||
<color name="darkred" value="0.545 0 0"/>
|
||||
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||
<color name="lightcyan" value="0.878 1 1"/>
|
||||
<color name="lightgray" value="0.827"/>
|
||||
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||
<color name="lightyellow" value="1 1 0.878"/>
|
||||
<dashstyle name="dashed" value="[4] 0"/>
|
||||
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||
<textsize name="large" value="\large"/>
|
||||
<textsize name="Large" value="\Large"/>
|
||||
<textsize name="LARGE" value="\LARGE"/>
|
||||
<textsize name="huge" value="\huge"/>
|
||||
<textsize name="Huge" value="\Huge"/>
|
||||
<textsize name="small" value="\small"/>
|
||||
<textsize name="footnote" value="\footnotesize"/>
|
||||
<textsize name="tiny" value="\tiny"/>
|
||||
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||
<gridsize name="4 pts" value="4"/>
|
||||
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||
<anglesize name="90 deg" value="90"/>
|
||||
<anglesize name="60 deg" value="60"/>
|
||||
<anglesize name="45 deg" value="45"/>
|
||||
<anglesize name="30 deg" value="30"/>
|
||||
<anglesize name="22.5 deg" value="22.5"/>
|
||||
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||
</ipestyle>
|
||||
<page>
|
||||
<layer name="alpha"/>
|
||||
<view layers="alpha" active="alpha"/>
|
||||
<path layer="alpha" stroke="black" fill="gray">
|
||||
8 0 0 8 64 768 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 128 768 e
|
||||
</path>
|
||||
<path matrix="1 0 0 1 0 32" stroke="black" fill="gray">
|
||||
8 0 0 8 64 704 e
|
||||
</path>
|
||||
<path matrix="1 0 0 1 0 32" stroke="black">
|
||||
8 0 0 8 128 672 e
|
||||
</path>
|
||||
<path stroke="black" fill="black" arrow="normal/normal">
|
||||
120 768 m
|
||||
72 768 l
|
||||
</path>
|
||||
<path matrix="1 0 0 1 0 32" stroke="black" arrow="normal/normal">
|
||||
64 704 m
|
||||
64 688
|
||||
72 688
|
||||
72 680
|
||||
80 680
|
||||
80 672
|
||||
88 672
|
||||
88 664
|
||||
96 664
|
||||
96 672
|
||||
104 672
|
||||
104 664
|
||||
112 672
|
||||
120 672 s
|
||||
</path>
|
||||
<text matrix="1 0 0 1 -8 -16" transformations="translations" pos="136 784" stroke="black" type="label" width="5.187" height="4.289" depth="0" halign="center" valign="center">$v$</text>
|
||||
<text matrix="1 0 0 1 -8 48" transformations="translations" pos="136 656" stroke="black" type="label" width="5.703" height="4.289" depth="0" halign="center" valign="center">$u$</text>
|
||||
<text matrix="1 0 0 1 -8 16" transformations="translations" pos="144 720" stroke="black" type="label" width="56.455" height="6.926" depth="1.93" valign="baseline">$\Leftarrow$ BackEdge</text>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
64 760 m
|
||||
64 744 l
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
128 712 m
|
||||
128 760 l
|
||||
</path>
|
||||
</page>
|
||||
</ipe>
|
@ -0,0 +1,359 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||
<ipe version="70005" creator="Ipe 7.1.1">
|
||||
<info created="D:20120116141304" modified="D:20120116141304"/>
|
||||
<ipestyle name="basic">
|
||||
<symbol name="arrow/arc(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/farc(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/circle(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/disk(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
0.5 0 0 0.5 0 0 e
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/box(sx)" transformations="translations">
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/square(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
-0.5 -0.5 m
|
||||
0.5 -0.5 l
|
||||
0.5 0.5 l
|
||||
-0.5 0.5 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/cross(sx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 -0.57 m
|
||||
0.57 0.43 l
|
||||
0.43 0.57 l
|
||||
-0.57 -0.43 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 0.57 m
|
||||
0.57 -0.43 l
|
||||
0.43 -0.57 l
|
||||
-0.57 0.43 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="arrow/fnormal(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/pointed(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fpointed(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/linear(spx)">
|
||||
<path stroke="sym-stroke" pen="sym-pen">
|
||||
-1 0.333 m
|
||||
0 0 l
|
||||
-1 -0.333 l
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fdouble(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/double(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<pen name="heavier" value="0.8"/>
|
||||
<pen name="fat" value="1.2"/>
|
||||
<pen name="ultrafat" value="2"/>
|
||||
<symbolsize name="large" value="5"/>
|
||||
<symbolsize name="small" value="2"/>
|
||||
<symbolsize name="tiny" value="1.1"/>
|
||||
<arrowsize name="large" value="10"/>
|
||||
<arrowsize name="small" value="5"/>
|
||||
<arrowsize name="tiny" value="3"/>
|
||||
<color name="red" value="1 0 0"/>
|
||||
<color name="green" value="0 1 0"/>
|
||||
<color name="blue" value="0 0 1"/>
|
||||
<color name="yellow" value="1 1 0"/>
|
||||
<color name="orange" value="1 0.647 0"/>
|
||||
<color name="gold" value="1 0.843 0"/>
|
||||
<color name="purple" value="0.627 0.125 0.941"/>
|
||||
<color name="gray" value="0.745"/>
|
||||
<color name="brown" value="0.647 0.165 0.165"/>
|
||||
<color name="navy" value="0 0 0.502"/>
|
||||
<color name="pink" value="1 0.753 0.796"/>
|
||||
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||
<color name="violet" value="0.933 0.51 0.933"/>
|
||||
<color name="darkblue" value="0 0 0.545"/>
|
||||
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||
<color name="darkgray" value="0.663"/>
|
||||
<color name="darkgreen" value="0 0.392 0"/>
|
||||
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||
<color name="darkorange" value="1 0.549 0"/>
|
||||
<color name="darkred" value="0.545 0 0"/>
|
||||
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||
<color name="lightcyan" value="0.878 1 1"/>
|
||||
<color name="lightgray" value="0.827"/>
|
||||
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||
<color name="lightyellow" value="1 1 0.878"/>
|
||||
<dashstyle name="dashed" value="[4] 0"/>
|
||||
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||
<textsize name="large" value="\large"/>
|
||||
<textsize name="Large" value="\Large"/>
|
||||
<textsize name="LARGE" value="\LARGE"/>
|
||||
<textsize name="huge" value="\huge"/>
|
||||
<textsize name="Huge" value="\Huge"/>
|
||||
<textsize name="small" value="\small"/>
|
||||
<textsize name="footnote" value="\footnotesize"/>
|
||||
<textsize name="tiny" value="\tiny"/>
|
||||
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||
<gridsize name="4 pts" value="4"/>
|
||||
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||
<anglesize name="90 deg" value="90"/>
|
||||
<anglesize name="60 deg" value="60"/>
|
||||
<anglesize name="45 deg" value="45"/>
|
||||
<anglesize name="30 deg" value="30"/>
|
||||
<anglesize name="22.5 deg" value="22.5"/>
|
||||
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||
</ipestyle>
|
||||
<page>
|
||||
<layer name="alpha"/>
|
||||
<view layers="alpha" active="alpha"/>
|
||||
<path layer="alpha" stroke="black">
|
||||
8 0 0 8 160 704 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 256 704 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 288 736 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 320 704 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 288 672 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 352 672 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 320 768 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 352 736 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 128 736 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 160 768 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 192 736 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 128 672 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 192 672 e
|
||||
</path>
|
||||
<path stroke="black" fill="gray">
|
||||
8 0 0 8 160 640 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
96 704 m
|
||||
96 736
|
||||
128 768
|
||||
160 800
|
||||
192 768
|
||||
216 736
|
||||
216 672
|
||||
192 608
|
||||
160 608
|
||||
96 640
|
||||
96 704 s
|
||||
</path>
|
||||
<path stroke="black">
|
||||
376 704 m
|
||||
376 736
|
||||
352 768
|
||||
320 784
|
||||
288 768
|
||||
256 736
|
||||
240 704
|
||||
256 672
|
||||
288 640
|
||||
352 640
|
||||
376 672
|
||||
376 704 s
|
||||
</path>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
168 704 m
|
||||
248 704 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
165.657 762.343 m
|
||||
186.343 741.657 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
133.657 741.657 m
|
||||
154.343 762.343 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
133.657 730.343 m
|
||||
154.343 709.657 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
154.343 698.343 m
|
||||
133.657 677.657 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
165.657 698.343 m
|
||||
186.343 677.657 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
186.343 666.343 m
|
||||
165.657 645.657 l
|
||||
</path>
|
||||
<text transformations="translations" pos="160 704" stroke="black" type="label" width="5.703" height="4.289" depth="0" halign="center" valign="center">$u$</text>
|
||||
<text transformations="translations" pos="256 704" stroke="black" type="label" width="5.187" height="4.289" depth="0" halign="center" valign="center">$v$</text>
|
||||
<path stroke="black">
|
||||
261.657 709.657 m
|
||||
282.343 730.343 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
293.657 730.343 m
|
||||
314.343 709.657 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
314.343 698.343 m
|
||||
293.657 677.657 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
325.657 698.343 m
|
||||
346.343 677.657 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
293.657 741.657 m
|
||||
314.343 762.343 l
|
||||
</path>
|
||||
<path stroke="black">
|
||||
325.657 762.343 m
|
||||
346.343 741.657 l
|
||||
</path>
|
||||
</page>
|
||||
</ipe>
|
@ -0,0 +1,253 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||
<ipe version="70005" creator="Ipe 7.1.1">
|
||||
<info created="D:20120116144207" modified="D:20120116144207"/>
|
||||
<ipestyle name="basic">
|
||||
<symbol name="arrow/arc(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/farc(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/circle(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/disk(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
0.5 0 0 0.5 0 0 e
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/box(sx)" transformations="translations">
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/square(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
-0.5 -0.5 m
|
||||
0.5 -0.5 l
|
||||
0.5 0.5 l
|
||||
-0.5 0.5 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/cross(sx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 -0.57 m
|
||||
0.57 0.43 l
|
||||
0.43 0.57 l
|
||||
-0.57 -0.43 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 0.57 m
|
||||
0.57 -0.43 l
|
||||
0.43 -0.57 l
|
||||
-0.57 0.43 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="arrow/fnormal(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/pointed(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fpointed(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/linear(spx)">
|
||||
<path stroke="sym-stroke" pen="sym-pen">
|
||||
-1 0.333 m
|
||||
0 0 l
|
||||
-1 -0.333 l
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fdouble(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/double(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<pen name="heavier" value="0.8"/>
|
||||
<pen name="fat" value="1.2"/>
|
||||
<pen name="ultrafat" value="2"/>
|
||||
<symbolsize name="large" value="5"/>
|
||||
<symbolsize name="small" value="2"/>
|
||||
<symbolsize name="tiny" value="1.1"/>
|
||||
<arrowsize name="large" value="10"/>
|
||||
<arrowsize name="small" value="5"/>
|
||||
<arrowsize name="tiny" value="3"/>
|
||||
<color name="red" value="1 0 0"/>
|
||||
<color name="green" value="0 1 0"/>
|
||||
<color name="blue" value="0 0 1"/>
|
||||
<color name="yellow" value="1 1 0"/>
|
||||
<color name="orange" value="1 0.647 0"/>
|
||||
<color name="gold" value="1 0.843 0"/>
|
||||
<color name="purple" value="0.627 0.125 0.941"/>
|
||||
<color name="gray" value="0.745"/>
|
||||
<color name="brown" value="0.647 0.165 0.165"/>
|
||||
<color name="navy" value="0 0 0.502"/>
|
||||
<color name="pink" value="1 0.753 0.796"/>
|
||||
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||
<color name="violet" value="0.933 0.51 0.933"/>
|
||||
<color name="darkblue" value="0 0 0.545"/>
|
||||
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||
<color name="darkgray" value="0.663"/>
|
||||
<color name="darkgreen" value="0 0.392 0"/>
|
||||
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||
<color name="darkorange" value="1 0.549 0"/>
|
||||
<color name="darkred" value="0.545 0 0"/>
|
||||
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||
<color name="lightcyan" value="0.878 1 1"/>
|
||||
<color name="lightgray" value="0.827"/>
|
||||
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||
<color name="lightyellow" value="1 1 0.878"/>
|
||||
<dashstyle name="dashed" value="[4] 0"/>
|
||||
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||
<textsize name="large" value="\large"/>
|
||||
<textsize name="Large" value="\Large"/>
|
||||
<textsize name="LARGE" value="\LARGE"/>
|
||||
<textsize name="huge" value="\huge"/>
|
||||
<textsize name="Huge" value="\Huge"/>
|
||||
<textsize name="small" value="\small"/>
|
||||
<textsize name="footnote" value="\footnotesize"/>
|
||||
<textsize name="tiny" value="\tiny"/>
|
||||
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||
<gridsize name="4 pts" value="4"/>
|
||||
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||
<anglesize name="90 deg" value="90"/>
|
||||
<anglesize name="60 deg" value="60"/>
|
||||
<anglesize name="45 deg" value="45"/>
|
||||
<anglesize name="30 deg" value="30"/>
|
||||
<anglesize name="22.5 deg" value="22.5"/>
|
||||
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||
</ipestyle>
|
||||
<page>
|
||||
<layer name="alpha"/>
|
||||
<view layers="alpha" active="alpha"/>
|
||||
<path layer="alpha" stroke="black">
|
||||
8 0 0 8 32 800 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 96 800 e
|
||||
</path>
|
||||
<text transformations="translations" pos="32 800" stroke="black" type="label" width="5.703" height="4.289" depth="0" halign="center" valign="center">$u$</text>
|
||||
<text transformations="translations" pos="96 800" stroke="black" type="label" width="5.187" height="4.289" depth="0" halign="center" valign="center">$v$</text>
|
||||
<path stroke="black" arrow="normal/normal">
|
||||
40 800 m
|
||||
48 800
|
||||
56 808
|
||||
64 792
|
||||
72 808
|
||||
80 800
|
||||
88 800 s
|
||||
</path>
|
||||
</page>
|
||||
</ipe>
|
@ -0,0 +1,260 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||
<ipe version="70005" creator="Ipe 7.1.1">
|
||||
<info created="D:20120116151201" modified="D:20120116151201"/>
|
||||
<ipestyle name="basic">
|
||||
<symbol name="arrow/arc(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/farc(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/circle(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/disk(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
0.5 0 0 0.5 0 0 e
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
0.6 0 0 0.6 0 0 e
|
||||
0.4 0 0 0.4 0 0 e
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/box(sx)" transformations="translations">
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/square(sx)" transformations="translations">
|
||||
<path fill="sym-stroke">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-fill">
|
||||
-0.5 -0.5 m
|
||||
0.5 -0.5 l
|
||||
0.5 0.5 l
|
||||
-0.5 0.5 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke" fillrule="eofill">
|
||||
-0.6 -0.6 m
|
||||
0.6 -0.6 l
|
||||
0.6 0.6 l
|
||||
-0.6 0.6 l
|
||||
h
|
||||
-0.4 -0.4 m
|
||||
0.4 -0.4 l
|
||||
0.4 0.4 l
|
||||
-0.4 0.4 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="mark/cross(sx)" transformations="translations">
|
||||
<group>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 -0.57 m
|
||||
0.57 0.43 l
|
||||
0.43 0.57 l
|
||||
-0.57 -0.43 l
|
||||
h
|
||||
</path>
|
||||
<path fill="sym-stroke">
|
||||
-0.43 0.57 m
|
||||
0.57 -0.43 l
|
||||
0.43 -0.57 l
|
||||
-0.57 0.43 l
|
||||
h
|
||||
</path>
|
||||
</group>
|
||||
</symbol>
|
||||
<symbol name="arrow/fnormal(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/pointed(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fpointed(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-0.8 0 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/linear(spx)">
|
||||
<path stroke="sym-stroke" pen="sym-pen">
|
||||
-1 0.333 m
|
||||
0 0 l
|
||||
-1 -0.333 l
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/fdouble(spx)">
|
||||
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<symbol name="arrow/double(spx)">
|
||||
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||
0 0 m
|
||||
-1 0.333 l
|
||||
-1 -0.333 l
|
||||
h
|
||||
-1 0 m
|
||||
-2 0.333 l
|
||||
-2 -0.333 l
|
||||
h
|
||||
</path>
|
||||
</symbol>
|
||||
<pen name="heavier" value="0.8"/>
|
||||
<pen name="fat" value="1.2"/>
|
||||
<pen name="ultrafat" value="2"/>
|
||||
<symbolsize name="large" value="5"/>
|
||||
<symbolsize name="small" value="2"/>
|
||||
<symbolsize name="tiny" value="1.1"/>
|
||||
<arrowsize name="large" value="10"/>
|
||||
<arrowsize name="small" value="5"/>
|
||||
<arrowsize name="tiny" value="3"/>
|
||||
<color name="red" value="1 0 0"/>
|
||||
<color name="green" value="0 1 0"/>
|
||||
<color name="blue" value="0 0 1"/>
|
||||
<color name="yellow" value="1 1 0"/>
|
||||
<color name="orange" value="1 0.647 0"/>
|
||||
<color name="gold" value="1 0.843 0"/>
|
||||
<color name="purple" value="0.627 0.125 0.941"/>
|
||||
<color name="gray" value="0.745"/>
|
||||
<color name="brown" value="0.647 0.165 0.165"/>
|
||||
<color name="navy" value="0 0 0.502"/>
|
||||
<color name="pink" value="1 0.753 0.796"/>
|
||||
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||
<color name="violet" value="0.933 0.51 0.933"/>
|
||||
<color name="darkblue" value="0 0 0.545"/>
|
||||
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||
<color name="darkgray" value="0.663"/>
|
||||
<color name="darkgreen" value="0 0.392 0"/>
|
||||
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||
<color name="darkorange" value="1 0.549 0"/>
|
||||
<color name="darkred" value="0.545 0 0"/>
|
||||
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||
<color name="lightcyan" value="0.878 1 1"/>
|
||||
<color name="lightgray" value="0.827"/>
|
||||
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||
<color name="lightyellow" value="1 1 0.878"/>
|
||||
<dashstyle name="dashed" value="[4] 0"/>
|
||||
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||
<textsize name="large" value="\large"/>
|
||||
<textsize name="Large" value="\Large"/>
|
||||
<textsize name="LARGE" value="\LARGE"/>
|
||||
<textsize name="huge" value="\huge"/>
|
||||
<textsize name="Huge" value="\Huge"/>
|
||||
<textsize name="small" value="\small"/>
|
||||
<textsize name="footnote" value="\footnotesize"/>
|
||||
<textsize name="tiny" value="\tiny"/>
|
||||
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||
<gridsize name="4 pts" value="4"/>
|
||||
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||
<anglesize name="90 deg" value="90"/>
|
||||
<anglesize name="60 deg" value="60"/>
|
||||
<anglesize name="45 deg" value="45"/>
|
||||
<anglesize name="30 deg" value="30"/>
|
||||
<anglesize name="22.5 deg" value="22.5"/>
|
||||
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||
</ipestyle>
|
||||
<page>
|
||||
<layer name="alpha"/>
|
||||
<view layers="alpha" active="alpha"/>
|
||||
<path layer="alpha" stroke="black">
|
||||
8 0 0 8 64 768 e
|
||||
</path>
|
||||
<path stroke="black">
|
||||
8 0 0 8 128 768 e
|
||||
</path>
|
||||
<text transformations="translations" pos="64 768" stroke="black" type="label" width="5.703" height="4.289" depth="0" halign="center" valign="center">$u$</text>
|
||||
<text transformations="translations" pos="128 768" stroke="black" type="label" width="5.187" height="4.289" depth="0" halign="center" valign="center">$v$</text>
|
||||
<path stroke="black">
|
||||
72 768 m
|
||||
120 768 l
|
||||
</path>
|
||||
<path stroke="blue" rarrow="normal/normal">
|
||||
122.343 773.657 m
|
||||
96 784
|
||||
69.6569 773.657 s
|
||||
</path>
|
||||
<path stroke="orange" rarrow="normal/normal">
|
||||
69.6569 762.343 m
|
||||
96 752
|
||||
122.343 762.343 s
|
||||
</path>
|
||||
<text matrix="1 0 0 1 32 0" transformations="translations" pos="64 792" stroke="blue" type="label" width="74.886" height="6.918" depth="0" halign="center" valign="center">rekursiver Aufruf</text>
|
||||
<text matrix="1 0 0 1 32 8" transformations="translations" pos="64 736" stroke="orange" type="label" width="100.484" height="6.918" depth="0" halign="center" valign="center">Ende rekursiver Aufruf</text>
|
||||
</page>
|
||||
</ipe>
|
Loading…
Reference in new issue