Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
YoshikoWrapper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Philipp Spohr
YoshikoWrapper
Commits
a9abb478
Commit
a9abb478
authored
7 years ago
by
Philipp Spohr
Browse files
Options
Downloads
Patches
Plain Diff
Basic Flow-Chart for Algorithm
parent
c52b1d49
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
thesis/tex/Chapter/alg_overview.tex
+28
-0
28 additions, 0 deletions
thesis/tex/Chapter/alg_overview.tex
thesis/tex/Thesis.pdf
+0
-0
0 additions, 0 deletions
thesis/tex/Thesis.pdf
thesis/tex/Thesis.tex
+7
-0
7 additions, 0 deletions
thesis/tex/Thesis.tex
with
35 additions
and
0 deletions
thesis/tex/Chapter/alg_overview.tex
0 → 100644
+
28
−
0
View file @
a9abb478
\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}
This diff is collapsed.
Click to expand it.
thesis/tex/Thesis.pdf
+
0
−
0
View file @
a9abb478
No preview for this file type
This diff is collapsed.
Click to expand it.
thesis/tex/Thesis.tex
+
7
−
0
View file @
a9abb478
...
@@ -7,6 +7,12 @@
...
@@ -7,6 +7,12 @@
\usepackage
{
amssymb
}
\usepackage
{
amssymb
}
\usepackage
{
abstract
}
\usepackage
{
abstract
}
\usepackage
{
hyperref
}
\usepackage
{
hyperref
}
\usepackage
{
graphicx
}
\usepackage
{
tikz
}
\usepackage
{
verbatim
}
\usetikzlibrary
{
shapes,arrows
}
\usetikzlibrary
{
positioning
}
\hypersetup
{
\hypersetup
{
linktoc=all
linktoc=all
...
@@ -37,6 +43,7 @@
...
@@ -37,6 +43,7 @@
\section
{
The Yoshiko-App for Cytoscape
}
\section
{
The Yoshiko-App for Cytoscape
}
\subsection
{
Technical Details
}
\subsection
{
Technical Details
}
\subsection
{
Algorithm
}
\subsection
{
Algorithm
}
\input
{
Chapter/alg
_
overview
}
\subsubsection
{
Data Modeling
}
\subsubsection
{
Data Modeling
}
\paragraph
{
Theory
}
\paragraph
{
Theory
}
\input
{
Chapter/dm
_
theory
}
\input
{
Chapter/dm
_
theory
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment