I want to do something like:
\begin{algorithm*}
\caption{My unnumbered algorithm}
% etc. etc.
\end{algorithm*}
or
\begin{algorithm}
\nonumbercaption{My unnumbered algorithm}
% etc. etc.
\end{algorithm}
Of course, the above is not LaTeX, just wishful thinking. What can I do to get an unnumbered algorithm with a caption?
Actually, the specific motivation is that I've split an algorithm in the middle since it's too long (using algorithmicx's \algstore); I want the second part to have a caption saying it's the second part, but I don't want it to have a new algorithm number.


