home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
useful
/
game
/
think
/
uchess.lha
/
UChess
/
src
/
debug16.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-12-07
|
443b
|
19 lines
#ifdef DEBUG4
if (debuglevel & 16)
{
int j;
printf ("Sdepth %d alpha %d beta %d stage %d\n", Sdepth, alpha, beta, stage);
for (j = 1; j < 2; j++)
{
int idb;
for (idb = TrPnt[j]; idb < TrPnt[j + 1]; idb++)
{
algbr (Tree[idb].f, Tree[idb].t, Tree[idb].flags);
printf ("level 16 %d-->%d %s %d %d %x\n", Sdepth, idb, mvstr[0], Tree[idb].score, Tree[idb].width, Tree[idb].flags);
}
}
}
#endif