Skip to content
Snippets Groups Projects
Commit 5faa1d2b authored by Michael Banken's avatar Michael Banken
Browse files

fixed mistakes in candidate graphs

parent 2effcffc
No related branches found
No related tags found
No related merge requests found
...@@ -41,22 +41,29 @@ ...@@ -41,22 +41,29 @@
\end{tikzpicture} \end{tikzpicture}
\subsubsection{Partially Superfluous Inclusion} \subsubsection{Partially Superfluous Inclusion}
\begin{tikzpicture}[xscale=\myxscale,yscale=\myyscale, node distance=3cm]\myfontsize \begin{tikzpicture}[xscale=\myxscale,yscale=\myyscale, node distance=3cm]\myfontsize
\node[thy] (bottom1) {\begin{tabular}{l} \node[thy] (bottom) {\begin{tabular}{l}
\textsf{bottom}\\\hline \textsf{bottom}\\\hline
...\\\hline X\\\hline
X, but not Y ...
\end{tabular}}; \end{tabular}};
\node[thy, above of = bottom1] (middle) {\begin{tabular}{l} \node[thy, above of = bottom] (middle) {\begin{tabular}{l}
\textsf{middle}\\\hline \textsf{middle}\\\hline
Y\\\hline Y\\\hline
... ...
\end{tabular}}; \end{tabular}};
\node[thy, above of = middle] (top) {\begin{tabular}{l} \node[thy, above of = middle] (top) {\begin{tabular}{l}
\textsf{top}\\\hline \textsf{top}\\\hline
X\\\hline ...\\\hline
... X, but not Y
\end{tabular}}; \end{tabular}};
\draw[include] (bottom) -- (middle); \node[right of = bottom] (dots) {...};
\node[thy, right of = dots] (bottomn) {\begin{tabular}{l}
\textsf{$bottom_n$}\\\hline
$X_n$\\\hline
...
\end{tabular}};
\draw[include] (bottom) -- (middle);
\draw[include] (bottomn) -- (middle);
\draw[include] (middle) -- (top); \draw[include] (middle) -- (top);
\end{tikzpicture} \end{tikzpicture}
\section{Optimization cases} \section{Optimization cases}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment