defense/src/fig/repeat/seq.tex

29 lines
691 B
TeX

\begin{tikzpicture}
\input{src/tikz/orchestration}
\tikzset{orch/task/.append style={minimum width=10mm}}
\begin{scope}[overlay]
\node(origin){};
\node at (origin) (t-1) {};
\end{scope}
\begin{scope}[node distance=3mm and 3mm]
\node[orch/task=black,below=of t-1] (t0) {$m_0$};
\node[orch/task=white,draw=none,fill=none,below=of t0] (t1) {};
\node[orch/task=black,below=of t1] (t2) {$m_8$};
\node[above=of t0] (label0) {\footnotesize\en{thread}~0};
\node[below=of t2] (endthread0) {};
\end{scope}
\draw[-] (label0) -- (t0);
\draw[-] (t0) -- (t1);
\draw[dashed] (t1.north) -- (t1.south);
\draw[-] (t1) -- (t2);
\draw[-] (t2) -- (endthread0);
\end{tikzpicture}