Skip to content

Settings

QIU Feng (Phonic) edited this page May 1, 2016 · 3 revisions

###Time limit

Check configurations in Go.cpp

You can modify it into a double constant as you like

const double TIME_UP_LIMIT_SYSTEM = 3;  

###Board size

Check configurations in base.h

You must select an integer from 9, 11, 13, 15, 17 and 19

#define MAXSIZE  13  

Here is the squared number of MAXSIZE

#define MAXSIZE2  169  

###Threads limit

Check configurations in Go.h

You can fix an upper bound for multithreads limits, we recommend 2, 4 or 6

#define MAX_THREAD_LIMIT 6  

Clone this wiki locally