rbx.cp 0.6.1__py3-none-any.whl → 0.8.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. rbx/box/cd.py +32 -4
  2. rbx/box/cli.py +82 -34
  3. rbx/box/code.py +131 -82
  4. rbx/box/contest/main.py +25 -0
  5. rbx/box/creation.py +3 -0
  6. rbx/box/global_package.py +74 -0
  7. rbx/box/linting.py +76 -7
  8. rbx/box/package.py +6 -19
  9. rbx/box/presets/__init__.py +4 -4
  10. rbx/box/remote.py +19 -0
  11. rbx/box/sanitizers/warning_stack.py +3 -3
  12. rbx/box/solutions.py +13 -7
  13. rbx/box/stats.py +10 -0
  14. rbx/box/stresses.py +45 -64
  15. rbx/box/stressing/finder_parser.py +11 -16
  16. rbx/box/tasks.py +33 -22
  17. rbx/box/tooling/boca/scraper.py +1 -1
  18. rbx/grading/caching.py +98 -47
  19. rbx/grading/debug_context.py +31 -0
  20. rbx/grading/grading_context.py +96 -0
  21. rbx/grading/judge/cacher.py +93 -21
  22. rbx/grading/judge/sandbox.py +6 -3
  23. rbx/grading/judge/sandboxes/timeit.py +1 -1
  24. rbx/grading/judge/storage.py +169 -35
  25. rbx/grading/profiling.py +126 -0
  26. rbx/grading/steps.py +44 -16
  27. rbx/grading/steps_with_caching.py +52 -26
  28. rbx/resources/presets/default/contest/.gitignore +2 -0
  29. rbx/resources/presets/default/contest/contest.rbx.yml +18 -4
  30. rbx/resources/presets/default/contest/statement/contest.rbx.tex +25 -86
  31. rbx/resources/presets/default/contest/statement/icpc.sty +322 -0
  32. rbx/resources/presets/default/contest/statement/instructions.tex +40 -0
  33. rbx/resources/presets/default/contest/statement/logo.png +0 -0
  34. rbx/resources/presets/default/contest/statement/template.rbx.tex +45 -36
  35. rbx/resources/presets/default/preset.rbx.yml +8 -6
  36. rbx/resources/presets/default/problem/problem.rbx.yml +20 -17
  37. rbx/resources/presets/default/problem/statement/icpc.sty +322 -0
  38. rbx/resources/presets/default/problem/statement/template.rbx.tex +47 -79
  39. {rbx_cp-0.6.1.dist-info → rbx_cp-0.8.0.dist-info}/METADATA +4 -1
  40. {rbx_cp-0.6.1.dist-info → rbx_cp-0.8.0.dist-info}/RECORD +48 -41
  41. rbx/resources/presets/default/contest/statement/olymp.sty +0 -250
  42. rbx/resources/presets/default/problem/statement/olymp.sty +0 -250
  43. /rbx/resources/presets/default/problem/{gen.cpp → gens/gen.cpp} +0 -0
  44. /rbx/resources/presets/default/problem/{tests → manual_tests}/samples/000.in +0 -0
  45. /rbx/resources/presets/default/problem/{tests → manual_tests}/samples/001.in +0 -0
  46. /rbx/resources/presets/default/problem/{random.py → testplan/random.py} +0 -0
  47. /rbx/resources/presets/default/problem/{random.txt → testplan/random.txt} +0 -0
  48. {rbx_cp-0.6.1.dist-info → rbx_cp-0.8.0.dist-info}/LICENSE +0 -0
  49. {rbx_cp-0.6.1.dist-info → rbx_cp-0.8.0.dist-info}/WHEEL +0 -0
  50. {rbx_cp-0.6.1.dist-info → rbx_cp-0.8.0.dist-info}/entry_points.txt +0 -0
@@ -1,250 +0,0 @@
1
- % Copyright (c) 2005-2013 Olymp.sty Developers Group.
2
- % See https://github.com/GassaFM/olymp.sty/blob/master/AUTHORS
3
- % for the complete list of authors.
4
-
5
- %\ProvidesPackage{olymp}
6
- \usepackage{verbatim}
7
- \usepackage{xstring}
8
-
9
- % \makeatletter
10
- % \newcommand\FirstWord[1]{\@firstword#1 \@nil}%
11
- % \def\@firstword#1 #2\@nil{\@removecomma#1,\@nil}%
12
- % \def\@removecomma#1,#2\@nil{\@removeperiod#1.\@nil}
13
- % \def\@removeperiod#1.#2\@nil{\@removesemicolon#1;\@nil}
14
- % \def\@removesemicolon#1;#2\@nil{#1}
15
- % \makeatother
16
- \newcommand\FirstWord[1]{#1}
17
-
18
- \ProcessOptions\relax
19
-
20
- \setlength{\parindent}{0pt}
21
- \setlength{\parskip}{0.8em}
22
-
23
- % contest keywords definitions
24
- \def\conProblemTutorial{Problem Tutorial}
25
- \def\conProblem{Problem}
26
- \def\conProblemAuthor{Author:}
27
- \def\conProblemDeveloper{Developer:}
28
- \def\conProblemOrigin{Origin:}
29
- \def\conInputFileName{Input file:}
30
- \def\conOutputFileName{Output file:}
31
- \def\conTimeLimit{Time limit:}
32
- \def\conMemoryLimit{Memory limit:}
33
- \def\conFeedback{Feedback:}
34
- \def\constdin{standard input}
35
- \def\constdout{standard output}
36
- \def\conSpecification{Specification}
37
- \def\conInteraction{Interaction Protocol}
38
- \def\conInput{Input}
39
- \def\conOutput{Output}
40
- \def\conExample{Example}
41
- \def\conExamples{Examples}
42
- \def\conExampleNotes{Notes}
43
- \def\conExplanation{Explanation}
44
- \def\conExplanations{Explanations}
45
- \def\conIllustration{Illustration}
46
- \def\conScoring{Scoring}
47
- \def\conNote{Note}
48
- \def\conNotes{Notes}
49
- \def\conConstraints{Constraints}
50
- \def\conversion{version}
51
- \def\conrevision{revision}
52
- \def\conSubtaskOne{Subtask 1}
53
- \def\conSubtaskTwo{Subtask 2}
54
- \def\conSubtaskThree{Subtask 3}
55
- \def\conSubtaskFour{Subtask 4}
56
- \def\conSubtaskFive{Subtask 5}
57
- \def\conSubtaskSix{Subtask 6}
58
- \def\conSubtask{Subtask}
59
- \def\conpoints{points}
60
- \def\conPage{Page}
61
- \def\conof{of}
62
- \def\connotstated{not stated}
63
- \def\conIntentionallyBlankPage{This page is intentionally left blank}
64
- \def\conTimeSuffix{s}
65
- \def\conMemorySufix{mb}
66
-
67
- % fancyhdr
68
-
69
- % font
70
-
71
- \newcommand{\afterfrontpage}{
72
- \vspace*{\fill}
73
- \begin{center}
74
- \problemheadfont\conIntentionallyBlankPage
75
- \end{center}
76
- \vspace*{\fill}
77
- \clearpage
78
- }
79
- \newcommand{\problemheadfont}{\LARGE}
80
- \newcommand{\problemsectionfont}{\Large}
81
- \newcommand{\problemtextfont}{\normalsize}
82
- \newcommand{\beforeproblemsectioncaption}{\smallbreak\smallskip}
83
- \newcommand{\afterproblemsectioncaption}{\smallskip}
84
- \newcommand{\problemend}{
85
- \clearpage
86
- \ifintentionallyblankpages
87
- \ifodd\value{page}
88
- \else
89
- \afterfrontpage
90
- \fi
91
- \fi
92
- }
93
- \def\presectionspacing{\hspace{3mm}}
94
-
95
- % section commands from olymp
96
-
97
- \newcommand{\createsection}{\@newsection}
98
-
99
- \def\@newsection#1#2{\DeclareRobustCommand{#1}{
100
- {\beforeproblemsectioncaption\bf\problemsectionfont\presectionspacing{#2}}
101
- \nopagebreak\par\afterproblemsectioncaption}
102
- }
103
-
104
- \newcommand{\createsectionpar}{\@newsectionpar}
105
-
106
- \def\@newsectionpar#1#2{\DeclareRobustCommand{#1}[1]{
107
- {\beforeproblemsectioncaption\bf\problemsectionfont{#2~##1}}
108
- \nopagebreak\par\afterproblemsectioncaption}
109
- }
110
-
111
- \newcommand{\createsectionpartwo}{\@newsectionpartwo}
112
-
113
- \def\@newsectionpartwo#1#2#3{\DeclareRobustCommand{#1}[2]{
114
- {\beforeproblemsectioncaption\problemsectionfont{\textbf{#2}~\textbf{##1}~(##2~#3)}}
115
- \nopagebreak\par\afterproblemsectioncaption}
116
- }
117
-
118
- \createsection{\Instructions}{\conInstructions}
119
- \createsection{\Specification}{\conSpecification}
120
- \createsection{\Interaction}{\conInteraction}
121
- \createsection{\InputFile}{\conInput}
122
- \createsection{\OutputFile}{\conOutput}
123
- \createsection{\Example}{\conExample}
124
- \createsection{\Examples}{\conExamples}
125
- \createsection{\Explanation}{\conExplanation}
126
- \createsection{\Explanations}{\conExplanations}
127
- \createsection{\Illustration}{\conIllustration}
128
- \createsection{\Scoring}{\conScoring}
129
- \createsection{\Note}{\conNote}
130
- \createsection{\Notes}{\conNotes}
131
- \createsection{\Constraints}{\conConstraints}
132
- \createsection{\SubtaskOne}{\conSubtaskOne}
133
- \createsection{\SubtaskTwo}{\conSubtaskTwo}
134
- \createsection{\SubtaskThree}{\conSubtaskThree}
135
- \createsection{\SubtaskFour}{\conSubtaskFour}
136
- \createsection{\SubtaskFive}{\conSubtaskFive}
137
- \createsection{\SubtaskSix}{\conSubtaskSix}
138
- \createsectionpar{\Subtask}{\conSubtask}
139
- \createsectionpartwo{\SubtaskWithCost}{\conSubtask}{\conpoints}
140
- \createsection{\Editorial}{\conEditorial}
141
-
142
- % frontpage
143
- \newenvironment{frontpage}[3]{
144
- \thispagestyle{empty}
145
- {\centering
146
- \noindent\rule{18cm}{0.4pt}
147
-
148
- \vspace{1cm}
149
- %\includegraphics[width=0.15\textwidth]{example-image-1x1}\par\vspace{1cm}
150
- {\LARGE #1\par}
151
- %\vspace{1cm}
152
- {\Large #2\par}
153
- \vspace{1cm}}
154
- \def\thisFrontPageDate{#3}
155
- \Instructions
156
- }{
157
- \vspace*{\fill}
158
- \centering{\Large \thisFrontPageDate\par}
159
- \centering\noindent\rule{18cm}{0.4pt}
160
- \newpage
161
- }
162
-
163
- % problem
164
- \newcounter{ProblemCounter}
165
-
166
- \newenvironment{problem}[6][]{
167
-
168
- \def\ProblemLetter{#1}
169
- \stepcounter{ProblemCounter}
170
- \begin{center}
171
- \ifx\ProblemLetter\empty
172
- \else
173
- \problemtextfont\textbf{\conProblem\ \ProblemLetter} \\
174
- \fi
175
- \problemheadfont\textsf{#2} \\
176
- \ifx#5\empty
177
- \else
178
- \problemtextfont{\conTimeLimit\ #5} \\
179
- \fi
180
- \ifx#6\empty
181
- \else
182
- \problemtextfont{\conMemoryLimit\ #6} \\
183
- \fi
184
- %\problemtextfont{\conSourceFileName\ \ProblemLetter\ \conSourceExts} \\
185
- \vspace{0.3cm}
186
- \noindent\rule{16cm}{0.4pt}
187
- \end{center}
188
- \problemtextfont
189
- \newcommand{\InputFileName}{#3}
190
- \newcommand{\OutputFileName}{#4}
191
- }{\problemend}
192
-
193
- % examples
194
- % -- Setup sizes --
195
- \newlength{\thelinewidth}
196
- \newlength{\exmpwidinf}
197
- \newlength{\exmpwidouf}
198
- \newlength{\exmpwidewid}
199
- \newlength{\exmpthreewidinf}
200
- \newlength{\exmpthreewidouf}
201
- \newlength{\exmpthreewidnote}
202
-
203
- \thelinewidth=\textwidth
204
- \exmpwidinf=0.43\thelinewidth
205
- \exmpwidouf=0.43\thelinewidth
206
- \exmpwidewid=0.9\thelinewidth
207
- \exmpthreewidinf=0.28\thelinewidth
208
- \exmpthreewidouf=0.28\thelinewidth
209
- \exmpthreewidnote=0.30\thelinewidth
210
-
211
- \def\s@tm@cr@s{
212
- \def\widthin##1{\exmpwidinf=##1\relax}
213
- \def\widthout##1{\exmpwidouf=##1\relax}
214
- \def\stretchin##1{\advance\exmpwidinf by ##1\relax}
215
- \def\stretchout##1{\advance\exmpwidouf by ##1\relax}
216
- \@ifstar{
217
- \error Star must not be used in example environment any more
218
- }
219
- }
220
-
221
- % This is magic, which delete space after verbatiminput
222
- \addto@hook{\every@verbatim}{\topsep=0pt\relax}
223
-
224
- \newenvironment{example}[1][]{
225
- \s@tm@cr@s#1
226
- \ttfamily\obeyspaces\obeylines\frenchspacing
227
- \newcommand{\exmp}[2]{
228
- \begin{minipage}[t]{\exmpwidinf}\rightskip=0pt plus 1fill\relax##1\medskip\end{minipage}&
229
- \begin{minipage}[t]{\exmpwidouf}\rightskip=0pt plus 1fill\relax##2\medskip\end{minipage}\\
230
- \hline
231
- }
232
-
233
- \newcommand{\exmpfile}[2]{
234
- \exmp{
235
- \verbatiminput{##1}
236
- }{
237
- \verbatiminput{##2}
238
- }%
239
- }
240
-
241
- \begin{center}
242
- \begin{tabular}{|l|l|}
243
- \hline
244
- \multicolumn{1}{|c|}{\bf\texttt{\textbf{\InputFileName}}} &
245
- \multicolumn{1}{|c|}{\bf\texttt{\textbf{\OutputFileName}}} \\
246
- \hline
247
- }{
248
- \end{tabular}
249
- \end{center}
250
- }
@@ -1,250 +0,0 @@
1
- % Copyright (c) 2005-2013 Olymp.sty Developers Group.
2
- % See https://github.com/GassaFM/olymp.sty/blob/master/AUTHORS
3
- % for the complete list of authors.
4
-
5
- %\ProvidesPackage{olymp}
6
- \usepackage{verbatim}
7
- \usepackage{xstring}
8
-
9
- % \makeatletter
10
- % \newcommand\FirstWord[1]{\@firstword#1 \@nil}%
11
- % \def\@firstword#1 #2\@nil{\@removecomma#1,\@nil}%
12
- % \def\@removecomma#1,#2\@nil{\@removeperiod#1.\@nil}
13
- % \def\@removeperiod#1.#2\@nil{\@removesemicolon#1;\@nil}
14
- % \def\@removesemicolon#1;#2\@nil{#1}
15
- % \makeatother
16
- \newcommand\FirstWord[1]{#1}
17
-
18
- \ProcessOptions\relax
19
-
20
- \setlength{\parindent}{0pt}
21
- \setlength{\parskip}{0.8em}
22
-
23
- % contest keywords definitions
24
- \def\conProblemTutorial{Problem Tutorial}
25
- \def\conProblem{Problem}
26
- \def\conProblemAuthor{Author:}
27
- \def\conProblemDeveloper{Developer:}
28
- \def\conProblemOrigin{Origin:}
29
- \def\conInputFileName{Input file:}
30
- \def\conOutputFileName{Output file:}
31
- \def\conTimeLimit{Time limit:}
32
- \def\conMemoryLimit{Memory limit:}
33
- \def\conFeedback{Feedback:}
34
- \def\constdin{standard input}
35
- \def\constdout{standard output}
36
- \def\conSpecification{Specification}
37
- \def\conInteraction{Interaction Protocol}
38
- \def\conInput{Input}
39
- \def\conOutput{Output}
40
- \def\conExample{Example}
41
- \def\conExamples{Examples}
42
- \def\conExampleNotes{Notes}
43
- \def\conExplanation{Explanation}
44
- \def\conExplanations{Explanations}
45
- \def\conIllustration{Illustration}
46
- \def\conScoring{Scoring}
47
- \def\conNote{Note}
48
- \def\conNotes{Notes}
49
- \def\conConstraints{Constraints}
50
- \def\conversion{version}
51
- \def\conrevision{revision}
52
- \def\conSubtaskOne{Subtask 1}
53
- \def\conSubtaskTwo{Subtask 2}
54
- \def\conSubtaskThree{Subtask 3}
55
- \def\conSubtaskFour{Subtask 4}
56
- \def\conSubtaskFive{Subtask 5}
57
- \def\conSubtaskSix{Subtask 6}
58
- \def\conSubtask{Subtask}
59
- \def\conpoints{points}
60
- \def\conPage{Page}
61
- \def\conof{of}
62
- \def\connotstated{not stated}
63
- \def\conIntentionallyBlankPage{This page is intentionally left blank}
64
- \def\conTimeSuffix{s}
65
- \def\conMemorySufix{mb}
66
-
67
- % fancyhdr
68
-
69
- % font
70
-
71
- \newcommand{\afterfrontpage}{
72
- \vspace*{\fill}
73
- \begin{center}
74
- \problemheadfont\conIntentionallyBlankPage
75
- \end{center}
76
- \vspace*{\fill}
77
- \clearpage
78
- }
79
- \newcommand{\problemheadfont}{\LARGE}
80
- \newcommand{\problemsectionfont}{\Large}
81
- \newcommand{\problemtextfont}{\normalsize}
82
- \newcommand{\beforeproblemsectioncaption}{\smallbreak\smallskip}
83
- \newcommand{\afterproblemsectioncaption}{\smallskip}
84
- \newcommand{\problemend}{
85
- \clearpage
86
- \ifintentionallyblankpages
87
- \ifodd\value{page}
88
- \else
89
- \afterfrontpage
90
- \fi
91
- \fi
92
- }
93
- \def\presectionspacing{\hspace{3mm}}
94
-
95
- % section commands from olymp
96
-
97
- \newcommand{\createsection}{\@newsection}
98
-
99
- \def\@newsection#1#2{\DeclareRobustCommand{#1}{
100
- {\beforeproblemsectioncaption\bf\problemsectionfont\presectionspacing{#2}}
101
- \nopagebreak\par\afterproblemsectioncaption}
102
- }
103
-
104
- \newcommand{\createsectionpar}{\@newsectionpar}
105
-
106
- \def\@newsectionpar#1#2{\DeclareRobustCommand{#1}[1]{
107
- {\beforeproblemsectioncaption\bf\problemsectionfont{#2~##1}}
108
- \nopagebreak\par\afterproblemsectioncaption}
109
- }
110
-
111
- \newcommand{\createsectionpartwo}{\@newsectionpartwo}
112
-
113
- \def\@newsectionpartwo#1#2#3{\DeclareRobustCommand{#1}[2]{
114
- {\beforeproblemsectioncaption\problemsectionfont{\textbf{#2}~\textbf{##1}~(##2~#3)}}
115
- \nopagebreak\par\afterproblemsectioncaption}
116
- }
117
-
118
- \createsection{\Instructions}{\conInstructions}
119
- \createsection{\Specification}{\conSpecification}
120
- \createsection{\Interaction}{\conInteraction}
121
- \createsection{\InputFile}{\conInput}
122
- \createsection{\OutputFile}{\conOutput}
123
- \createsection{\Example}{\conExample}
124
- \createsection{\Examples}{\conExamples}
125
- \createsection{\Explanation}{\conExplanation}
126
- \createsection{\Explanations}{\conExplanations}
127
- \createsection{\Illustration}{\conIllustration}
128
- \createsection{\Scoring}{\conScoring}
129
- \createsection{\Note}{\conNote}
130
- \createsection{\Notes}{\conNotes}
131
- \createsection{\Constraints}{\conConstraints}
132
- \createsection{\SubtaskOne}{\conSubtaskOne}
133
- \createsection{\SubtaskTwo}{\conSubtaskTwo}
134
- \createsection{\SubtaskThree}{\conSubtaskThree}
135
- \createsection{\SubtaskFour}{\conSubtaskFour}
136
- \createsection{\SubtaskFive}{\conSubtaskFive}
137
- \createsection{\SubtaskSix}{\conSubtaskSix}
138
- \createsectionpar{\Subtask}{\conSubtask}
139
- \createsectionpartwo{\SubtaskWithCost}{\conSubtask}{\conpoints}
140
- \createsection{\Editorial}{\conEditorial}
141
-
142
- % frontpage
143
- \newenvironment{frontpage}[3]{
144
- \thispagestyle{empty}
145
- {\centering
146
- \noindent\rule{18cm}{0.4pt}
147
-
148
- \vspace{1cm}
149
- %\includegraphics[width=0.15\textwidth]{example-image-1x1}\par\vspace{1cm}
150
- {\LARGE #1\par}
151
- %\vspace{1cm}
152
- {\Large #2\par}
153
- \vspace{1cm}}
154
- \def\thisFrontPageDate{#3}
155
- \Instructions
156
- }{
157
- \vspace*{\fill}
158
- \centering{\Large \thisFrontPageDate\par}
159
- \centering\noindent\rule{18cm}{0.4pt}
160
- \newpage
161
- }
162
-
163
- % problem
164
- \newcounter{ProblemCounter}
165
-
166
- \newenvironment{problem}[6][]{
167
-
168
- \def\ProblemLetter{#1}
169
- \stepcounter{ProblemCounter}
170
- \begin{center}
171
- \ifx\ProblemLetter\empty
172
- \else
173
- \problemtextfont\textbf{\conProblem\ \ProblemLetter} \\
174
- \fi
175
- \problemheadfont\textsf{#2} \\
176
- \ifx#5\empty
177
- \else
178
- \problemtextfont{\conTimeLimit\ #5} \\
179
- \fi
180
- \ifx#6\empty
181
- \else
182
- \problemtextfont{\conMemoryLimit\ #6} \\
183
- \fi
184
- %\problemtextfont{\conSourceFileName\ \ProblemLetter\ \conSourceExts} \\
185
- \vspace{0.3cm}
186
- \noindent\rule{16cm}{0.4pt}
187
- \end{center}
188
- \problemtextfont
189
- \newcommand{\InputFileName}{#3}
190
- \newcommand{\OutputFileName}{#4}
191
- }{\problemend}
192
-
193
- % examples
194
- % -- Setup sizes --
195
- \newlength{\thelinewidth}
196
- \newlength{\exmpwidinf}
197
- \newlength{\exmpwidouf}
198
- \newlength{\exmpwidewid}
199
- \newlength{\exmpthreewidinf}
200
- \newlength{\exmpthreewidouf}
201
- \newlength{\exmpthreewidnote}
202
-
203
- \thelinewidth=\textwidth
204
- \exmpwidinf=0.43\thelinewidth
205
- \exmpwidouf=0.43\thelinewidth
206
- \exmpwidewid=0.9\thelinewidth
207
- \exmpthreewidinf=0.28\thelinewidth
208
- \exmpthreewidouf=0.28\thelinewidth
209
- \exmpthreewidnote=0.30\thelinewidth
210
-
211
- \def\s@tm@cr@s{
212
- \def\widthin##1{\exmpwidinf=##1\relax}
213
- \def\widthout##1{\exmpwidouf=##1\relax}
214
- \def\stretchin##1{\advance\exmpwidinf by ##1\relax}
215
- \def\stretchout##1{\advance\exmpwidouf by ##1\relax}
216
- \@ifstar{
217
- \error Star must not be used in example environment any more
218
- }
219
- }
220
-
221
- % This is magic, which delete space after verbatiminput
222
- \addto@hook{\every@verbatim}{\topsep=0pt\relax}
223
-
224
- \newenvironment{example}[1][]{
225
- \s@tm@cr@s#1
226
- \ttfamily\obeyspaces\obeylines\frenchspacing
227
- \newcommand{\exmp}[2]{
228
- \begin{minipage}[t]{\exmpwidinf}\rightskip=0pt plus 1fill\relax##1\medskip\end{minipage}&
229
- \begin{minipage}[t]{\exmpwidouf}\rightskip=0pt plus 1fill\relax##2\medskip\end{minipage}\\
230
- \hline
231
- }
232
-
233
- \newcommand{\exmpfile}[2]{
234
- \exmp{
235
- \verbatiminput{##1}
236
- }{
237
- \verbatiminput{##2}
238
- }%
239
- }
240
-
241
- \begin{center}
242
- \begin{tabular}{|l|l|}
243
- \hline
244
- \multicolumn{1}{|c|}{\bf\texttt{\textbf{\InputFileName}}} &
245
- \multicolumn{1}{|c|}{\bf\texttt{\textbf{\OutputFileName}}} \\
246
- \hline
247
- }{
248
- \end{tabular}
249
- \end{center}
250
- }
File without changes