(game: np.ndarray, mu: np.ndarray)
| 75 | game0 = np.full(p, 0.3, dtype=float) |
| 76 | |
| 77 | def pack(game: np.ndarray, mu: np.ndarray) -> np.ndarray: |
| 78 | return np.concatenate([game, mu]) |
| 79 | |
| 80 | def unpack(theta: np.ndarray) -> tuple[np.ndarray, np.ndarray]: |
| 81 | game = theta[:p] |