]> git.sesse.net Git - remoteglot-book/blob - count.h
Change to even shorter prefix length; down from 3.8 to 3.1 GB (single partition is...
[remoteglot-book] / count.h
1
2 struct Count {
3         int white = 0;
4         int draw = 0;
5         int black = 0;
6         unsigned int opening_num = 0;
7         unsigned long long sum_white_elo = 0;
8         unsigned long long sum_black_elo = 0;
9         int num_elo = 0;
10 };