File tree Expand file tree Collapse file tree 4 files changed +15
-10
lines changed Expand file tree Collapse file tree 4 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 1.1.0 / 2018-01-18
4
+ - [ #80 ] ( https://github.com/kyuridenamida/atcoder-tools/pull/80 ) Anything configurable from command line is configurable from toml
5
+ - [ #79 ] ( https://github.com/kyuridenamida/atcoder-tools/pull/79 ) Delete --replacement and use template for both failure and success instead
6
+ - [ #78 ] ( https://github.com/kyuridenamida/atcoder-tools/pull/78 ) Better default C++ template with move semantics
7
+
3
8
## 1.0.6.1 / 2018-01-13
4
9
- [ #76 ] ( https://github.com/kyuridenamida/atcoder-tools/pull/76 ) Fix a bug the default templates are wrong.
5
10
Original file line number Diff line number Diff line change @@ -8,9 +8,12 @@ Python 3.5 で動作する [AtCoder](http://atcoder.jp/) からサンプル入
8
8
9
9
このツールには次のような機能があります。
10
10
- AtCoderへのログイン,入出力例データなどの抽出
11
- - 枝刈り探索による高精度・高速な入力解析 (ARC、ABC、AGCについては約9割ほど)
12
- - 解析結果を用いたテンプレートコードの自動生成(C++, Java)
11
+ - 枝刈り探索による高精度・高速な入力フォーマット解析 (ARC、ABC、AGCについては約9割ほど)
12
+ - 問題文中に含まれるMOD値やYES/NO文字列等の定数値抽出
13
+ - 入力フォーマット解析結果や抽出した定数値を用いたテンプレートコードの自動生成(C++, Java)
14
+ - カスタムテンプレートに対応
13
15
- 他言語対応のためのコントリビューション(≒中間形式からコードに変換する部分のPR)を募集中です!
16
+ - コード提出機能
14
17
15
18
## How to install
16
19
` pip3 install atcoder-tools `
@@ -142,13 +145,12 @@ optional arguments:
142
145
143
146
``` $xslt
144
147
[codestyle]
145
- indent_type = 'space' # 'tab' or 'space'
146
- indent_width = 4
148
+ indent_type= 'space' # 'tab' or 'space'
149
+ indent_width= 4
147
150
template_file='~/my_template.cpp'
148
- workspace_dir = '~/atcoder-workspace/'
149
- lang = 'cpp' # 'cpp' or 'java' (Currently)
151
+ workspace_dir= '~/atcoder-workspace/'
152
+ lang= 'cpp' # 'cpp' or 'java' (Currently)
150
153
code_generator_file="~/custom_code_generator.py"
151
-
152
154
[postprocess]
153
155
exec_on_each_problem_dir='clang-format -i ./*.cpp'
154
156
exec_on_contest_dir='touch CMakeLists.txt'
Original file line number Diff line number Diff line change 1
- __version__ = "1.0.6.1 "
1
+ __version__ = "1.1.0 "
Original file line number Diff line number Diff line change 1
- package atcodertools .tools .templates ;
2
-
3
1
import java .io .*;
4
2
import java .util .*;
5
3
You can’t perform that action at this time.
0 commit comments