Skip to content

Commit 45ad902

Browse files
Release/1.1.6 (kyuridenamida#162)
* prepare for release 1.1.6 * show error_type instead of judge_type on test command
1 parent c04874b commit 45ad902

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 1.1.6 / 2019-10-06
4+
5+
- [#157](https://github.com/kyuridenamida/atcoder-tools/pull/157) Support decimal number judge
6+
- Decimal number judge and the error value for the judge are automatically detected by analyzing the problem statement.
7+
- Thanks for [@chaemon](https://github.com/chaemon/)'s contribution! This is a very useful functionality.
8+
- [#153](https://github.com/kyuridenamida/atcoder-tools/pull/153) Support C#
9+
- Thanks for [@chaemon](https://github.com/chaemon/)'s contribution again!
10+
- [#159](https://github.com/kyuridenamida/atcoder-tools/pull/159) "Show Version" functionality on atcoder-tools command
11+
312
## 1.1.5 / 2019-08-20
413

514
- [#140](https://github.com/kyuridenamida/atcoder-tools/pull/140) Make example input / output names configurable from EtcConfig

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Python 3.5 以降で動作する [AtCoder](http://atcoder.jp/) からサンプ
99
このツールには次のような機能があります。
1010
- AtCoderへのログイン,入出力例データなどの抽出
1111
- 枝刈り探索による高精度・高速な入力フォーマット解析 (ARC、ABC、AGCについては約9割ほど)
12-
- 問題文中に含まれるMOD値やYES/NO文字列等の定数値抽出
12+
- 問題文中に含まれるMOD値、YES/NO文字列、誤差ジャッジのための誤差値等の定数値抽出
1313
- サンプルのローカルテスト機能
1414
- 誤差ジャッジに対応 by [@chaemon](https://github.com/chaemon/)
1515
- コード提出機能
@@ -56,9 +56,10 @@ https://kyuridenamida.github.io/atcoder-tools/
5656
過去のユーザーの皆様には`AccountInformation.py`を削除して頂くようお願い申し上げます。*
5757

5858

59-
- `atcoder-tools gen {contest_id}` コンテスト環境を用意するコマンド
60-
- `atcoder-tools test` カレント・ディレクトリ上に実行ファイルと入出力(in_\*.txt, out_\*.txt)がある状態で実行するとローカルテストを行う
59+
- `atcoder-tools gen {contest_id}` コンテスト環境を用意します。
60+
- `atcoder-tools test` カレント・ディレクトリ上に実行ファイルと入出力(in_\*.txt, out_\*.txt)がある状態で実行するとローカルテストを行います。
6161
- `atcoder-tools submit` カレント・ディレクトリ上で実行すると対応する問題がサンプルに通る場合ソースコードを提出します。既にAtCoder上にその問題に対する提出がある場合、`-u`を指定しないと提出できないようになっています。
62+
- `atcoder-tools version` 現在の atcoder-tools のバージョンを出力します。
6263

6364
`atcoder-tools gen --help``atcoder-tools gen`の引数の詳細について確認することができます。
6465

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.5"
1+
__version__ = "1.1.6"

atcodertools/tools/tester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def main(prog, args) -> bool:
328328

329329
if isinstance(judge_method, DecimalJudge):
330330
logger.info("Decimal number judge is enabled. type={}, diff={}".format(
331-
judge_method.judge_type.value, judge_method.diff))
331+
judge_method.error_type.value, judge_method.diff))
332332

333333
if args.num is None:
334334
return run_all_tests(exec_file, in_sample_file_list, out_sample_file_list, args.timeout, args.knock_out,

0 commit comments

Comments
 (0)