gnugo-devel
[Top][All Lists]
Advanced

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

Re: [gnugo-devel] Semeai


From: Daniel Bump
Subject: Re: [gnugo-devel] Semeai
Date: Sun, 27 Jan 2002 08:59:58 -0800

> This should also be rr_set_result_move2().

Looks like that macro needed result2 in it:

/* Variation with two results. */
#define rr_set_result_move2(rr, result1, result2, move) \
        (rr).data2 = (((rr).data2 & 0x3ff) | (2 << 28) \
                      | (((result1) & 0x0f) << 24) \
                      | (((result2) & 0x0f) << 20) \
                      | (((move) & 0x3ff) << 10))

What is the meaning of the 2 << 28?

Dan




reply via email to

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