Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mllg committed Jan 3, 2017
1 parent 25f15c0 commit bd6799f
Show file tree
Hide file tree
Showing 16 changed files with 98 additions and 629 deletions.
Binary file added docs/articles/tikz_prob_algo_simple.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions docs/articles/tikz_prob_algo_simple.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
\documentclass[crop,tikz,convert]{standalone}
\usetikzlibrary{shapes,matrix,positioning,chains,arrows,shadows,decorations.pathmorphing,fit,backgrounds}
\begin{document}

\begin{tikzpicture}[auto]
\tikzstyle{userinput}=[rectangle, drop shadow, draw=black, fill=black!10, thick, minimum width=4cm, align=center]
\tikzstyle{internal}=[rectangle, drop shadow, draw=black, fill=white, thick, minimum width=4cm, rounded corners, align=center]
\tikzstyle{result}=[ellipse, drop shadow, draw=black, fill=white, thick, align=center, minimum width=3cm]
\tikzstyle{line} = [draw, thick, -latex']
\tikzstyle{sline} = [draw, thick, -latex',decorate, decoration={snake, segment length=2mm,post length=2mm}]

\matrix [row sep=10mm, column sep=20mm] {
% first row
\node {}; &
\node {}; &
\node [result] (result) {result}; \\

% second row
\node [userinput] (static_problem_part) {
static problem part\\\texttt{data}
}; &
\node [userinput] (dynamic_problem_part) {
dynamic problem function\\
\texttt{fun(data, ...)}
}; &
\node [userinput] (algorithm) {
algorithm function\\
\texttt{fun(data, instance, ...)}
}; \\

% third row
\node {}; &
\node [userinput] (problem_design) {
problem design\\
(\texttt{addExperiments})
}; &
\node [userinput] (algorithm_design) {
algorithm design\\
(\texttt{addExperiments})
}; \\
};

\draw [sline] (algorithm) to (result) ;
\draw [line] (static_problem_part) to (dynamic_problem_part);
\draw [sline] (dynamic_problem_part) to node {\texttt{instance}} (algorithm) ;
\draw [line] (static_problem_part) to [out=0, in=0, bend left=20] (algorithm);

\draw [line] (problem_design) to node {\texttt{...}} (dynamic_problem_part);
\draw [line] (algorithm_design) to node {\texttt{...}} (algorithm);
\end{tikzpicture}
\end{document}
1 change: 1 addition & 0 deletions docs/articles/v11_ExampleExperiment.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions docs/articles/v20_ErrorHandling.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/reference/batchExport.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 2 additions & 13 deletions docs/reference/batchMap.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions docs/reference/doJobCollection.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions docs/reference/getJobTable.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bd6799f

Please sign in to comment.