Helper to display processed version of game state.
(features)
| 86 | |
| 87 | /** Helper to display processed version of game state. */ |
| 88 | function featuresAndLabelsToPrettyString(features) { |
| 89 | const basicArray = []; |
| 90 | for (const value of features) { |
| 91 | basicArray.push(value); |
| 92 | } |
| 93 | return basicArray; |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Fills in the data in the Game Simulation. |