Skip to content

Commit a606f5f

Browse files
Toshihiro ShimizuToshihiro Shimizu
authored andcommitted
update
1 parent e15edd6 commit a606f5f

File tree

3 files changed

+0
-34
lines changed

3 files changed

+0
-34
lines changed

atcodertools/atcoder_tools.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,8 @@ def main():
4646
print(
4747
"{} compile -- to compile codes in your workspace".format(sys.argv[0]))
4848
print("{} test -- to test codes in your workspace".format(sys.argv[0]))
49-
print(
50-
"{} compile -- to compile codes in your workspace".format(sys.argv[0]))
51-
print("{} test -- to test codes in your workspace".format(sys.argv[0]))
52-
>>>>>>> test_fmtprediction
53-
print(
54-
"{} test -- to test your code in the workspace".format(sys.argv[0]))
5549
print(
5650
"{} submit -- to submit your code to the contest system".format(sys.argv[0]))
57-
print(
58-
"{} compile -- compile source code".format(sys.argv[0]))
59-
print(
60-
"{} set -- switch program language/judge method".format(sys.argv[0]))
61-
print(
62-
"{} codegen -- to generate code of the specified single problem".format(sys.argv[0]))
63-
print(
64-
"{} set -- to set some additional option(error value, language)".format(sys.argv[0]))
6551
print(
6652
"{} set -- to set some additional option(error value, language)".format(sys.argv[0]))
6753
print(

atcodertools/config/etc_config.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,3 @@ def __init__(self,
1414
self.skip_existing_problems = skip_existing_problems
1515
self.in_example_format = in_example_format
1616
self.out_example_format = out_example_format
17-
self.compile_before_testing = compile_before_testing
18-
self.compile_only_when_diff_detected = compile_only_when_diff_detected

atcodertools/tools/models/metadata.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,11 @@
22
from typing import Optional
33

44
from atcodertools.client.models.problem import Problem
5-
<<<<<<< HEAD
6-
from atcodertools.common.judgetype import NormalJudge, DecimalJudge, MultiSolutionJudge, InteractiveJudge, Judge, \
7-
NoJudgeTypeException
8-
from atcodertools.common.language import Language, CPP
9-
10-
DEFAULT_IN_EXAMPLE_PATTERN = 'in_*.txt'
11-
DEFAULT_OUT_EXAMPLE_PATTERN = "out_*.txt"
12-
=======
135
from atcodertools.common.judgetype import NormalJudge, DecimalJudge, Judge
146
from atcodertools.common.language import Language, CPP
157

168

179
class Metadata:
18-
19-
<<<<<<< HEAD
20-
def __init__(self,
21-
problem: Optional[Problem],
22-
code_filename: Optional[str],
23-
sample_in_pattern: str,
24-
sample_out_pattern: str,
25-
lang: Optional[Language],
26-
judge_method: Judge = NormalJudge()):
27-
=======
2810
def __init__(self, problem: Problem, code_filename: str, sample_in_pattern: str, sample_out_pattern: str,
2911
lang: Language, judge_method: Judge = NormalJudge(), timeout_ms: int = None):
3012
self.problem = problem

0 commit comments

Comments
 (0)