You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
409 B
27 lines
409 B
#ifndef __SPEEDS_H_
|
|
#define __SPEEDS_H_
|
|
|
|
#define TEST_SOLVER 0
|
|
|
|
#ifdef TEST_SOLVER
|
|
#define STEPS_AUTODROP 8
|
|
#define STEPS_WON 20
|
|
#define STEPS_DEMO 7
|
|
#define STEPS_MOVEBACK 7
|
|
#define STEPS_INITIALDEAL 10
|
|
|
|
#define TIME_BETWEEN_MOVES 200
|
|
#else
|
|
|
|
#define STEPS_AUTODROP 1
|
|
#define STEPS_WON 20
|
|
#define STEPS_DEMO 1
|
|
#define STEPS_MOVEBACK 1
|
|
#define STEPS_INITIALDEAL 1
|
|
|
|
#define TIME_BETWEEN_MOVES 2
|
|
|
|
#endif
|
|
|
|
#endif
|