I'm working with IEEEtran and algorithm2e package. I have a pseudocode with numbered lines. I want to mark some of my line numbers (not the lines themselves) with an asterisk mark.
How can I do that?
Here is a minimal example:
\documentclass[conference]{IEEEtran}
\usepackage[ruled,linesnumbered]{algorithm2e}
% *** MATH PACKAGES ***
\usepackage{amsmath}
\usepackage{amssymb}
\newcommand{\argmin}{\operatornamewithlimits{argmin}}
\begin{document}
\begin{algorithm}
\nlset{1}
$\pi=1$\;
$\Phi=2$\;
\end{algorithm}
\end{document

