Source code for /engineering/REVERSEM/EVAL.HPPOriginal file EVAL.HPP
   1 /*--------------------------------------------------------------------------
   2 
   3   REVERSEM :
   4 
   5   UNIT     : BASIC DEFINITIONS FOR BOARD EVALUTIONS
   6 
   7   COPYRIGHT (C) 1994 Erich P. Gatejen  ALL RIGHTS RESERVED
   8   This is Freeware.  You may distribute it as you wish.  However, you may not
   9   distribute a modified version without my consent.
  10 
  11   Feel free to cut and paste any algorthm.
  12 
  13   NOTE: XTILE is (C) 1992, 1994 by myself.  It is NOT freeware.  You may use
  14 	it for personal projects, but otherwise, it is not to be distributed
  15 	outside this REVERSEM package.  (Contact me if you wish to do
  16 	otherwise)
  17 
  18 ---------------------------------------------------------------------------*/
  19 
  20 // Point values
  21 #define  SPOT_VALUE	   4
  22 #define  VERY_GOOD_THING   32000
  23 #define  VERY_BAD_THING	  -32000
  24 
  25 
  26 // Assesment values
  27 #define  A_EXCELLENT	   4000
  28 #define  A_GOOD		   1500
  29 #define  A_OK		   400
  30 #define  A_UNKNOWN	  -400
  31 #define  A_UNGOOD	  -1500
  32 #define  A_BAD		  -4000