Skip to content
Snippets Groups Projects
Commit a9abb478 authored by Philipp Spohr's avatar Philipp Spohr
Browse files

Basic Flow-Chart for Algorithm

parent c52b1d49
No related branches found
No related tags found
No related merge requests found
\tikzstyle{block} = [rectangle, draw, fill=blue!20,
text width=5em, text centered, rounded corners, minimum height=4em]
\tikzstyle{line} = [draw, -latex']
\begin{figure}
\begin{tikzpicture}[node distance = 1cm]
\node [block] (datamodel) {Data Modeling};
\node [block, left= of datamodel] (input) {Input};
\node [block, below= of datamodel] (reduce) {Reduction Rules};
\node [block, below right = of reduce] (solveILP) {ILP Solver};
\node [block, below left = of reduce] (solveHeuristic) {Heuristic Solver};
\node [block, below right= of solveHeuristic] (output) {Generate Output};
\path [line] (input) -- (datamodel);
\path [line] (datamodel) -- (reduce);
\path [line] (reduce) -- (solveILP);
\path [line] (reduce) -- (solveHeuristic);
\path [line] (solveILP) -- (output);
\path [line] (solveHeuristic) -- (output);
\end{tikzpicture}
\caption{Overview of the Yoshiko Algorithm} \label{algOverview}
\end{figure}
No preview for this file type
......@@ -7,6 +7,12 @@
\usepackage{amssymb}
\usepackage{abstract}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{verbatim}
\usetikzlibrary{shapes,arrows}
\usetikzlibrary{positioning}
\hypersetup{
linktoc=all
......@@ -37,6 +43,7 @@
\section{The Yoshiko-App for Cytoscape}
\subsection{Technical Details}
\subsection{Algorithm}
\input{Chapter/alg_overview}
\subsubsection{Data Modeling}
\paragraph{Theory}
\input{Chapter/dm_theory}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment