2024-03-12 13:15:22 +01:00
|
|
|
\documentclass{scrartcl}
|
|
|
|
\RequirePackage{algorithm}
|
|
|
|
\RequirePackage{algorithmicx}
|
|
|
|
\RequirePackage[noEnd=false]{algpseudocodex}
|
|
|
|
\newcommand{\algorithmautorefname}{Algorithm} % Allow autoref.
|
|
|
|
% Define macros to typeset boolean in pseudocode environments
|
|
|
|
\algnewcommand{\True}{\textbf{\texttt{true}}}
|
|
|
|
\algnewcommand{\False}{\textbf{\texttt{false}}}
|
|
|
|
\algnewcommand{\NIL}{\textbf{\texttt{NIL}}}
|
|
|
|
\algnewcommand{\NULL}{\textbf{\texttt{null}}}
|
|
|
|
\input{definitions.tex}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
|
2024-03-12 14:11:33 +01:00
|
|
|
|
2024-03-12 13:15:22 +01:00
|
|
|
\end{document}
|