home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / ARASAN_S.ZIP / CONSTANT.H < prev    next >
C/C++ Source or Header  |  1994-08-15  |  400b  |  25 lines

  1. // Copyright 1994 by Jon Dart.  All Rights Reserved.
  2.  
  3. #ifndef _CONSTANT_H
  4. #define _CONSTANT_H
  5.  
  6. class Constants
  7. {
  8.  
  9. public:    
  10.  
  11. enum {PawnValue = 64};
  12. enum {MaxPly = 20};
  13. enum {BIG = 10000 };
  14. enum {Hash_Size = 997 };
  15. enum {Max_Hash_Table_Entries = 8192 };
  16. enum { MAX_HINT_MOVES = 8 };
  17. enum {Initial_Search_Window = 500 };
  18. enum {Contempt=-500};
  19.  
  20. };
  21.  
  22. #define Version "1.2a"
  23.  
  24. #endif
  25.