-
Notifications
You must be signed in to change notification settings - Fork 1
Rules submission
##パッケージ作成ツール aiフォルダで、 ** ./create_submission.rb ./AIのバイナリ名 ** とすることで投稿用のパッケージを作り、チェックサムも計算される。同梱されるファイルは
- 指定したバイナリ(./huskに改名される)
- 生成される./install ./run
- 環境に応じたDLL
- レポジトリのトップにあるREADME
##公式投稿ルール
投稿は次のURLから受け付ける。 Player programs must be submitted via: https://spreadsheets.google.com/spreadsheet/viewform?formkey=dDRFOXgxQ3g2M3I3X1VTV3FBREdULWc6MQ (or http://goo.gl/FTP9F)
投稿するのは単一の.tar.gzファイル。アーカイブには、少なくとも2つの実行可能ファイル "./install" と "./run", そして "./src/" ディレクトリを含む必要がある。アーカイブがhomeディレクトリに展開された後、"install"ファイルがただ一度実行される。実行環境はブログにて周知の通り(http://goo.gl/2DBgy)。
Each submission must be a single .tar.gz compressed archive file containing (at least) two executable files "./install" and "./run", and a "./src/" directory (all without the quotes). The "install" file will be executed just once with no human interaction after the submission is expanded into the home directory of a unique general user. The execution environment has been announced at: http://www.icfpcontest.org/2011/05/judges-machine-and-system-environment.html (or http://goo.gl/2DBgy)
なるべくインストール手続きを最短化せよ。たとえば、プログラムをソースからコンパイルするのは避け、バイナリを同梱するのが好ましい。
Please try to minimize the installation procedure: for example, avoid compiling your program from source code and include a precompiled binary as far as possible.