I'd like to separate two sections in an algorithmic environment with a horizontal line, like:
-------------
Algorithm 1: MyAlgorithm
-------------
Part 1:
Do some stuff
-------------
Part 2:
Other stuff
\hline causes an error. My code so far looks like:
\begin{algorithm}
\caption{Caption}
\begin{algorithmic}
\STATE algorithm here
%I'd like to do \hline here!
\STATE part 2 here
\end{algorithmic}
\end{algorithm}

