|
|
|
|
|
by nottathrowaway3
1193 days ago
|
|
> It doesn't seem materially different than knowing that U always follows Q, and that J is always followed by a vowel in "legal" English language words. The material difference is one of scale, not complexity. Your rules have lookback = 1, while the Othello rules have lookback <= 63 and if you, say, are trying to play A1, you need to determine the current color of all squares on A1-A8, A1-H1, and A1-H8 (which is lookback <= 62) and then determine if one of 21 specific patterns exists. Both can be technically be modeled with a lookup table, but for Othello that table would be size 3^63. |
|
Could you just generate the subset you need denovo each time? Or the far smaller number of 1-dimensional lines?