Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make katago solve dead-alive go problems #261

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update readme
  • Loading branch information
kinfkong committed Jun 27, 2020
commit ddd598b2c6d11ccbe1f1e4cb378d169e196df05b
10 changes: 9 additions & 1 deletion docs/GTP_Extensions.md
Original file line number Diff line number Diff line change
@@ -104,7 +104,15 @@ In addition to a basic set of [GTP commands](https://www.lysator.liu.se/~gunnar/
* Like `lz-analyze`, will immediately begin printing a partial GTP response, with a new line every `interval` centiseconds.
* Unlike `lz-analyze`, will teriminate on its own after the normal amount of time that a `genmove` would take and will NOT terminate prematurely or asynchronously upon recipt of a newline or an additional GTP command.
* The final move made will be reported as a single line `play <vertex or "pass" or "resign">`, followed by the usual double-newline that signals a complete GTP response.
* `kata-genmove_analyze [player (optional)] [interval (optional)] KEYVALUEPAIR KEYVALUEPAIR`
* `kata-problem_analyze [player (optional)] [interval (optional)] KEYVALUEPAIR KEYVALUEPAIR`
* this extented GTP command is used for solving life-dead problems.
* Same as `kata-analyze` except with the options and fields :
* Additional possible key-value pairs:
* `topleft M19` - Sets the problem valid area - the top left corner
* `bottomright T14` - Sets the problem valid area - the bottom right corner
* if `topoleft` or `bottomright` is not set, use the full board.

* `kata-genmove_analyze [player (optional)] [interval (optional)] KEYVALUEPAIR KEYVALUEPAIR`
* Same as `lz-genmove_analyze` except with the options and fields of `kata-analyze` rather than `lz-analyze`
* `analyze, genmove_analyze`
* Same as `kata-analyze` and `kata-genmove_analyze`, but intended specifically for the Sabaki GUI app in that all floating point values are always formatted with a decimal point, even when a value happens to be an integer. May also have slightly less compact output in other ways (e.g. extra trailing zeros on some decimals).