I changed default hash slots to many times the former size. I notices that there were a ton of collisions if you use default sizes.
This is the current default setting:
#define HASHSLOTS 262144*4
#define PAWNSLOTS 65536*4
this was the old default setting:
#define HASHSLOTS 65536
#define PAWNSLOTS 32668
I also added a #define HYATT, which affects this code branch:
#ifdef HYATT
/* Human-like: take more time after opening book, reducing into endgame */
if (bookmode != BOOKOFF && (flags & TIMECTL))
{
maxtime = 2 * SearchTime;
/* Hyatt's grandmaster-like time control curve */
if (nmovesfrombook