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
@@ -0,0 +1,322 @@
1
+ \usepackage{caption}
2
+ \usepackage{epsfig}
3
+ \usepackage{moreverb}
4
+ \usepackage{float}
5
+ \usepackage{fancyvrb}
6
+ \usepackage{multicol}
7
+ \usepackage{hyperref}
8
+ \usepackage{ifthen}
9
+ \usepackage{titlesec}
10
+ \usepackage{pmboxdraw}
11
+ \usepackage{xcolor}
12
+ \usepackage{colortbl}
13
+ \usepackage{tikz}
14
+ \usepackage{subcaption}
15
+ \usetikzlibrary{matrix,positioning,fit,scopes,chains}
16
+ \let\mytitleformat\titleformat
17
+ \let\titleformat\relax
18
+ \usepackage{logicpuzzle}
19
+ \usepackage{enumitem}
20
+ \usepackage{amsfonts}
21
+ \usepackage[brazil]{babel}
22
+ \usepackage[utf8]{inputenc}
23
+ \usepackage[T1]{fontenc}
24
+ \usepackage{indentfirst}
25
+ \usepackage{pdftexcmds}
26
+ \usepackage{amsmath}
27
+
28
+ \captionsetup[figure]{labelformat=empty}
29
+ \setlist[itemize]{noitemsep, nolistsep}
30
+
31
+ \setlength{\marginparwidth}{0pt}
32
+ \setlength{\oddsidemargin}{-0.25cm}
33
+ \setlength{\evensidemargin}{-0.25cm}
34
+ \setlength{\marginparsep}{0pt}
35
+
36
+ \setlength{\parindent}{0cm}
37
+ \setlength{\parskip}{5pt}
38
+
39
+ \setlength{\textwidth}{16.5cm}
40
+ \setlength{\textheight}{25.5cm}
41
+
42
+ \setlength{\voffset}{-1in}
43
+
44
+ \newcommand{\insereArquivo}[1]{
45
+ \ifnum0\pdffilesize{#1}>0
46
+ \VerbatimInput[xleftmargin=0mm,numbers=none,obeytabs=true]{#1}\vspace{.5em}
47
+ \fi
48
+ }
49
+
50
+ \newcommand{\insereTexto}[1]{
51
+ \texttt{#1}
52
+ }
53
+
54
+ \def\portuguese{pt}
55
+ \ifx\lang\portuguese
56
+ \def\strTaskSheet{Caderno de Problemas}
57
+ \def\strSolutionSheet{Caderno de Soluções}
58
+ \def\strSponsored{Patrocínio}
59
+ \def\strHosted{Realização}
60
+ \def\strOrganized{Organização}
61
+ \def\strProblem{Problema }
62
+ \def\strExplanation{Explicação do exemplo }
63
+ \def\strInput{Entrada}
64
+ \def\strOutput{Saída}
65
+ \def\strInteraction{Interação}
66
+ \def\strSampleinput{Exemplo de entrada }
67
+ \def\strSampleoutput{Exemplo de saída }
68
+ \def\strSampleinteraction{Exemplo de interação }
69
+ \def\strInteractionread{Leitura}
70
+ \def\strInteractionwrite{Escrita}
71
+ \def\strExamples{Exemplos}
72
+ \def\strSolution{Solução}
73
+ \def\strNotes{Observações}
74
+ \else
75
+ \def\strTaskSheet{Task Sheet}
76
+ \def\strSolutionSheet{Solution Sheet}
77
+ \def\strSponsored{Sponsored by}
78
+ \def\strHosted{Hosted by}
79
+ \def\strOrganized{Organized by}
80
+ \def\strProblem{Problem }
81
+ \def\strExplanation{Explanation of sample }
82
+ \def\strInput{Input}
83
+ \def\strOutput{Output}
84
+ \def\strInteraction{Interaction}
85
+ \def\strSampleinput{Sample input }
86
+ \def\strSampleoutput{Sample output }
87
+ \def\strSampleinteraction{Sample interaction }
88
+ \def\strInteractionread{Read}
89
+ \def\strInteractionwrite{Write}
90
+ \def\strExamples{Examples}
91
+ \def\strSolution{Solution}
92
+ \def\strNotes{Notes}
93
+ \fi
94
+
95
+ \newcommand{\includeProblem}[3][]
96
+ {
97
+ \newpage
98
+ \def\ProblemLetter{#1}
99
+ \ifx\ProblemLetter\empty
100
+ {\huge{\bf #2}}
101
+ \else
102
+ {\huge{\bf \strProblem #1. #2}}
103
+ \fi
104
+ #3
105
+ }
106
+
107
+ \newcommand{\inputdesc}[1]{
108
+ \subsection*{\strInput}
109
+ {#1} }
110
+
111
+ \newcommand{\inputdescline}[1]{
112
+ \subsection*{\strInput}
113
+ \strInputdescline {#1} }
114
+
115
+ \newcommand{\outputdesc}[1]{
116
+ \subsection*{\strOutput}
117
+ {#1}}
118
+
119
+ \newcommand{\interactiondesc}[1]{
120
+ \subsection*{\strInteraction}
121
+ {#1}}
122
+
123
+ \newcommand{\sampledesc}[2]{
124
+ \subsection*{\strExplanation #1}
125
+ {#2}}
126
+
127
+
128
+ \newcommand{\incat}[1]{sample-#1.in}
129
+ \newcommand{\solcat}[1]{sample-#1.sol}
130
+ \newcounter{problemcounter}
131
+ \setcounter{problemcounter}{0}
132
+ \newcounter{exemplocounter}[problemcounter]
133
+ \setcounter{exemplocounter}{0}
134
+
135
+ \newcommand\mc[1]{\multicolumn{1}{l}{#1}}
136
+ \newcommand{\example}[2]{
137
+ {\small
138
+
139
+ \stepcounter{exemplocounter}
140
+
141
+ \begin{minipage}[c]{0.945\textwidth}
142
+ \begin{center}
143
+ \begin{tabular}{|l|l|}
144
+ \mc{\bf{\strSampleinput \arabic{exemplocounter}}}
145
+ &
146
+ \mc{\bf{\strSampleoutput \arabic{exemplocounter}}} \\
147
+
148
+ \hline
149
+ \begin{minipage}[t]{0.5\textwidth}
150
+ \vspace{0.01cm}
151
+ \insereArquivo{#1}
152
+ \vspace{-0.2cm}
153
+ \end{minipage}
154
+ &
155
+ \begin{minipage}[t]{0.5\textwidth}
156
+ \vspace{0.01cm}
157
+ \insereArquivo{#2}
158
+ \vspace{-0.2cm}
159
+ \end{minipage} \\
160
+ \hline
161
+ \end{tabular}
162
+ \end{center}
163
+ \end{minipage} % leave next line empty
164
+
165
+ }
166
+ } % example
167
+
168
+ \newcommand{\exampleInteractive}{
169
+ {\small
170
+
171
+ \stepcounter{exemplocounter}
172
+
173
+ \begin{center}
174
+ \begin{tabular}{lcr}
175
+ \begin{minipage}[t]{0.3\textwidth}
176
+ \hspace{-0.19cm}\bf{\strInteractionread}
177
+ \end{minipage}
178
+ &
179
+ \begin{minipage}[t]{0.3\textwidth}
180
+ \bf{\strSampleinteraction \arabic{exemplocounter}}
181
+ \end{minipage}
182
+ &
183
+ \begin{minipage}[t]{0.3\textwidth}
184
+ \hfill \bf{\strInteractionwrite}
185
+ \end{minipage}
186
+ \end{tabular}
187
+ \end{center}
188
+ \vspace{-0.5cm}
189
+ }
190
+ } % exampleInteractive
191
+
192
+ \newcommand{\interaction}[2]{
193
+ {\small
194
+
195
+ \ifthenelse{\equal{#2}{\string 0}}{
196
+ \vspace{-0.3cm}
197
+ \begin{tabular}{|l|}
198
+ \hline
199
+ \begin{minipage}[t]{0.55\textwidth}
200
+ \vspace{0.01cm}
201
+ \insereTexto{#1}
202
+ \vspace{0.28cm}
203
+ \end{minipage}
204
+ \\
205
+ \hline
206
+ \end{tabular}
207
+ }{
208
+ \vspace{-0.3cm}
209
+ \hfill
210
+ \begin{tabular}{|l|}
211
+ \hline
212
+ \begin{minipage}[t]{0.55\textwidth}
213
+ \vspace{0.01cm}
214
+ \insereTexto{#1}
215
+ \vspace{0.28cm}
216
+ \end{minipage}
217
+ \\
218
+ \hline
219
+ \end{tabular}
220
+ }
221
+
222
+ }
223
+ } % interaction
224
+
225
+ \newcommand{\explanation}[1]{
226
+ \textbf{\strExplanation\theexemplocounter}
227
+
228
+ {#1} % leave empty line
229
+
230
+ } % explanation
231
+
232
+ \addtolength{\parskip}{0.4\baselineskip}
233
+
234
+ \pagestyle{myheadings}
235
+
236
+ \newcounter{pcounter}\setcounter{pcounter}{0}
237
+ \newcounter{qcounter}\setcounter{qcounter}{0}
238
+
239
+ \usepackage{titlesec}
240
+
241
+ \titlespacing\section{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
242
+ \titlespacing\subsection{0pt}{6pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
243
+ \titlespacing\subsubsection{0pt}{6t plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
244
+
245
+ \newcommand{\InsertTitlePage}
246
+ {
247
+ \pagestyle{myheadings}
248
+ \markright{\Title -- \Year}
249
+
250
+ %%% Title Page
251
+ \begin{titlepage}
252
+ \vspace*{\fill}
253
+ \begin{center}
254
+
255
+ \includegraphics[width=8cm]{logo.png}
256
+
257
+ \vspace{0.8cm}
258
+ {\huge\bf \Title}\\[12pt]
259
+ {\large{\bf \strTaskSheet}}\\[12pt]
260
+ \vspace{1.5cm}
261
+ {\huge{\bf \Year}}
262
+
263
+ % \vspace{1cm}
264
+ % {\small \bf \strSponsored}\\[8pt]
265
+
266
+ % \includegraphics[width=16cm]{sponsors.png}
267
+
268
+ % \vspace{2cm}
269
+ % \begin{center}
270
+ % \setlength{\tabcolsep}{0.1\textwidth}
271
+ % \begin{tabular}{cc}
272
+ % {\small\bf \strHosted} & {\small\bf \strOrganized} \\
273
+ % \includegraphics[width=3cm]{host.png} & \includegraphics[width=4cm]{organizers.png} \\
274
+ % \end{tabular}
275
+ % \end{center}
276
+
277
+ \end{center}
278
+ \vspace*{\fill}
279
+ \end{titlepage}
280
+
281
+ \clearpage
282
+ }
283
+
284
+ \newcommand{\InsertEditorialTitlePage}
285
+ {
286
+ \pagestyle{myheadings}
287
+ \markright{\Title -- \Year}
288
+
289
+ %%% Title Page
290
+ \begin{titlepage}
291
+ \vspace*{\fill}
292
+ \begin{center}
293
+
294
+ \includegraphics[width=8cm]{logo.png}
295
+
296
+ \vspace{0.8cm}
297
+ {\huge\bf \Title}\\[12pt]
298
+ {\large{\bf \strSolutionSheet}}\\[12pt]
299
+ \vspace{1.5cm}
300
+ {\huge{\bf \Year}}
301
+
302
+ % \vspace{1cm}
303
+ % {\small \bf \strSponsored}\\[8pt]
304
+
305
+ % \includegraphics[width=16cm]{sponsors.png}
306
+
307
+ % \vspace{2cm}
308
+ % \begin{center}
309
+ % \setlength{\tabcolsep}{0.1\textwidth}
310
+ % \begin{tabular}{cc}
311
+ % {\small\bf \strHosted} & {\small\bf \strOrganized} \\
312
+ % \includegraphics[width=3cm]{host.png} & \includegraphics[width=4cm]{organizers.png} \\
313
+ % \end{tabular}
314
+ % \end{center}
315
+
316
+ \end{center}
317
+ \vspace*{\fill}
318
+ \end{titlepage}
319
+
320
+ \clearpage
321
+ }
322
+
@@ -1,89 +1,57 @@
1
+ \documentclass[a4paper,11pt]{article}
1
2
 
2
- \documentclass[titlepage, oneside, a4paper]{article}
3
-
4
- \usepackage {import}
5
- \usepackage[margin=25mm, left=17mm, right=17mm]{geometry}
6
- \usepackage[utf8]{inputenc}
7
- \usepackage[english]{babel}
8
- \usepackage{amsmath}
9
- \usepackage{amssymb}
10
- \usepackage{fancyhdr}
11
- \usepackage{comment}
12
- \usepackage{olymp}
13
- \usepackage{epigraph}
14
- \usepackage{expdlist}
15
- \usepackage{graphicx}
16
- \usepackage{ulem}
17
- \usepackage{lastpage}
3
+ \def\lang{\VAR{lang}}
4
+ \usepackage{icpc}
18
5
 
19
6
  %- if problem.blocks.preamble is defined
20
- \VAR{problem.blocks.preamble}
7
+ \VAR{problem.blocks.preamble}
21
8
  %- endif
22
9
 
23
- \def\showSourceFileName{1}
24
- \newif\ifintentionallyblankpages % comment this out to add blank pages
25
-
26
- \pagestyle{fancy}
27
- \fancyhf{}
28
- \renewcommand{\footrulewidth}{0.4pt}
29
-
30
- \title{}
31
- \author{}
32
- \date{}
33
-
34
- \makeatletter
35
- \let\newtitle\@title
36
- \let\newauthor\@author
37
- \let\newdate\@date
38
- \makeatother
39
-
40
- \rhead{\newtitle}
41
- \lhead{\newauthor}
42
- \lfoot{\newdate}
43
- \rfoot{\thepage}
44
-
45
10
  \begin{document}
46
11
 
47
- \begin{problem}
12
+ \includeProblem
48
13
  %- if problem.short_name is defined
49
- [\VAR{problem.short_name}]
50
- %- endif
51
- {\VAR{problem.title | escape}}
52
- {stdin}
53
- {stdout}
54
- {\VAR{problem.package.timeLimit / 1000 | round(1, 'floor')} s}
55
- {\VAR{problem.package.memoryLimit} MB}
56
-
57
- \VAR{problem.blocks.legend}
58
-
59
- %- if problem.blocks.input is defined
60
- \InputFile
61
- \VAR{problem.blocks.input}
62
- %- endif
63
-
64
- %- if problem.blocks.output is defined
65
- \OutputFile
66
- \VAR{problem.blocks.output}
67
- %- endif
68
-
69
- \Examples
70
-
71
- %- for sample in problem.samples
72
- \begin{example}
73
- \exmpfile{\VAR{sample.inputPath}}{\VAR{sample.outputPath if sample.outputPath is not none else ''}}%
74
- \end{example}
75
- %- endfor
76
-
77
- %- if problem.blocks.notes is defined
78
- \Notes
79
- \VAR{problem.blocks.notes}
14
+ [\VAR{problem.short_name}]
80
15
  %- endif
81
-
82
- %- if problem.blocks.editorial is defined
83
- \Editorial
84
- \VAR{problem.blocks.editorial}
85
- %- endif
86
-
87
- \end{problem}
88
-
16
+ {\VAR{problem.title | escape}}{
17
+
18
+ \VAR{problem.blocks.legend}
19
+
20
+ %- if problem.blocks.input is defined
21
+ \inputdesc{\VAR{problem.blocks.input}}
22
+ %- endif
23
+
24
+ %- if problem.blocks.output is defined
25
+ \outputdesc{\VAR{problem.blocks.output}}
26
+ %- endif
27
+
28
+ %- if problem.blocks.interaction is defined
29
+ \interactiondesc{\VAR{problem.blocks.interaction}}
30
+ %- endif
31
+
32
+ %- if problem.samples
33
+ \vspace{0.3cm}
34
+ \subsection*{\strExamples}
35
+ %- for sample in problem.samples
36
+ %- if sample.interaction is not none
37
+ \exampleInteractive
38
+ %- for entry in sample.interaction.entries
39
+ \interaction{\VAR{entry.data}}{\VAR{entry.pipe}}
40
+ %- endfor
41
+ %- else
42
+ \example{\VAR{sample.inputPath}}
43
+ {\VAR{sample.outputPath if sample.outputPath is not none else ''}}
44
+ %- endif
45
+ %- if sample.explanation is not none
46
+ \explanation{\VAR{sample.explanation}}
47
+ %- endif
48
+ %- endfor
49
+ %- endif
50
+
51
+ %- if problem.blocks.notes is defined
52
+ \subsection*{Observações}
53
+ \VAR{problem.blocks.notes}
54
+ %- endif
55
+ }
89
56
  \end{document}
57
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rbx.cp
3
- Version: 0.6.1
3
+ Version: 0.8.0
4
4
  Summary:
5
5
  Author: Roberto Sales
6
6
  Requires-Python: >=3.9.1,<4.0.0
@@ -22,9 +22,11 @@ Requires-Dist: gitpython (>=3.1.43,<4.0.0)
22
22
  Requires-Dist: jinja2 (>=3.1.4,<4.0.0)
23
23
  Requires-Dist: lark (>=1.2.2,<2.0.0)
24
24
  Requires-Dist: latexbuild (>=0.2.2,<0.3.0)
25
+ Requires-Dist: lz4 (>=4.4.4,<5.0.0)
25
26
  Requires-Dist: mechanize (>=0.4.10,<0.5.0)
26
27
  Requires-Dist: more-itertools (>=10.5.0,<11.0.0)
27
28
  Requires-Dist: nest-asyncio (>=1.6.0,<2.0.0)
29
+ Requires-Dist: ordered-set (>=4.1.0,<5.0.0)
28
30
  Requires-Dist: psutil (>=7.0.0,<8.0.0)
29
31
  Requires-Dist: pydantic (==2.8.2)
30
32
  Requires-Dist: pydantic-xml[lxml] (>=2.11.0,<3.0.0)
@@ -34,6 +36,7 @@ Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
34
36
  Requires-Dist: questionary (>=2.1.0,<3.0.0)
35
37
  Requires-Dist: requests (>=2.32.3,<3.0.0)
36
38
  Requires-Dist: rich (>=13.9.4,<14.0.0)
39
+ Requires-Dist: ruamel-yaml (>=0.18.14,<0.19.0)
37
40
  Requires-Dist: ruyaml (>=0.91.0,<0.92.0)
38
41
  Requires-Dist: syncer (>=2.0.3,<3.0.0)
39
42
  Requires-Dist: textual (>=3.1.1,<4.0.0)
@@ -3,20 +3,20 @@ rbx/annotations.py,sha256=qcJGL_INONSirH7LTrEma5RsweAIbO6QlRHVvRvb9ao,3521
3
3
  rbx/autoenum.py,sha256=cusv8ClXRlDVvhZ8eDrtYcL_2peXlHugAey_ht8roXk,12025
4
4
  rbx/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  rbx/box/builder.py,sha256=MDm2qqmhedAbhn3rWP6cDwbBsGhV6sz_2sg1zLkPDw0,3613
6
- rbx/box/cd.py,sha256=w7Z8Goq9gNwC4g0OWBazo-M25nysuTXYrhB4Q9DZ0nw,1820
6
+ rbx/box/cd.py,sha256=bPiSLMDNFtfOSYaQ9TBGm-Cl8SKajqDZMr98uXMvKA8,2699
7
7
  rbx/box/checkers.py,sha256=2eLfMOzJajoca26M4rOBxUxve3-BpxcMu_q2upI1Pcg,13017
8
- rbx/box/cli.py,sha256=NCKkdXF6_zmepw_ZAktH8WLTSCItwozboGe0x48JrZs,27643
9
- rbx/box/code.py,sha256=9Eba-LlvmMkfyiNAFOk2V2rRXKQvQYWyC_d0q195pZw,24445
8
+ rbx/box/cli.py,sha256=C1qPC6CYkAO7fc8OOlkfykZQgyfRAM4IBu3lHIV0slc,29417
9
+ rbx/box/code.py,sha256=QZM6_jkiij0WZXk6MX_tD3DI2xmOzmUbfDwR1uXOr0o,26696
10
10
  rbx/box/compile.py,sha256=Kzn5mEQu4vb91W9vjyt0DS6cfPJzFLTUoowFj7uHLUo,2539
11
11
  rbx/box/conftest.py,sha256=sEmciXSeDC-wmrZ1JSxbsUenKNP_VWW32mrCun2pY3I,1070
12
12
  rbx/box/contest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  rbx/box/contest/build_contest_statements.py,sha256=643LJY1XEgevitbnzc05Cgo8wcLp7w91Z1K4D5XKcqA,12016
14
14
  rbx/box/contest/contest_package.py,sha256=EqtmEw36Hpr7-AYf4hGV0tYDu5esj7k14w7ZEIYU36o,2980
15
15
  rbx/box/contest/contest_utils.py,sha256=fsWHG1e65wq9zvRY3tdf32VF0nU1yzGTOBX5yjXiNk4,1102
16
- rbx/box/contest/main.py,sha256=l8fAR_mB6AIa0QcIgL9X2oGjoXSHw6uiwJq6C-ZkoLc,6545
16
+ rbx/box/contest/main.py,sha256=qjBGZpSzeCHA3IfjVsO1yywNek9K-h6Fqtp1-ulHoVo,7399
17
17
  rbx/box/contest/schema.py,sha256=eb7xtyq078YYWYHueximNhyHFINzwgLMFm1j9U3LxBQ,7461
18
18
  rbx/box/contest/statements.py,sha256=wTLmCO3VlGUcN-CzBf-uKUSOAbLUnDeZhdMcsIuF63A,3803
19
- rbx/box/creation.py,sha256=dJwtaG6520fK2BflLKVtXSHiMABX0q-m3gJ465h7k0Y,1301
19
+ rbx/box/creation.py,sha256=I3sclB5WTK_pcXDnYU6LEbvGVSHwRS_30L3GVAz-QqM,1369
20
20
  rbx/box/deferred.py,sha256=II3X9e87JCOZtmspnHh-n4PFqh-FsH_oc0XJHZ9ZYVQ,691
21
21
  rbx/box/download.py,sha256=tLW5gLVeLk0gHMEMwScSoHIXQPkXuPsqXzItsrsnUZY,3070
22
22
  rbx/box/dump_schemas.py,sha256=3j5t47_vJmXj0BCczxDX6ByOcsfolGEDNCBXlPpk86w,593
@@ -27,14 +27,15 @@ rbx/box/formatting.py,sha256=drxGLRS-uh_5j0GTmk8kAq0NlWpM5WoSBJoDHh9KXNI,1222
27
27
  rbx/box/generators.py,sha256=0HiNZfZXvEpXLHP1D0cJp-fgSujOm4jPDdniWyy8HrI,13824
28
28
  rbx/box/generators_test.py,sha256=J7aBfuJhU84MWDWzgReRoOuQw_hVa09B8gTKAvL2XVo,1987
29
29
  rbx/box/git_utils.py,sha256=VlUgzuHOCnrjjiJQnDB32qDHbHw_zkwgA7wm4bloibc,750
30
+ rbx/box/global_package.py,sha256=OMnvqY8VQlP9YVSZwH5LCVkTsE7zNIhhRcslIWktkQc,2016
30
31
  rbx/box/header.py,sha256=ifErXcIxG5lM5AyRiHDr7JE401vR4ORNXCNpHXxN_ls,2001
31
32
  rbx/box/lang.py,sha256=GaWvf4rgukflIZ9ti4MUKSJcz9wm2mIVuFcrO-pA8L8,669
32
33
  rbx/box/lazy_importing_main.py,sha256=6Z8As7qVFFT619xHH9Xt8VCH57NjC4aDxfAgkWiUwT8,116
33
34
  rbx/box/lazy_importing_test.py,sha256=B0-b3y_DkxEmtVfu4NfmVsgVdFl6kRCsEL6GLMHJISo,628
34
- rbx/box/linting.py,sha256=Kr9ySmGxM0dkXmQKJ6w40eAOmFYdnevdMwd3WGeeyrY,842
35
+ rbx/box/linting.py,sha256=XdIgn8uRmPt06mLaP9ROnn6P1aSRdery6FkiLazLDM8,3181
35
36
  rbx/box/main.py,sha256=a8CYi77kOywPFly4-ucEIJLXQW-1NFp91kK2fA42YTE,86
36
37
  rbx/box/naming.py,sha256=pOG37X_wQM9CCSYwJIUf-b-ZHEs_nchO7wQEdP_quJg,1367
37
- rbx/box/package.py,sha256=ZywWmXjQo-A14fMOhOCzAO5IjFX9x-TBs8PusAv8iWE,13771
38
+ rbx/box/package.py,sha256=fxguACsau6zlP7O77cfwJG_tyopKFvezQTapFc0W43M,13529
38
39
  rbx/box/packaging/boca/extension.py,sha256=EQALNEOv4zVDXSKs_dk11n92y7cBZVn8TogIK683lE0,890
39
40
  rbx/box/packaging/boca/packager.py,sha256=MEVXTGtMWxcXetvXZ4td-AtOUTM68WeRqy5yt-7Lg28,13675
40
41
  rbx/box/packaging/contest_main.py,sha256=7YQWmzl1rOdO7cWFc_D6zhywIE12lKJY1O6hnrxkOLs,3168
@@ -47,16 +48,16 @@ rbx/box/packaging/polygon/polygon_api.py,sha256=mPKEqiwANJ1nr-JhOgzGMaDhnbljsAgz
47
48
  rbx/box/packaging/polygon/test.py,sha256=bgEju5PwudgyfwxXJagm8fM6CJVlWM6l_-2q1V-oKaQ,3069
48
49
  rbx/box/packaging/polygon/upload.py,sha256=6dIbjwygKtirLBkbh40UgtHU1NHGxSMoFAtg2BcC2II,12902
49
50
  rbx/box/packaging/polygon/xml_schema.py,sha256=ZgcLyvxggMUccbTNdzflue5G-FTN2_ZmOGGF7FD0Y5A,2851
50
- rbx/box/presets/__init__.py,sha256=tuLdCvuFJptJEhGcllEs86_2xxaFmScBOtPNhXWb3NU,22713
51
+ rbx/box/presets/__init__.py,sha256=9BLun8zOwbn6T9eyNtIMONL3Ty5j77UUPzenB2-JOpY,22709
51
52
  rbx/box/presets/fetch.py,sha256=900aq9S8e12TlgSenG0iHgtF4OWgqavZsptgI_a1YKM,2508
52
53
  rbx/box/presets/lock_schema.py,sha256=Ohxs5J_B5_Dr8ZajptGqKzRzIjQS2ehDHbCOSy07PyY,309
53
54
  rbx/box/presets/schema.py,sha256=KhAZjA5VU7dBEvGc22jBWO8JHKkQ-sbPz6EcJK8Rgfg,2299
54
- rbx/box/remote.py,sha256=2xN0XSWoRyDY0-FNKejK0x8iKhRuVsluIMKKb-gD7bI,4572
55
+ rbx/box/remote.py,sha256=TgPYKaoOYESyHUjUCvuNkeJyloKtWcZPzjgh-_wN05o,5182
55
56
  rbx/box/retries.py,sha256=2K2AiFdtTaVsbzSgupbP4xr4QQ7LFeGBOcyXLinVf0I,4950
56
- rbx/box/sanitizers/warning_stack.py,sha256=RI97_GJgdjTKIXY_r0EKp5h0qQQSDSdNDh5K7zINrqs,2861
57
+ rbx/box/sanitizers/warning_stack.py,sha256=Tzz0vYT6YrQfG5K6pgeGbIlQWwFTaNdi6YXGRlwTkTc,2864
57
58
  rbx/box/schema.py,sha256=424VcpZzY2qUz8rlETwIqrzzwmnoARILEO7Wf2P61BY,18855
58
59
  rbx/box/setter_config.py,sha256=9iObg6BwxQhFAhIOk31Jc0BDDpRYVGf3SyLIOsWIltM,4393
59
- rbx/box/solutions.py,sha256=g2jgDtSCqvlG-WiiJpTibLDljil2tRCKNelGS8qTrXQ,53357
60
+ rbx/box/solutions.py,sha256=oD9LS34zoG9SDrWytukWaDdSjOsfBEg-atMsNmFwBWg,53583
60
61
  rbx/box/solutions_test.py,sha256=PX1TQoRzNd9mi1SGsG7WFrpqFgNrNX5Kwt0mkwFdoOA,1749
61
62
  rbx/box/state.py,sha256=MMf3DvfQji0jKEliCHct2Tpp_0epL1tvP8HbHNArQIc,166
62
63
  rbx/box/statements/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -67,12 +68,12 @@ rbx/box/statements/joiners.py,sha256=jItNXkAbTjFQpPMgfDMW86n3vMTbaE8sgo9I8Yf4Txg
67
68
  rbx/box/statements/latex.py,sha256=LkcHwXjMFxbw--Gj9T1VkFKQFsXhY9dN7xZHpZycNW8,1346
68
69
  rbx/box/statements/latex_jinja.py,sha256=6whLCIHzPjq7oeDwzUgdvirpLA4Y3G-w319DhzPwPUI,8960
69
70
  rbx/box/statements/schema.py,sha256=QIUkQhrLb3rqAdvzDSwL3r4uAvDv-mKsWRtfCEH2L7Y,4685
70
- rbx/box/stats.py,sha256=hXp4xF0_dI5TuU7unxAM5q0cVE9e1phmFbBS0PRQUbA,2999
71
- rbx/box/stresses.py,sha256=SOfYhJxge3ykuLlBMALM0IAmpZuOZFS9EP8Jmn6yHiw,12923
71
+ rbx/box/stats.py,sha256=rUAnmp7kTgUvIQ56NLpQaIQkazB37MVcUos5en3xUQw,3258
72
+ rbx/box/stresses.py,sha256=ElXC1SCa4sfn3Wl2A6WxWjv9Cup5aPlUi4pRO_DSY_A,12061
72
73
  rbx/box/stressing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- rbx/box/stressing/finder_parser.py,sha256=jXpYNa4FyugzmHi3r96Uv4rU1krRQJc5Ihr9jf1cvNo,11918
74
+ rbx/box/stressing/finder_parser.py,sha256=PnONJD2yun5X5EmHqkaz-rh3DHhn_BkTPHZrIXRKZbw,11898
74
75
  rbx/box/stressing/generator_parser.py,sha256=oHZryjR3YohgaSO9WEirQ7b2e-98WgZStF0N99W4Thw,7380
75
- rbx/box/tasks.py,sha256=JygSpQzHxH71JwBJCl_JEbAfVMVz34lKjj5bhqQFqaM,10649
76
+ rbx/box/tasks.py,sha256=VpmQcOEPvcnQ8fh4nrZGnkGDIoJOHZzHoa9x_HNG1P0,11239
76
77
  rbx/box/testcase_extractors.py,sha256=J43eG7vpxc5nP_2yhrXJODkd4EYlV4WiYVbM6hzipY4,11944
77
78
  rbx/box/testcase_utils.py,sha256=epal6TFd2PK3dbEvTTr9tCebfmbF-rQD0d3xW8umriA,6860
78
79
  rbx/box/testcases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -81,7 +82,7 @@ rbx/box/tooling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
82
  rbx/box/tooling/boca/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
83
  rbx/box/tooling/boca/main.py,sha256=knl1rpaHIwA63KkzMJMZQrejzMpbTPBhYqGx1IpuNm4,289
83
84
  rbx/box/tooling/boca/scrape.py,sha256=q1BoVstfLbw5CwB9e2hQnseBv6HQMnXq2z_tk18ui6M,1024
84
- rbx/box/tooling/boca/scraper.py,sha256=ISz8kfEN6srnjJHPdG87wOJgNstEcqrkXF-4PFE8UDg,12686
85
+ rbx/box/tooling/boca/scraper.py,sha256=BVs3GRS7VRY1I6YzfPDc0Se0cSB_OUB61bvkJxFhUc8,12682
85
86
  rbx/box/tooling/main.py,sha256=4nVXUprVUFcqtHU5SMSsOvPlOV9d0fZFPndRUvHrB5I,205
86
87
  rbx/box/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
88
  rbx/box/ui/captured_log.py,sha256=HPoV6LZohuECmjoqOdM_xFZbpICzQnI4n3rF-lf_b1Q,11634
@@ -118,23 +119,26 @@ rbx/console.py,sha256=X8EJy68OROgh6ao3ZcUjZm5Y56VFMzen58ywAuQ7pAU,990
118
119
  rbx/create.py,sha256=ezUq9KiSA-88ASd8CtjWXw8UB4LCaQ3Gib3OgvsLK-Q,986
119
120
  rbx/edit.py,sha256=Zqnx_Pt06ijCxV-pZKGCJhjKB-nVO0QCM6xSBwPWGoE,798
120
121
  rbx/grading/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
- rbx/grading/caching.py,sha256=tUDkhCaH8vA82_Iv-LRBhFjUQY13YWOSKG_3B2DhXpA,12573
122
+ rbx/grading/caching.py,sha256=T86-Q5-VVhXSSF0wC6JoH1kRFKL03l0l_Qf0unWaTE0,14611
122
123
  rbx/grading/conftest.py,sha256=iN9LUG1IQqhK5JjkctcP68v6675oYsiD2sQSgyLMTqw,960
124
+ rbx/grading/debug_context.py,sha256=kuAXEI8yRG8xfhS9WKKIRh9X0e5JUD8zvl_cpczJTC8,699
125
+ rbx/grading/grading_context.py,sha256=VRGlGSyyNQfEuV_E0f5-P7NKb6nCzjplNFmFRBmvWwE,2665
123
126
  rbx/grading/judge/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
- rbx/grading/judge/cacher.py,sha256=TDgYDhehnJIv64EFiXxPAtVADD8q9WcJa_BE9TsE-JM,17669
127
+ rbx/grading/judge/cacher.py,sha256=wtRnVE_Es9xcqIgrhn6WzUoB90aihUuKaFyuVsusngg,20323
125
128
  rbx/grading/judge/digester.py,sha256=gtOIe_iL4PEWA7OKelW1gjSI-nBvbOpDPJGV8VQyjSg,912
126
- rbx/grading/judge/sandbox.py,sha256=EuBPWPuaRq6ikPd4G2V8fMJLJFkx7mdnNRSuql8loNE,26172
129
+ rbx/grading/judge/sandbox.py,sha256=fpwpv5CXrBzBZS7A9FmuOdgxH5_MsFNJh8ID872GAts,26249
127
130
  rbx/grading/judge/sandboxes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
131
  rbx/grading/judge/sandboxes/isolate.py,sha256=L-h2_GZfFGYQEsGjd-lyzqzpsl6_ytJZ5myVyQCxerk,25961
129
132
  rbx/grading/judge/sandboxes/stupid_sandbox.py,sha256=PSPQUBSSsP2OfEBbcLjx4m2rUlSxLZ-hKyMYP8zJWhI,11310
130
- rbx/grading/judge/sandboxes/timeit.py,sha256=RTfkL5eyjs0ci2c7r9szza7guexKcNWoPjrEFBzkR_4,11359
131
- rbx/grading/judge/storage.py,sha256=3vv0HvtenbUZBH33CB5ZzX66ppL22G6munBaAA9BgwQ,9418
133
+ rbx/grading/judge/sandboxes/timeit.py,sha256=V4Nu7YAU85jJp2_MtUbh4g8Fx5Wf3hax-4_UTNCorEs,11355
134
+ rbx/grading/judge/storage.py,sha256=84id8qvmeDDEVmDnxqqM_jbiRrxG4cp_n7U_sak3cH8,14346
132
135
  rbx/grading/judge/test.py,sha256=ll0Iw7zyOpGdKPD_PGH7dvUkb4stQLu-ikbQnqJvuAc,944
133
136
  rbx/grading/judge/testiso.py,sha256=v14DtkWiZFJ9AKMzrb0_vZKPWDt8jz8iIw1Z2O-Advk,1397
134
137
  rbx/grading/limits.py,sha256=ev312UTOo8S4-3AAVibQdXZclWCxS96CdbZxqW4y1kE,770
135
138
  rbx/grading/processing_context.py,sha256=Jg9kNnkH3hi2hiE6Gh23QwS89r9Zj230NMl1CUEHSfo,1866
136
- rbx/grading/steps.py,sha256=pL1eoUYOR09jn5MHUsHFU2xTnwrTBo_2K4UPkcy60Oo,29021
137
- rbx/grading/steps_with_caching.py,sha256=nez2YwgauGXKRjhk6tQxTDGQ-HEk7KfZOeAPhsxi5iw,3150
139
+ rbx/grading/profiling.py,sha256=OEdtoAzjYjLfi-QI5Ke7tLZzJeqvGpMB2utQBNuH3E4,3369
140
+ rbx/grading/steps.py,sha256=9EopMcRwviSlnXOWJgy-e_ZTU8j3PGEzJ10VYYVF2i4,30120
141
+ rbx/grading/steps_with_caching.py,sha256=b6NVZN46IG2r49uQ6u19Jj6AJ_nQFO6_pcKq4dWTwuQ,4579
138
142
  rbx/grading/steps_with_caching_run_test.py,sha256=mh4DRInrOGhnQFWD1SlcjDm_HvcSDFTDMSpAlG-Q5SI,15570
139
143
  rbx/grading_utils.py,sha256=lL2KtSkOsMElqrRoApQTbFcqVOeHVWUDTMCa3IsLpC4,4484
140
144
  rbx/hydration.py,sha256=WqbgIfCZNwqspVhMuUlx8-sNOYhq_ZWbeZnkcetuAZI,3669
@@ -196,25 +200,28 @@ rbx/resources/packagers/moj/scripts/py2/run.sh,sha256=qshf-K3mKP4c7b45S3D82Wj0Ai
196
200
  rbx/resources/packagers/moj/scripts/py3/compile.sh,sha256=XPn8qDR_gPAAZD9h5lVEMdBkrSogRZvpT4MAaNNp9nk,96
197
201
  rbx/resources/packagers/moj/scripts/py3/prep.sh,sha256=it1e07QRpsnku3-rXOO1ovaw-RJlVVPy9R3I6WWwgMM,126
198
202
  rbx/resources/packagers/moj/scripts/py3/run.sh,sha256=LrMi7Tap9no8gh64QNGUXbWauP6ZpSl-wEwXZ2qhPo0,197
199
- rbx/resources/presets/default/contest/contest.rbx.yml,sha256=8Eb5DI3RAX_0x9KO9xDS-L1PHYaNujcLOGQijFfTsPg,449
200
- rbx/resources/presets/default/contest/statement/contest.rbx.tex,sha256=3YDQo5c-SGbwXcd4uytyY_Mc7UriAditgdJnbN8UdHg,3062
201
- rbx/resources/presets/default/contest/statement/olymp.sty,sha256=k4TCQz1IeXV75oZ2_dcWEQ3ziTDegOEdnYn4Xb4vzsU,6766
202
- rbx/resources/presets/default/contest/statement/template.rbx.tex,sha256=XSGtd8JJKfOmU7yTWcC02x6NND9GUlj9uXOEJC168Lg,834
203
- rbx/resources/presets/default/preset.rbx.yml,sha256=hYesK08n17FBNThr4iaGrDfC0L3us_pzGDkhD33Ryt4,313
203
+ rbx/resources/presets/default/contest/.gitignore,sha256=M_5KUTjhLs68X2QFJ_ZBJgW9zCiGAWVrwPQ6a3Vq3qo,13
204
+ rbx/resources/presets/default/contest/contest.rbx.yml,sha256=RLjgB1YL28iV0-pNgDFhkug-PNjibh_YHGZ7dsUMR6U,821
205
+ rbx/resources/presets/default/contest/statement/contest.rbx.tex,sha256=MrZfADhSEhiFu7b_Kyc-HMm7RWRsEfUQo2egC1SI2BA,794
206
+ rbx/resources/presets/default/contest/statement/icpc.sty,sha256=YIZfUV1-HOyW6qj5_2XEx06_vsDtm1lNkuVFUGAxoUg,7114
207
+ rbx/resources/presets/default/contest/statement/instructions.tex,sha256=JG_eR13ukZgEahrrmrbg40H8cUzpoUE8QLocihN-fZ8,2414
208
+ rbx/resources/presets/default/contest/statement/logo.png,sha256=RLNYmZoc-BR6AZKkmr4UEg3h01YeFzvy604jMAQC7aA,414485
209
+ rbx/resources/presets/default/contest/statement/template.rbx.tex,sha256=53AU4dxrEzFr5toEwY3LH0PJ13hof6Z7RV2sb395UGw,1267
210
+ rbx/resources/presets/default/preset.rbx.yml,sha256=3ZRL4YSwDF9dWkdQx4v73Mwk1h70DwhfZ9IFLj1s7yI,409
204
211
  rbx/resources/presets/default/problem/.gitignore,sha256=zc-lnGQQZsLBaXpSshesA_QfxhiZdNCSJDEuKqlPtjw,29
205
- rbx/resources/presets/default/problem/gen.cpp,sha256=rn6sGRjZ1sFE1Rq02r6488iquY9xTrutcvLv4d1sohA,178
206
- rbx/resources/presets/default/problem/problem.rbx.yml,sha256=-J2UqB9tJnwXOWLAs6wHGXAPtTGYE6inpJwqbCrLyGE,1681
207
- rbx/resources/presets/default/problem/random.py,sha256=-iPorU24QHfp39EYRJX9jMKcTIxxz5ejKoAzPLIuu1g,98
208
- rbx/resources/presets/default/problem/random.txt,sha256=2BA_AM8IAKEcrUTJhnzWnNJN8whDN82E2137NhFkt2U,137
212
+ rbx/resources/presets/default/problem/gens/gen.cpp,sha256=rn6sGRjZ1sFE1Rq02r6488iquY9xTrutcvLv4d1sohA,178
213
+ rbx/resources/presets/default/problem/manual_tests/samples/000.in,sha256=w66OEtCJGqjUNj8cJrqgImgGVm8W_OlIUtF255ds-ow,4
214
+ rbx/resources/presets/default/problem/manual_tests/samples/001.in,sha256=P4QInDX87xXoDWu4PVIzUeNW5LtTlUKbMCvJ9uZOPGw,20
215
+ rbx/resources/presets/default/problem/problem.rbx.yml,sha256=QmwUTgfLjBt3pVIsEtrDTv7cpO-4QIH0m5Y-3xvr6B8,1808
209
216
  rbx/resources/presets/default/problem/rbx.h,sha256=LBkbC3gbDPW2Fdm1p99hNhF7oKpZLLSY7dE4zpepp5w,2161
210
217
  rbx/resources/presets/default/problem/sols/main.cpp,sha256=AW-j65DiFYUN18rddTKCWc_VyYCMgCbjZ0jAJ-0JLuA,124
211
218
  rbx/resources/presets/default/problem/sols/slow.cpp,sha256=at9iXQjROaxG5f6OWH__phENb2SOK3crRfU7AwYT6hM,229
212
219
  rbx/resources/presets/default/problem/sols/wa.cpp,sha256=Bj7tejPIlXG_JqUHWY1zi9TDbHdRZzgT_JDbCLRdhbQ,136
213
- rbx/resources/presets/default/problem/statement/olymp.sty,sha256=k4TCQz1IeXV75oZ2_dcWEQ3ziTDegOEdnYn4Xb4vzsU,6766
220
+ rbx/resources/presets/default/problem/statement/icpc.sty,sha256=YIZfUV1-HOyW6qj5_2XEx06_vsDtm1lNkuVFUGAxoUg,7114
214
221
  rbx/resources/presets/default/problem/statement/statement.rbx.tex,sha256=JHdiMN3NQQsysDA1w3RfOGmDFobCc68YCB6SURy2hHo,360
215
- rbx/resources/presets/default/problem/statement/template.rbx.tex,sha256=BNvHDWGY1BU4tHUHtuIYBhdoOqp3fXO5qNr84ekOsgY,1693
216
- rbx/resources/presets/default/problem/tests/samples/000.in,sha256=w66OEtCJGqjUNj8cJrqgImgGVm8W_OlIUtF255ds-ow,4
217
- rbx/resources/presets/default/problem/tests/samples/001.in,sha256=P4QInDX87xXoDWu4PVIzUeNW5LtTlUKbMCvJ9uZOPGw,20
222
+ rbx/resources/presets/default/problem/statement/template.rbx.tex,sha256=p7fb3pNh9l-0gSXrsjuJ_4c11X2CFPp_Ef6sYtr7bc0,1285
223
+ rbx/resources/presets/default/problem/testplan/random.py,sha256=-iPorU24QHfp39EYRJX9jMKcTIxxz5ejKoAzPLIuu1g,98
224
+ rbx/resources/presets/default/problem/testplan/random.txt,sha256=2BA_AM8IAKEcrUTJhnzWnNJN8whDN82E2137NhFkt2U,137
218
225
  rbx/resources/presets/default/problem/validator.cpp,sha256=w4gl1u30Dx1N9oRTVtIg_rPlIyL6QdN_Bi5FDpp4gyw,317
219
226
  rbx/resources/presets/default/problem/wcmp.cpp,sha256=gbjJe3Vf9-YzHCEqBUq30aI3jMZXhqBDn3jjecYOn-w,902
220
227
  rbx/resources/templates/rbx.h,sha256=Iwtmr2gdDYmZ2VlIurmleBb_uEpriWd4EX0dJta8xUA,2179
@@ -230,8 +237,8 @@ rbx/testcase.py,sha256=yKOq3CAJZ1YTmInvnoIs0u1iJnRj_X85XiWbLI-p9d8,1951
230
237
  rbx/testcase_rendering.py,sha256=nfmv6dSEqd4aR3TsaODwkKGK6AXty_DDKtWf_ejiQpI,2084
231
238
  rbx/testing_utils.py,sha256=x_PqD8Zd2PkN91NxVHUnSTs044-1WK5KKtttKQBXpFs,2083
232
239
  rbx/utils.py,sha256=SfR844_i0ebRDMkmS_w1YdZiWPc6h2RGADygewlWRbA,4845
233
- rbx_cp-0.6.1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
234
- rbx_cp-0.6.1.dist-info/METADATA,sha256=4o56u8aN673yNGkQTzObRY7lqic2IEQjNPInIlJHzcA,4409
235
- rbx_cp-0.6.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
236
- rbx_cp-0.6.1.dist-info/entry_points.txt,sha256=qBTLBOeifT1F00LWaEewRRE_jQPgvH7BUdJfZ-dYsFU,57
237
- rbx_cp-0.6.1.dist-info/RECORD,,
240
+ rbx_cp-0.8.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
241
+ rbx_cp-0.8.0.dist-info/METADATA,sha256=T5IONKIApyUj3SlNy3px7IMBDLf0jsrc94FH4r6u8q4,4536
242
+ rbx_cp-0.8.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
243
+ rbx_cp-0.8.0.dist-info/entry_points.txt,sha256=qBTLBOeifT1F00LWaEewRRE_jQPgvH7BUdJfZ-dYsFU,57
244
+ rbx_cp-0.8.0.dist-info/RECORD,,