blob: 5886e0db80c016ee56f445d595997af84a41113d [file] [log] [blame]
% ------------------------------------------------------------------------------
% Copyright (c) 2010, 2021 Contributors to the Eclipse Foundation
%
% See the NOTICE file(s) distributed with this work for additional
% information regarding copyright ownership.
%
% This program and the accompanying materials are made available under the terms
% of the MIT License which is available at https://opensource.org/licenses/MIT
%
% SPDX-License-Identifier: MIT
% ------------------------------------------------------------------------------
{\ttfamily
\begin{tikzpicture}[x=1ex,y=1ex,thin,>=triangle 45,auto]
\path
node[proc] (G){G}
++ (12,0) node[proc] (B0){B}
++ (12,0) node[proc] (S0){S}
++ (12,0) node[proc] (B1){B}
++ (12,0) node[proc] (S1){S}
++ (12,0) node[proc] (E){E};
\path (G) edge node{a}(B0)
(B0) edge node{b}(S0)
(S0) edge node{c}(B1)
(B1) edge node{d}(S1)
(S1) edge node{e}(E);
\end{tikzpicture}
}