[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [gnugo-devel] 'score' cleanup
From: |
SP LEE |
Subject: |
Re: [gnugo-devel] 'score' cleanup |
Date: |
Tue, 9 Sep 2003 09:41:15 -0700 |
> Index: interface/play_gtp.c
> ===================================================================
> RCS file: /cvsroot/gnugo/gnugo/interface/play_gtp.c,v
> retrieving revision 1.131
> diff -u -p -r1.131 play_gtp.c
> --- interface/play_gtp.c 24 Aug 2003 03:04:11 -0000 1.131
> +++ interface/play_gtp.c 6 Sep 2003 19:10:34 -0000
> @@ -3137,6 +3137,8 @@ static int
> gtp_estimate_score(char *s)
> {
> UNUSED(s);
> + float score;
> + float upper_bound, lower_bound;
>
> silent_examine_position(WHITE, EXAMINE_DRAGONS);
>
Somehow this modification can't be compiled under windows. Moving the
two 'float' definitions above UNUSED is then OK.
SP Lee