1
      2
      3
      4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
#ifndef NIM_PARAMETERS_HPP
#define NIM_PARAMETERS_HPP

/* default parameters */

#ifndef MOVES
#define MOVES 123 /* in ascending order! */
#endif

#ifndef MAX_HEAP_SIZE
#define MAX_HEAP_SIZE 20
#endif

#endif