From 0d883036c886d6c6116e955e8a91b89950cc6e1a Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sat, 20 Mar 2010 12:48:22 +0100 Subject: [PATCH] board.rules: Some explanations --- board.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/board.h b/board.h index b782e4e..1afc396 100644 --- a/board.h +++ b/board.h @@ -112,8 +112,13 @@ struct board { int captures[S_MAX]; float komi; int handicap; + /* The ruleset is currently almost never taken into account; + * the board implementation is basically Chinese rules (handicap + * stones compensation) w/ suicide (or you can look at it as + * New Zealand w/o handi stones compensation), while the engine + * enforces no-suicide, making for real Chinese rules. */ enum { - RULES_CHINESE, + RULES_CHINESE, /* default value */ RULES_AGA, RULES_NEW_ZEALAND, RULES_JAPANESE, -- 2.11.4.GIT