|
|
|
|
|
by KevinCarbonara
2828 days ago
|
|
Starcraft 2 is not "orders of magnitude more complicated than Go". It's far less complicated in terms of options, and far more complicated in terms of factors like speed/reaction time that don't exist in Go. Those things are difficult to compare at all, but certainly do not qualify as "orders of magnitude", which is measurable. |
|
Go's game state, for example, is very small. You can pretty much represent it with a 19x19 array of 2-bit variables, because each space only has three possible states. That's only 722 bits. Maybe a few more to track whose turn it is and how many pieces each player has remaining.
In contrast, Starcraft can have hundreds of units in play from dozens of types, each of which usually has at least a position value (x and y) and a health value, and commonly has other things like energy value and cooldown values. And each of these you'd need at least a 16-bit int. And that doesn't even get into the enormously larger possible action space for each "turn".