summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/algorithmicx/algpseudocode.sty
blob: ba7a5d57329daf97ff6b0bcf830e02df36f89c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
% PSEUDOCODE ALGORITHMIC STYLE -- Released 18 MAR 2004
%    for LaTeX version 2e
%
% Copyright Szasz Janos
% E-mail szaszjanos@users.sourceforge.net
% Based on Peter Williams's algorithmic.sty
%
\NeedsTeXFormat{LaTeX2e}%
\ProvidesPackage{algpseudocode}%
\RequirePackage{ifthen}%
\RequirePackage{algorithmicx}%
\typeout{Document Style - pseudocode environments for use with the `algorithmicx' style}%
%
\def\ALG@setpseudocode{t}%
\newboolean{ALG@noend}%
\setboolean{ALG@noend}{false}%
\newboolean{ALG@compatible}%
\setboolean{ALG@compatible}{false}%
%
\DeclareOption{noset}{\def\ALG@setpseudocode{}}%
\DeclareOption{set}{\def\ALG@setpseudocode{t}}%
\DeclareOption{noend}{\setboolean{ALG@noend}{true}}%
\DeclareOption{end}{\setboolean{ALG@noend}{false}}%
\DeclareOption{compatible}{\setboolean{ALG@compatible}{true}}%
\DeclareOption{noncompatible}{\setboolean{ALG@noncompatible}{false}}%
\ProcessOptions%
%
%      ***      DECLARATIONS      ***
%
\ALG@deflanguage{pseudocode}{\ALG@setpseudocode}%
{%
%
%      ***      KEYWORDS      ***
%
\newcommand\algorithmicend{\textbf{end}}
\newcommand\algorithmicdo{\textbf{do}}
\newcommand\algorithmicwhile{\textbf{while}}
\newcommand\algorithmicfor{\textbf{for}}
\newcommand\algorithmicforall{\textbf{for all}}
\newcommand\algorithmicloop{\textbf{loop}}
\newcommand\algorithmicrepeat{\textbf{repeat}}
\newcommand\algorithmicuntil{\textbf{until}}
\newcommand\algorithmicprocedure{\textbf{procedure}}
\newcommand\algorithmicfunction{\textbf{function}}
\newcommand\algorithmicif{\textbf{if}}
\newcommand\algorithmicthen{\textbf{then}}
\newcommand\algorithmicelse{\textbf{else}}
\newcommand\algorithmicrequire{\textbf{Require:}}
\newcommand\algorithmicensure{\textbf{Ensure:}}
\newcommand{\algorithmicreturn}{\textbf{return}}
\newcommand\textproc{\textsc}
%
%      ***      DECLARED LOOPS      ***
%
\algdef{SE}[WHILE]{While}{EndWhile}[1]{\algorithmicwhile\ ##1\ \algorithmicdo}{\algorithmicend\ \algorithmicwhile}%
\algdef{SE}[FOR]{For}{EndFor}[1]{\algorithmicfor\ ##1\ \algorithmicdo}{\algorithmicend\ \algorithmicfor}%
\algdef{S}[FOR]{ForAll}[1]{\algorithmicforall\ ##1\ \algorithmicdo}%
\algdef{SE}[LOOP]{Loop}{EndLoop}{\algorithmicloop}{\algorithmicend\ \algorithmicloop}%
\algdef{SE}[REPEAT]{Repeat}{Until}{\algorithmicrepeat}[1]{\algorithmicuntil\ ##1}%
\algdef{SE}[IF]{If}{EndIf}[1]{\algorithmicif\ ##1\ \algorithmicthen}{\algorithmicend\ \algorithmicif}%
\algdef{C}[IF]{IF}{ElsIf}[1]{\algorithmicelse\ \algorithmicif\ ##1\ \algorithmicthen}%
\algdef{Ce}[ELSE]{IF}{Else}{EndIf}{\algorithmicelse}%
\algdef{SE}[PROCEDURE]{Procedure}{EndProcedure}%
   [2]{\algorithmicprocedure\ \textproc{##1}\ifthenelse{\equal{##2}{}}{}{(##2)}}%
   {\algorithmicend\ \algorithmicprocedure}%
\algdef{SE}[FUNCTION]{Function}{EndFunction}%
   [2]{\algorithmicfunction\ \textproc{##1}\ifthenelse{\equal{##2}{}}{}{(##2)}}%
   {\algorithmicend\ \algorithmicfunction}%
%
\ifthenelse{\boolean{ALG@noend}}%
   {%
   \algtext*{EndWhile}%
   \algtext*{EndFor}%
   \algtext*{EndLoop}%
   \algtext*{EndIf}%
   \algtext*{EndProcedure}%
   \algtext*{EndFunction}%
   }{}%
%
%      ***      OTHER DECLARATIONS      ***
%
\def\Require{\item[\algorithmicrequire]}
\def\Ensure{\item[\algorithmicensure]}
\def\Return{\algorithmicreturn{} }%
%
%
%
\ifthenelse{\boolean{ALG@compatible}}%
   {%
   \let\WHILE\While\let\ENDWHILE\EndWhile%
   \let\FOR\For\let\FORALL\ForAll\let\ENDFOR\EndFor%
   \let\LOOP\Loop\let\ENDLOOP\EndLoop%
   \let\REPEAT\Repeat\let\UNTIL\Until%
   \let\PROCEDURE\Procedure\let\ENDPROCEDURE\EndProcedure%
   \let\FUNCTION\Function\let\ENDFUNCTION\EndFunction%
   \let\IF\If\let\ELSIF\ElsIf\let\ELSE\Else\let\ENDIF\EndIf%
   \let\REQUIRE\Require\let\ENSURE\Ensure%
   \let\STATE\State\let\STATEx\Statex%
   \let\COMMENT\Comment%
   }%
   {}%
%
%
%
}%
%
%
%
\let\ALG@setpseudocode\relax%
%