I have split my frame in two columns. The first column has an algorithm (interleaved with pause statements). The second column has a figure. Currently the figure shows at last (after hitting keys as many times as there are pause statements). How can I uncover the figure before any pause statements. Attached below is the psuedo code.
\begin{columns}[c]
\column{2.00in}
\begin{algorithmic}[1]
\STATE stmt1
\pause
\STATE stmt2
\end{algorithmic}
\column{1.00in}
\begin{tikzpicture}
picture code
\end{tikzpicture}
\end{columns}
\end{frame}


