/usr/include/osl/threatmate/readme.h is in libosl-dev 0.6.0-3.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | /* readme.h
*/
#ifndef _README_H
#define _README_H
namespace osl
{
/**
* 詰めろ予測関数
* 指した後の局面(state)と指し手(move) を引数に取る
* predict で予測結果を返す
*
* kfendPredictor: KFEnd の詰めろ判定を利用
* URL: http://www31.ocn.ne.jp/~kfend/inside_kfend/ptc.html
* true/false を返す
*
* richPredictor:
* 実数を返す. 元データでは100 が詰めろ, 0 は詰めろでないもの
*
* treePredictor: 分類木
* true/false を返す
*
* mlPredictor: treePredictor の特徴を元に学習させたもの
* predict: 実数を返す, 0 以上なら詰めろという気分
* probability: [0,1] の実数を返す
*
* index は詰将棋探索のノード別で次のようになっている
* 0 : all
* 1 : ~100 nodes
* 2 : ~1,000 nodes
* 3 : 1,000 ~ 10,000 nodes
* 4 : 10,000~ nodes
*/
namespace threatmate
{
}
} // namespace osl
#endif /* _README_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End:
|