Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MathHub
TGStyler-paper
Commits
2effcffc
Commit
2effcffc
authored
Oct 16, 2017
by
Michael Banken
Browse files
added graphs for optimization candidates
parent
cee31703
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/candidates.tex
View file @
2effcffc
\chapter
{
Candidates
}
\section
{
Types of optimization candidates
}
\subsection
{
Simply redundant inclusion
}
\providecommand\myxscale
{
3.9
}
\providecommand\myyscale
{
2.2
}
\providecommand\myfontsize
{
\footnotesize
}
\begin{tikzpicture}
[xscale=
\myxscale
,yscale=
\myyscale
, node distance=3cm]
\myfontsize
\node
[thy]
(bottom)
{
\begin{tabular}
{
l
}
\textsf
{
bottom
}
\\\hline
...
\\\hline
...
\end{tabular}
}
;
\node
[thy, above of = bottom]
(middle)
{
\begin{tabular}
{
l
}
\textsf
{
middle
}
\\\hline
...
\\\hline
...
\end{tabular}
}
;
\node
[thy, above of = middle]
(top)
{
\begin{tabular}
{
l
}
\textsf
{
top
}
\\\hline
...
\\\hline
...
\end{tabular}
}
;
\draw
[include]
(bottom) -- (middle);
\draw
[include, bend left]
(bottom) edge (top);
\draw
[include]
(middle) -- (top);
\end{tikzpicture}
\subsection
{
Superfluous Inclusion
}
\subsubsection
{
Purely Superfluous Inclusion
}
\begin{tikzpicture}
[xscale=
\myxscale
,yscale=
\myyscale
, node distance=3cm]
\myfontsize
\node
[thy]
(bottom)
{
\begin{tabular}
{
l
}
\textsf
{
bottom
}
\\\hline
X
\\\hline
...
\end{tabular}
}
;
\node
[thy, above of = bottom]
(top)
{
\begin{tabular}
{
l
}
\textsf
{
top
}
\\\hline
...
\\\hline
no X
\end{tabular}
}
;
\draw
[include]
(bottom) -- (top);
\end{tikzpicture}
\subsubsection
{
Partially Superfluous Inclusion
}
\begin{tikzpicture}
[xscale=
\myxscale
,yscale=
\myyscale
, node distance=3cm]
\myfontsize
\node
[thy]
(bottom1)
{
\begin{tabular}
{
l
}
\textsf
{
bottom
}
\\\hline
...
\\\hline
X, but not Y
\end{tabular}
}
;
\node
[thy, above of = bottom1]
(middle)
{
\begin{tabular}
{
l
}
\textsf
{
middle
}
\\\hline
Y
\\\hline
...
\end{tabular}
}
;
\node
[thy, above of = middle]
(top)
{
\begin{tabular}
{
l
}
\textsf
{
top
}
\\\hline
X
\\\hline
...
\end{tabular}
}
;
\draw
[include]
(bottom) -- (middle);
\draw
[include]
(middle) -- (top);
\end{tikzpicture}
\section
{
Optimization cases
}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment