gnugo-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnugo-devel] whose_moyo vs whose_moyo_restricted


From: Arend Bayer
Subject: [gnugo-devel] whose_moyo vs whose_moyo_restricted
Date: Sat, 10 Nov 2001 12:05:40 +0100 (CET)

In Influence.c:

static int
whose_moyo(struct influence_data *q, int m, int n)
(...)
  if (bi > 7.0 * wi && bi > 5.0 && wi < 10.0)
    return BLACK;
(...)

static int
whose_moyo_restricted(struct influence_data *q, int m, int n)
(...)
if ((bi > 10.0 * wi && bi > 10.0 && wi < 10.0) || bi > 25.0 * wi)
    color = BLACK;
(...)

Is this difference intentional? The comment preceding whose_moyo_restricted
seems to imply no.

-Arend





reply via email to

[Prev in Thread] Current Thread [Next in Thread]