home *** CD-ROM | disk | FTP | other *** search
/ The Best of Select: Games 3 / cd.iso / os2 / pmgnuchs / debug4.h < prev    next >
C/C++ Source or Header  |  1993-06-22  |  423b  |  19 lines

  1. #ifdef DEBUG4
  2.   if (debuglevel & 4)
  3.     {
  4.       int j;
  5.  
  6.       printf ("Sdepth %d alpha %d beta %d stage %d\n", Sdepth, alpha, beta, stage);
  7.       for (j = 1; j < 2; j++)
  8.     {
  9.       int idb;
  10.  
  11.       for (idb = TrPnt[j]; idb < TrPnt[j + 1]; idb++)
  12.         {
  13.           algbr (Tree[idb].f, Tree[idb].t, Tree[idb].flags);
  14.           printf ("level 4 %d-->%d %s %d %d\n", j, idb, mvstr[0], Tree[idb].score, Tree[idb].width);
  15.         }
  16.     }
  17.     }
  18. #endif
  19.