I'm trying to put a hyphen into a function name using the algorithm2e package, though it doesn't seem to like it.
Minimal example:
\begin{algorithm}
\SetKwFunction{NOHYPHEN}{NOHYPHEN}
\NOHYPHEN{foo,bar}\;
\end{algorithm}
works fine.
\begin{algorithm}
\SetKwFunction{WITH-HYPHEN}{WITH-HYPHEN}
\WITH-HYPHEN{foo,bar}\;
\end{algorithm}
breaks.
Any suggestions?
