I have a flow chart that has all of the nodes that I want, there is just one path that I can't get.
\begin{figure}[H]
\begin{center}
\tikzstyle{decision} = [diamond, draw, fill=blue!20,
text width=4.5em, text badly centered, node distance=3cm, inner sep=0pt]
\tikzstyle{block} = [rectangle, draw, fill=blue!20,
text width=5em, text centered, rounded corners, minimum height=4em]
\tikzstyle{line} = [draw, -latex']
\tikzstyle{cloud} = [draw, ellipse,fill=red!20, node distance=3cm,
minimum height=2em]
\begin{tikzpicture}[node distance = 3cm, auto]
% Place nodes
\node [block] (init) {Set Quotient to 0};
\node [block, below of=init] (identify) {Subtract Divisor from Dividend};
\node [block, below of=identify] (evaluate) {Add 1 to Quotient};
\node [decision, below of=evaluate] (decide) {is Result Register Greater than 0?};
\node [block, below of=decide, node distance=3cm] (stop) {Stop - Quotient is Correct};
% Draw edges
\path [line] (init) -- (identify);
\path [line] (identify) -- (evaluate);
\path [line] (evaluate) -- (decide);
\path [line] (decide) -- node {no}(stop);
\end{tikzpicture}
% use \figcap to build the caption. DO NOT use the default \caption command
\figcap{Control scheme for Repeated Subtraction Division} % put the caption of your figure here
\end{center}
\end{figure}
I would like to add a path that loops from the last block (stop) to the block (identify). Whenever I try to do this I get a path that does not go around the blocks, but rather through them.
Any ideas?


tikzsetrather thantikzstyle; see: Should \tikzset or \tikzstyle be used to define TikZ styles?. – Claudio Fiandrino Oct 22 '13 at 06:53