-
Notifications
You must be signed in to change notification settings - Fork 0
/
features.h
212 lines (166 loc) · 5.06 KB
/
features.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/* Written by Todd Doucet. */
#pragma once
#include <cassert>
#include "board.h"
#include "hits.h"
class features_v1
{
public:
constexpr static int count = 148;
features_v1() = delete;
static float* calc(board const& b, float *dest)
{
const color_t on_roll = b.onRoll();
float *ib = dest;
ib = board_features(b, on_roll, ib);
ib = board_features(b, opponentOf(on_roll), ib);
assert( (ib - dest) == count );
return ib;
}
protected:
static float *board_features(board const& b, color_t color, float *ib)
{
*ib++ = b.checkersOnPoint(color, 0); /* borne off */
for (int i = 1; i <= 24; i++)
{
int n = b.checkersOnPoint(color, i);
*ib++ = (n == 1); /* blot */
*ib++ = (n >= 2); /* point */
*ib++ = ( (n > 2) ? (n - 2) : 0 ); /* builders */
}
*ib++ = b.checkersOnBar(color); /* on bar */
return ib;
}
};
class features_v2 : public features_v1
{
public:
constexpr static int count = features_v1::count + 4;
features_v2() = delete;
static float* calc(board const& b, float *dest)
{
const color_t on_roll = b.onRoll();
float *ib = features_v1::calc(b, dest);
ib = contact_features(b, on_roll, ib);
ib = pip_features(b, on_roll, ib);
assert( (ib - dest) == count );
return ib;
}
protected:
static float contact(board const & b, color_t color)
{
int me = b.highestChecker(color);
int him = opponentPoint(b.highestChecker(opponentOf(color)));
int contact_ = me - him;
return contact_ < 0.0f ? 0.0f : (contact_ / 23.0f);
}
static float pip_difference(board const& b, color_t color)
{
int pdiff = b.pipCount(opponentOf(color)) - b.pipCount(color);
return logistic::fwd(pdiff / 27.0f);
}
static float *contact_features( board const& b, color_t color, float *ib)
{
float f = contact(b, color);
*ib++ = f;
*ib++ = (1.0f - f);
return ib;
}
static float *pip_features(board const& b, color_t color, float *ib)
{
float h = pip_difference(b, color);
*ib++ = h;
*ib++ = 1.0f - h;
return ib;
}
};
class features_v3 : public features_v2
{
public:
constexpr static int count = features_v2::count + 4;
features_v3() = delete;
static float* calc(board const& b, float *dest)
{
const color_t on_roll = b.onRoll();
float *ib = dest;
ib = features_v2::calc(b, dest);
ib = hit_features(b, on_roll, ib);
ib = hit_features(b, opponentOf(on_roll), ib);
assert( (ib - dest) == count );
return ib;
}
protected:
static float hits(board const& b, color_t color)
{
return num_hits(color, b) / 36.0f;
}
static float *hit_features(board const& b, color_t color, float *ib)
{
float h = hits(b, color);
*ib++ = h;
*ib++ = 1.0f - h;
return ib;
}
};
class features_v3n : public features_v3
{
public:
constexpr static int count = features_v3::count;
static float* calc(board const& b, float *dest)
{
const color_t on_roll = b.onRoll();
float *ib = dest;
ib = board_features_n(b, on_roll, ib);
ib = board_features_n(b, opponentOf(on_roll), ib);
ib = contact_features(b, on_roll, ib);
ib = pip_features(b, on_roll, ib);
ib = hit_features(b, on_roll, ib);
ib = hit_features(b, opponentOf(on_roll), ib);
assert( (ib - dest) == count );
return ib;
}
protected:
static float *board_features_n(board const& b, color_t color, float *ib)
{
*ib++ = b.checkersOnPoint(color, 0) / 15.0f; /* borne off */
for (int i = 1; i <= 24; i++)
{
int n = b.checkersOnPoint(color, i);
*ib++ = (n == 1); /* blot */
*ib++ = (n >= 2); /* point */
*ib++ = ( (n > 2) ? ((n - 2)/13.0f) : 0 ); /* builders */
}
*ib++ = b.checkersOnBar(color) / 15.0f; /* on bar */
return ib;
}
};
class features_v5 : protected features_v3
{
public:
constexpr static int count = features_v1::count + 4;
features_v5() = delete;
static float* calc(board const& b, float *dest)
{
const color_t on_roll = b.onRoll();
float *ib = features_v1::calc(b, dest);
*ib++ = contact(b, on_roll);
*ib++ = pip_difference(b, on_roll);
*ib++ = hits(b, on_roll);
*ib++ = hits(b, opponentOf(on_roll));
assert( (ib - dest) == count );
return ib;
}
};
class features_v5b : protected features_v5
{
public:
constexpr static int count = features_v5::count + 1;
features_v5b() = delete;
static float* calc(board const& b, float *dest)
{
float *ib = features_v5::calc(b, dest);
*ib++ = 1.0f; // bias
assert( (ib - dest) == count );
return ib;
}
};